diff --git a/docs/AdvisoryAVIDMLAdvs.md b/docs/AdvisoryAVIDMLAdvs.md index d5120b9d..2c431357 100644 --- a/docs/AdvisoryAVIDMLAdvs.md +++ b/docs/AdvisoryAVIDMLAdvs.md @@ -6,6 +6,7 @@ advisory.AVIDMLAdvs Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**cve** | **List[str]** | | [optional] **date_added** | **str** | | [optional] **description** | **str** | | [optional] **id** | **str** | | [optional] diff --git a/docs/AdvisoryAnthropicCVD.md b/docs/AdvisoryAnthropicCVD.md new file mode 100644 index 00000000..6fe50cc3 --- /dev/null +++ b/docs/AdvisoryAnthropicCVD.md @@ -0,0 +1,45 @@ +# AdvisoryAnthropicCVD + +advisory.AnthropicCVD + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**attribution** | [**AdvisoryCredit**](AdvisoryCredit.md) | | [optional] +**bug_class** | **str** | | [optional] +**cve** | **List[str]** | | [optional] +**date_added** | **str** | | [optional] +**date_committed** | **str** | | [optional] +**entry** | **List[int]** | | [optional] +**ghsa** | **List[str]** | | [optional] +**hash** | **str** | | [optional] +**project** | **str** | | [optional] +**raw_preimage** | **List[int]** | | [optional] +**severities** | [**AdvisoryCVDSeverityCompare**](AdvisoryCVDSeverityCompare.md) | | [optional] +**snapshot** | [**AdvisoryCVDSnapshot**](AdvisoryCVDSnapshot.md) | | [optional] +**status** | **str** | | [optional] +**timeline** | [**List[AdvisoryTimeline]**](AdvisoryTimeline.md) | Timeline / Attribution / Severities come from the detail-page HTML (parsed at ingest, not from any JSON document). Revealed-only. | [optional] +**updated_at** | **str** | | [optional] +**url** | **str** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD + +# TODO update the JSON string below +json = "{}" +# create an instance of AdvisoryAnthropicCVD from a JSON string +advisory_anthropic_cvd_instance = AdvisoryAnthropicCVD.from_json(json) +# print the JSON string representation of the object +print(AdvisoryAnthropicCVD.to_json()) + +# convert the object into a dict +advisory_anthropic_cvd_dict = advisory_anthropic_cvd_instance.to_dict() +# create an instance of AdvisoryAnthropicCVD from a dict +advisory_anthropic_cvd_from_dict = AdvisoryAnthropicCVD.from_dict(advisory_anthropic_cvd_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/AdvisoryCVDSeverityCompare.md b/docs/AdvisoryCVDSeverityCompare.md new file mode 100644 index 00000000..c06ddbea --- /dev/null +++ b/docs/AdvisoryCVDSeverityCompare.md @@ -0,0 +1,32 @@ +# AdvisoryCVDSeverityCompare + +advisory.CVDSeverityCompare + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**claude** | **str** | | [optional] +**maintainer** | **str** | | [optional] +**security_research_firm** | **str** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare + +# TODO update the JSON string below +json = "{}" +# create an instance of AdvisoryCVDSeverityCompare from a JSON string +advisory_cvd_severity_compare_instance = AdvisoryCVDSeverityCompare.from_json(json) +# print the JSON string representation of the object +print(AdvisoryCVDSeverityCompare.to_json()) + +# convert the object into a dict +advisory_cvd_severity_compare_dict = advisory_cvd_severity_compare_instance.to_dict() +# create an instance of AdvisoryCVDSeverityCompare from a dict +advisory_cvd_severity_compare_from_dict = AdvisoryCVDSeverityCompare.from_dict(advisory_cvd_severity_compare_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/AdvisoryCVDSnapshot.md b/docs/AdvisoryCVDSnapshot.md new file mode 100644 index 00000000..20325a9b --- /dev/null +++ b/docs/AdvisoryCVDSnapshot.md @@ -0,0 +1,33 @@ +# AdvisoryCVDSnapshot + +Snapshot provenance — which payload.json snapshot this record came from. ManifestSHA3 + Revision + AsOf are stable per-snapshot. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**as_of** | **str** | | [optional] +**fetched_at** | **str** | | [optional] +**manifest_sha3** | **str** | | [optional] +**revision** | **int** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot + +# TODO update the JSON string below +json = "{}" +# create an instance of AdvisoryCVDSnapshot from a JSON string +advisory_cvd_snapshot_instance = AdvisoryCVDSnapshot.from_json(json) +# print the JSON string representation of the object +print(AdvisoryCVDSnapshot.to_json()) + +# convert the object into a dict +advisory_cvd_snapshot_dict = advisory_cvd_snapshot_instance.to_dict() +# create an instance of AdvisoryCVDSnapshot from a dict +advisory_cvd_snapshot_from_dict = AdvisoryCVDSnapshot.from_dict(advisory_cvd_snapshot_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ApiC2Frequency.md b/docs/ApiC2Frequency.md new file mode 100644 index 00000000..ba6e6a56 --- /dev/null +++ b/docs/ApiC2Frequency.md @@ -0,0 +1,31 @@ +# ApiC2Frequency + +api.C2Frequency + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**count** | **int** | | [optional] +**src** | **str** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.api_c2_frequency import ApiC2Frequency + +# TODO update the JSON string below +json = "{}" +# create an instance of ApiC2Frequency from a JSON string +api_c2_frequency_instance = ApiC2Frequency.from_json(json) +# print the JSON string representation of the object +print(ApiC2Frequency.to_json()) + +# convert the object into a dict +api_c2_frequency_dict = api_c2_frequency_instance.to_dict() +# create an instance of ApiC2Frequency from a dict +api_c2_frequency_from_dict = ApiC2Frequency.from_dict(api_c2_frequency_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ApiCVEConfirmed.md b/docs/ApiCVEConfirmed.md new file mode 100644 index 00000000..40e2d8e2 --- /dev/null +++ b/docs/ApiCVEConfirmed.md @@ -0,0 +1,31 @@ +# ApiCVEConfirmed + +api.CVEConfirmed + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**confirmed** | **bool** | | [optional] +**cve_id** | **str** | | [optional] + +## Example + +```python +from vulncheck_sdk.models.api_cve_confirmed import ApiCVEConfirmed + +# TODO update the JSON string below +json = "{}" +# create an instance of ApiCVEConfirmed from a JSON string +api_cve_confirmed_instance = ApiCVEConfirmed.from_json(json) +# print the JSON string representation of the object +print(ApiCVEConfirmed.to_json()) + +# convert the object into a dict +api_cve_confirmed_dict = api_cve_confirmed_instance.to_dict() +# create an instance of ApiCVEConfirmed from a dict +api_cve_confirmed_from_dict = ApiCVEConfirmed.from_dict(api_cve_confirmed_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ApiHTTPDetails.md b/docs/ApiHTTPDetails.md index b12fcf99..dbd2048c 100644 --- a/docs/ApiHTTPDetails.md +++ b/docs/ApiHTTPDetails.md @@ -6,9 +6,9 @@ api.HTTPDetails Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**http_method** | **str** | | [optional] **http_request_body** | **str** | | [optional] **http_user_agent** | **str** | | [optional] -**method** | **str** | | [optional] **protocol** | **str** | | [optional] **url** | **str** | | [optional] diff --git a/docs/ApiInitialAccess.md b/docs/ApiInitialAccess.md index d2f73d39..968b449c 100644 --- a/docs/ApiInitialAccess.md +++ b/docs/ApiInitialAccess.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **artifacts** | [**List[ApiInitialAccessArtifact]**](ApiInitialAccessArtifact.md) | Artifacts holds the set of available artifacts for this vulnerability, such as exploit, shodan queries, PCAP traces, and others. | [optional] **cve** | **str** | CVE identifier for the given initial access record. | [optional] +**id** | **str** | ID is the unique identifier for this initial access record. | [optional] **in_kev** | **bool** | InKEV is true if this artifact is in CISA's Known Exploited Vulnerabilities (KEV) data set; otherwise, false. | [optional] **in_vckev** | **bool** | InVCKEV is true if this artifact is in VulnCheck's Known Exploited Vulnerabilities (VCKEV) data set; otherwise, false. | [optional] **vulnerable_cpes** | **List[str]** | VulnerableCPEs is the list of vulnerable CPE strings associated with this CVE and artifact(s). | [optional] diff --git a/docs/ApiInitialAccessArtifact.md b/docs/ApiInitialAccessArtifact.md index d67bfb2d..82820541 100644 --- a/docs/ApiInitialAccessArtifact.md +++ b/docs/ApiInitialAccessArtifact.md @@ -22,6 +22,7 @@ Name | Type | Description | Notes **exploit** | **bool** | Exploit indicates whether or not an exploit is available in this artifact. | [optional] **fofa_queries** | **List[str]** | FOFAQueries are raw queries for examining potential Internet-exposed devices & applications with FOFA. | [optional] **fofa_raw_queries** | **List[str]** | | [optional] +**goexploit** | [**ApiInitialAccessGoExploit**](ApiInitialAccessGoExploit.md) | | [optional] **google_queries** | **List[str]** | google queries | [optional] **google_raw_queries** | **List[str]** | raw google queries | [optional] **greynoise_queries** | **List[str]** | GreynoiseQueries are queries for finding the vulnerability via honeypot data. | [optional] @@ -38,6 +39,7 @@ Name | Type | Description | Notes **target_docker** | **bool** | TargetDocker indicates whether or not there is an available docker image with the vulnerability. | [optional] **target_encrypted_comms** | **str** | Encrypted communications? | [optional] **target_service** | **str** | TargetService indicates the service (HTTP, FTP, etc) that this exploit targets. | [optional] +**vc_target_intel_query** | **List[str]** | VCTargetIntelQuery are URLs to the VulnCheck target intel index for this artifact's vendor/product. | [optional] **vendor** | **str** | Vendor of the vulnerable product | [optional] **version_scanner** | **bool** | VersionScanner indicates whether or not the exploit PoC can determine if target system is vulnerable without sending exploit payload in this artifact. | [optional] **yara** | **bool** | YARA indicates whether or not a YARA rule designed to detect the exploit on an endpoint exists in this artifact. | [optional] diff --git a/docs/ApiInitialAccessGoExploit.md b/docs/ApiInitialAccessGoExploit.md new file mode 100644 index 00000000..551f7092 --- /dev/null +++ b/docs/ApiInitialAccessGoExploit.md @@ -0,0 +1,38 @@ +# ApiInitialAccessGoExploit + +GoExploit holds metadata about the VulnCheck Go exploit module for this artifact, if one exists. + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**asset_detection** | **bool** | AssetDetection indicates whether the module can detect the presence of the asset. | [optional] +**cpe** | **List[str]** | CPE lists the CPE strings for products targeted by this exploit module. | [optional] +**custom_flags** | [**List[ApiInitialAccessGoExploitCustomFlag]**](ApiInitialAccessGoExploitCustomFlag.md) | CustomFlags lists any additional flags exposed by the exploit module. | [optional] +**default_port** | **int** | DefaultPort is the default port the exploit targets. | [optional] +**exploit_type** | **str** | ExploitType is the category of exploit (e.g. CodeExecution, InformationDisclosure). | [optional] +**exploitation** | **bool** | Exploitation indicates whether the module can exploit the vulnerability. | [optional] +**protocol** | **str** | Protocol is the network protocol the exploit targets (e.g. HTTP, TCP). | [optional] +**supported_c2** | **List[str]** | SupportedC2 lists the C2 server types supported by the exploit module. | [optional] +**version_scanner** | **bool** | VersionScanner indicates whether the module can determine if the target is vulnerable without sending an exploit payload. | [optional] + +## Example + +```python +from vulncheck_sdk.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit + +# TODO update the JSON string below +json = "{}" +# create an instance of ApiInitialAccessGoExploit from a JSON string +api_initial_access_go_exploit_instance = ApiInitialAccessGoExploit.from_json(json) +# print the JSON string representation of the object +print(ApiInitialAccessGoExploit.to_json()) + +# convert the object into a dict +api_initial_access_go_exploit_dict = api_initial_access_go_exploit_instance.to_dict() +# create an instance of ApiInitialAccessGoExploit from a dict +api_initial_access_go_exploit_from_dict = ApiInitialAccessGoExploit.from_dict(api_initial_access_go_exploit_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ApiInitialAccessGoExploitCustomFlag.md b/docs/ApiInitialAccessGoExploitCustomFlag.md new file mode 100644 index 00000000..d574d732 --- /dev/null +++ b/docs/ApiInitialAccessGoExploitCustomFlag.md @@ -0,0 +1,33 @@ +# ApiInitialAccessGoExploitCustomFlag + +api.InitialAccessGoExploitCustomFlag + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**default** | **str** | Default is the flag's default value, serialized as a string. | [optional] +**name** | **str** | Name is the flag name. | [optional] +**type** | **str** | Type is the flag's value type (string, int, uint, bool). | [optional] +**usage** | **str** | Usage is the flag's help text. | [optional] + +## Example + +```python +from vulncheck_sdk.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag + +# TODO update the JSON string below +json = "{}" +# create an instance of ApiInitialAccessGoExploitCustomFlag from a JSON string +api_initial_access_go_exploit_custom_flag_instance = ApiInitialAccessGoExploitCustomFlag.from_json(json) +# print the JSON string representation of the object +print(ApiInitialAccessGoExploitCustomFlag.to_json()) + +# convert the object into a dict +api_initial_access_go_exploit_custom_flag_dict = api_initial_access_go_exploit_custom_flag_instance.to_dict() +# create an instance of ApiInitialAccessGoExploitCustomFlag from a dict +api_initial_access_go_exploit_custom_flag_from_dict = ApiInitialAccessGoExploitCustomFlag.from_dict(api_initial_access_go_exploit_custom_flag_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/ApiTargetIntel.md b/docs/ApiTargetIntel.md index fc990402..e54101ed 100644 --- a/docs/ApiTargetIntel.md +++ b/docs/ApiTargetIntel.md @@ -15,6 +15,7 @@ Name | Type | Description | Notes **country_code** | **str** | | [optional] **cpe** | **List[str]** | | [optional] **cve** | **List[str]** | | [optional] +**cve_confirmed** | [**List[ApiCVEConfirmed]**](ApiCVEConfirmed.md) | | [optional] **date_added** | **str** | | [optional] **fingerprints** | [**List[ApiFingerprint]**](ApiFingerprint.md) | | [optional] **hostname** | **str** | | [optional] @@ -24,6 +25,7 @@ Name | Type | Description | Notes **product** | **List[str]** | | [optional] **protocol** | **str** | | [optional] **timestamp** | **str** | | [optional] +**transport** | **str** | | [optional] **vendor** | **List[str]** | | [optional] **version** | **List[str]** | | [optional] diff --git a/docs/ApiTargetIntelCVESummary.md b/docs/ApiTargetIntelCVESummary.md deleted file mode 100644 index 1b4b17ca..00000000 --- a/docs/ApiTargetIntelCVESummary.md +++ /dev/null @@ -1,35 +0,0 @@ -# ApiTargetIntelCVESummary - -api.TargetIntelCVESummary - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**timestamp** | **str** | | [optional] -**asns** | [**List[ApiTargetIntelCVESummaryAsnsInner]**](ApiTargetIntelCVESummaryAsnsInner.md) | | [optional] -**country_codes** | [**List[ApiTargetIntelCVESummaryAsnsInner]**](ApiTargetIntelCVESummaryAsnsInner.md) | | [optional] -**cve** | **str** | | [optional] -**ports** | [**List[ApiTargetIntelCVESummaryPortsInner]**](ApiTargetIntelCVESummaryPortsInner.md) | | [optional] -**vendors** | [**List[ApiTargetIntelCVESummaryAsnsInner]**](ApiTargetIntelCVESummaryAsnsInner.md) | | [optional] - -## Example - -```python -from vulncheck_sdk.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary - -# TODO update the JSON string below -json = "{}" -# create an instance of ApiTargetIntelCVESummary from a JSON string -api_target_intel_cve_summary_instance = ApiTargetIntelCVESummary.from_json(json) -# print the JSON string representation of the object -print(ApiTargetIntelCVESummary.to_json()) - -# convert the object into a dict -api_target_intel_cve_summary_dict = api_target_intel_cve_summary_instance.to_dict() -# create an instance of ApiTargetIntelCVESummary from a dict -api_target_intel_cve_summary_from_dict = ApiTargetIntelCVESummary.from_dict(api_target_intel_cve_summary_dict) -``` -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ApiTargetIntelCVESummaryAsnsInner.md b/docs/ApiTargetIntelCVESummaryAsnsInner.md deleted file mode 100644 index 44d1f240..00000000 --- a/docs/ApiTargetIntelCVESummaryAsnsInner.md +++ /dev/null @@ -1,30 +0,0 @@ -# ApiTargetIntelCVESummaryAsnsInner - - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**count** | **int** | | [optional] -**value** | **str** | | [optional] - -## Example - -```python -from vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner - -# TODO update the JSON string below -json = "{}" -# create an instance of ApiTargetIntelCVESummaryAsnsInner from a JSON string -api_target_intel_cve_summary_asns_inner_instance = ApiTargetIntelCVESummaryAsnsInner.from_json(json) -# print the JSON string representation of the object -print(ApiTargetIntelCVESummaryAsnsInner.to_json()) - -# convert the object into a dict -api_target_intel_cve_summary_asns_inner_dict = api_target_intel_cve_summary_asns_inner_instance.to_dict() -# create an instance of ApiTargetIntelCVESummaryAsnsInner from a dict -api_target_intel_cve_summary_asns_inner_from_dict = ApiTargetIntelCVESummaryAsnsInner.from_dict(api_target_intel_cve_summary_asns_inner_dict) -``` -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ApiTargetIntelCVESummaryPortsInner.md b/docs/ApiTargetIntelCVESummaryPortsInner.md deleted file mode 100644 index 741c427a..00000000 --- a/docs/ApiTargetIntelCVESummaryPortsInner.md +++ /dev/null @@ -1,30 +0,0 @@ -# ApiTargetIntelCVESummaryPortsInner - - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**count** | **int** | | [optional] -**value** | **int** | | [optional] - -## Example - -```python -from vulncheck_sdk.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner - -# TODO update the JSON string below -json = "{}" -# create an instance of ApiTargetIntelCVESummaryPortsInner from a JSON string -api_target_intel_cve_summary_ports_inner_instance = ApiTargetIntelCVESummaryPortsInner.from_json(json) -# print the JSON string representation of the object -print(ApiTargetIntelCVESummaryPortsInner.to_json()) - -# convert the object into a dict -api_target_intel_cve_summary_ports_inner_dict = api_target_intel_cve_summary_ports_inner_instance.to_dict() -# create an instance of ApiTargetIntelCVESummaryPortsInner from a dict -api_target_intel_cve_summary_ports_inner_from_dict = ApiTargetIntelCVESummaryPortsInner.from_dict(api_target_intel_cve_summary_ports_inner_dict) -``` -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/docs/ApiVulnCheckCanary.md b/docs/ApiVulnCheckCanary.md index 671a2109..f9da6e81 100644 --- a/docs/ApiVulnCheckCanary.md +++ b/docs/ApiVulnCheckCanary.md @@ -6,12 +6,16 @@ api.VulnCheckCanary Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- +**c2_frequency_3d** | [**List[ApiC2Frequency]**](ApiC2Frequency.md) | | [optional] +**c2_location** | **List[str]** | | [optional] **category** | **str** | | [optional] **client_fingerprints** | [**ApiClientFingerprints**](ApiClientFingerprints.md) | | [optional] **cve** | **str** | | [optional] **dst_country** | **str** | | [optional] **http** | [**ApiHTTPDetails**](ApiHTTPDetails.md) | | [optional] **payload** | **str** | | [optional] +**payload_tlsh** | **str** | | [optional] +**payload_tooling** | **List[str]** | | [optional] **severity** | **int** | | [optional] **signature** | **str** | | [optional] **signature_id** | **int** | | [optional] @@ -20,7 +24,11 @@ Name | Type | Description | Notes **src_asn** | **str** | | [optional] **src_country** | **str** | | [optional] **src_ip** | **str** | | [optional] +**src_ip_freq_3d** | **int** | | [optional] +**src_ip_freq_3d_canary** | **int** | | [optional] +**src_ip_type_findings** | **List[str]** | | [optional] **src_port** | **int** | | [optional] +**tech_vertical** | **List[str]** | | [optional] **timestamp** | **str** | | [optional] ## Example diff --git a/docs/IndicesApi.md b/docs/IndicesApi.md index 64759637..97613cef 100644 --- a/docs/IndicesApi.md +++ b/docs/IndicesApi.md @@ -26,6 +26,7 @@ Method | HTTP request | Description [**index_ami_get**](IndicesApi.md#index_ami_get) | **GET** /v3/index/ami | Return vulnerability data stored in index \"ami\" [**index_anchore_nvd_override_get**](IndicesApi.md#index_anchore_nvd_override_get) | **GET** /v3/index/anchore-nvd-override | Return vulnerability data stored in index \"anchore-nvd-override\" [**index_android_get**](IndicesApi.md#index_android_get) | **GET** /v3/index/android | Return vulnerability data stored in index \"android\" +[**index_anthropic_cvd_get**](IndicesApi.md#index_anthropic_cvd_get) | **GET** /v3/index/anthropic-cvd | Return vulnerability data stored in index \"anthropic-cvd\" [**index_apache_activemq_get**](IndicesApi.md#index_apache_activemq_get) | **GET** /v3/index/apache-activemq | Return vulnerability data stored in index \"apache-activemq\" [**index_apache_archiva_get**](IndicesApi.md#index_apache_archiva_get) | **GET** /v3/index/apache-archiva | Return vulnerability data stored in index \"apache-archiva\" [**index_apache_arrow_get**](IndicesApi.md#index_apache_arrow_get) | **GET** /v3/index/apache-arrow | Return vulnerability data stored in index \"apache-arrow\" @@ -440,7 +441,6 @@ Method | HTTP request | Description [**index_synology_get**](IndicesApi.md#index_synology_get) | **GET** /v3/index/synology | Return vulnerability data stored in index \"synology\" [**index_syss_get**](IndicesApi.md#index_syss_get) | **GET** /v3/index/syss | Return vulnerability data stored in index \"syss\" [**index_tailscale_get**](IndicesApi.md#index_tailscale_get) | **GET** /v3/index/tailscale | Return vulnerability data stored in index \"tailscale\" -[**index_target_intel_cve_summary_get**](IndicesApi.md#index_target_intel_cve_summary_get) | **GET** /v3/index/target-intel-cve-summary | Return vulnerability data stored in index \"target-intel-cve-summary\" [**index_target_intel_get**](IndicesApi.md#index_target_intel_get) | **GET** /v3/index/target-intel | Return vulnerability data stored in index \"target-intel\" [**index_teamviewer_get**](IndicesApi.md#index_teamviewer_get) | **GET** /v3/index/teamviewer | Return vulnerability data stored in index \"teamviewer\" [**index_tenable_research_advisories_get**](IndicesApi.md#index_tenable_research_advisories_get) | **GET** /v3/index/tenable-research-advisories | Return vulnerability data stored in index \"tenable-research-advisories\" @@ -3549,6 +3549,144 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) +# **index_anthropic_cvd_get** +> RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination index_anthropic_cvd_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cve=cve, alias=alias, iava=iava, jvndb=jvndb, ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, published=published, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) + +Return vulnerability data stored in index \"anthropic-cvd\" + +### Overview +This endpoint allows you to retrieve a paginated list of all documents from the anthropic-cvd index. \ +By default, a maximum of 100 documents are shown per page. + +**Index Description:** Anthropic Red CVD + +### Paging Over Large Data (cursor) +In order to allow users to iterate over large index datasets, this endpoint provides a server-side +"cursor" mechanism. To use the cursor, first call `GET /index/anthropic-cvd?start_cursor`, the response will +have a `next_cursor` id that clients will need to pass as a query parameter to the next request like +`GET /index/anthropic-cvd?cursor=` + + +### Example + +* Api Key Authentication (Bearer): + +```python +import vulncheck_sdk +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination +from vulncheck_sdk.rest import ApiException +from pprint import pprint + +# Defining the host is optional and defaults to https://api.vulncheck.com +# See configuration.py for a list of all supported configuration parameters. +configuration = vulncheck_sdk.Configuration( + host = "https://api.vulncheck.com" +) + +# The client must configure the authentication and authorization parameters +# in accordance with the API server security policy. +# Examples for each auth method are provided below, use the example that +# satisfies your auth use case. + +# Configure API key authorization: Bearer +configuration.api_key['Bearer'] = os.environ["API_KEY"] + +# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed +# configuration.api_key_prefix['Bearer'] = 'Bearer' + +# Enter a context with an instance of the API client +with vulncheck_sdk.ApiClient(configuration) as api_client: + # Create an instance of the API class + api_instance = vulncheck_sdk.IndicesApi(api_client) + page = 56 # int | set the page number of the response (optional) + limit = 56 # int | limit the number of findings in the response (optional) + cursor = 'cursor_example' # str | continue server-side paging using a cursor id (optional) + start_cursor = 'start_cursor_example' # str | request server-side paging (optional) + order = 'order_example' # str | direction of the sort (optional) + sort = 'sort_example' # str | field by which to sort the results (optional) + cve = 'cve_example' # str | Specify a CVE ID to search with. (optional) + alias = 'alias_example' # str | Specify a vulnerability alias to search with. (optional) + iava = 'iava_example' # str | Specify an IAVA ID to search with. (optional) + jvndb = 'jvndb_example' # str | Specify a JVNDB ID to search with. (optional) + ilvn = 'ilvn_example' # str | Specify an ILVN ID to search with. (optional) + threat_actor = 'threat_actor_example' # str | Specify a threat actor name to search with. (optional) + mitre_id = 'mitre_id_example' # str | Specify a MITRE ID to search with. (optional) + misp_id = 'misp_id_example' # str | Specify a MISP ID to search with. (optional) + ransomware = 'ransomware_example' # str | Specify a ransomeware family name to search with. (optional) + botnet = 'botnet_example' # str | Specify a botnet name to search with. (optional) + published = 'published_example' # str | Specify a published date (optional) + var_date = 'var_date_example' # str | Specify an exact published date to filter with. (optional) + updated_at_start_date = 'updated_at_start_date_example' # str | Specify a starting 'updated-at' date to filter with. (optional) + updated_at_end_date = 'updated_at_end_date_example' # str | Specify an ending 'updated-at' date to filter with. (optional) + last_mod_start_date = 'last_mod_start_date_example' # str | Specify a starting last modified date to filter with. (optional) + last_mod_end_date = 'last_mod_end_date_example' # str | Specify an ending last modified date to filter with. (optional) + pub_start_date = 'pub_start_date_example' # str | Specify a starting published date to filter with. (optional) + pub_end_date = 'pub_end_date_example' # str | Specify an ending published date to filter with. (optional) + + try: + # Return vulnerability data stored in index \"anthropic-cvd\" + api_response = api_instance.index_anthropic_cvd_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cve=cve, alias=alias, iava=iava, jvndb=jvndb, ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, published=published, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) + print("The response of IndicesApi->index_anthropic_cvd_get:\n") + pprint(api_response) + except Exception as e: + print("Exception when calling IndicesApi->index_anthropic_cvd_get: %s\n" % e) +``` + + + +### Parameters + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **page** | **int**| set the page number of the response | [optional] + **limit** | **int**| limit the number of findings in the response | [optional] + **cursor** | **str**| continue server-side paging using a cursor id | [optional] + **start_cursor** | **str**| request server-side paging | [optional] + **order** | **str**| direction of the sort | [optional] + **sort** | **str**| field by which to sort the results | [optional] + **cve** | **str**| Specify a CVE ID to search with. | [optional] + **alias** | **str**| Specify a vulnerability alias to search with. | [optional] + **iava** | **str**| Specify an IAVA ID to search with. | [optional] + **jvndb** | **str**| Specify a JVNDB ID to search with. | [optional] + **ilvn** | **str**| Specify an ILVN ID to search with. | [optional] + **threat_actor** | **str**| Specify a threat actor name to search with. | [optional] + **mitre_id** | **str**| Specify a MITRE ID to search with. | [optional] + **misp_id** | **str**| Specify a MISP ID to search with. | [optional] + **ransomware** | **str**| Specify a ransomeware family name to search with. | [optional] + **botnet** | **str**| Specify a botnet name to search with. | [optional] + **published** | **str**| Specify a published date | [optional] + **var_date** | **str**| Specify an exact published date to filter with. | [optional] + **updated_at_start_date** | **str**| Specify a starting 'updated-at' date to filter with. | [optional] + **updated_at_end_date** | **str**| Specify an ending 'updated-at' date to filter with. | [optional] + **last_mod_start_date** | **str**| Specify a starting last modified date to filter with. | [optional] + **last_mod_end_date** | **str**| Specify an ending last modified date to filter with. | [optional] + **pub_start_date** | **str**| Specify a starting published date to filter with. | [optional] + **pub_end_date** | **str**| Specify an ending published date to filter with. | [optional] + +### Return type + +[**RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination**](RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination.md) + +### Authorization + +[Bearer](../README.md#Bearer) + +### HTTP request headers + + - **Content-Type**: Not defined + - **Accept**: application/json + +### HTTP response details + +| Status code | Description | Response headers | +|-------------|-------------|------------------| +**200** | OK | - | +**404** | Not Found | - | +**500** | Internal Server Error | - | + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) + # **index_apache_activemq_get** > RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination index_apache_activemq_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cve=cve, alias=alias, iava=iava, jvndb=jvndb, ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, published=published, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) @@ -60721,146 +60859,8 @@ Name | Type | Description | Notes [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) -# **index_target_intel_cve_summary_get** -> RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination index_target_intel_cve_summary_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cve=cve, alias=alias, iava=iava, jvndb=jvndb, ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, published=published, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) - -Return vulnerability data stored in index \"target-intel-cve-summary\" - -### Overview -This endpoint allows you to retrieve a paginated list of all documents from the target-intel-cve-summary index. \ -By default, a maximum of 100 documents are shown per page. - -**Index Description:** VulnCheck Target Intelligence CVE Summary - -### Paging Over Large Data (cursor) -In order to allow users to iterate over large index datasets, this endpoint provides a server-side -"cursor" mechanism. To use the cursor, first call `GET /index/target-intel-cve-summary?start_cursor`, the response will -have a `next_cursor` id that clients will need to pass as a query parameter to the next request like -`GET /index/target-intel-cve-summary?cursor=` - - -### Example - -* Api Key Authentication (Bearer): - -```python -import vulncheck_sdk -from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination -from vulncheck_sdk.rest import ApiException -from pprint import pprint - -# Defining the host is optional and defaults to https://api.vulncheck.com -# See configuration.py for a list of all supported configuration parameters. -configuration = vulncheck_sdk.Configuration( - host = "https://api.vulncheck.com" -) - -# The client must configure the authentication and authorization parameters -# in accordance with the API server security policy. -# Examples for each auth method are provided below, use the example that -# satisfies your auth use case. - -# Configure API key authorization: Bearer -configuration.api_key['Bearer'] = os.environ["API_KEY"] - -# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed -# configuration.api_key_prefix['Bearer'] = 'Bearer' - -# Enter a context with an instance of the API client -with vulncheck_sdk.ApiClient(configuration) as api_client: - # Create an instance of the API class - api_instance = vulncheck_sdk.IndicesApi(api_client) - page = 56 # int | set the page number of the response (optional) - limit = 56 # int | limit the number of findings in the response (optional) - cursor = 'cursor_example' # str | continue server-side paging using a cursor id (optional) - start_cursor = 'start_cursor_example' # str | request server-side paging (optional) - order = 'order_example' # str | direction of the sort (optional) - sort = 'sort_example' # str | field by which to sort the results (optional) - cve = 'cve_example' # str | Specify a CVE ID to search with. (optional) - alias = 'alias_example' # str | Specify a vulnerability alias to search with. (optional) - iava = 'iava_example' # str | Specify an IAVA ID to search with. (optional) - jvndb = 'jvndb_example' # str | Specify a JVNDB ID to search with. (optional) - ilvn = 'ilvn_example' # str | Specify an ILVN ID to search with. (optional) - threat_actor = 'threat_actor_example' # str | Specify a threat actor name to search with. (optional) - mitre_id = 'mitre_id_example' # str | Specify a MITRE ID to search with. (optional) - misp_id = 'misp_id_example' # str | Specify a MISP ID to search with. (optional) - ransomware = 'ransomware_example' # str | Specify a ransomeware family name to search with. (optional) - botnet = 'botnet_example' # str | Specify a botnet name to search with. (optional) - published = 'published_example' # str | Specify a published date (optional) - var_date = 'var_date_example' # str | Specify an exact published date to filter with. (optional) - updated_at_start_date = 'updated_at_start_date_example' # str | Specify a starting 'updated-at' date to filter with. (optional) - updated_at_end_date = 'updated_at_end_date_example' # str | Specify an ending 'updated-at' date to filter with. (optional) - last_mod_start_date = 'last_mod_start_date_example' # str | Specify a starting last modified date to filter with. (optional) - last_mod_end_date = 'last_mod_end_date_example' # str | Specify an ending last modified date to filter with. (optional) - pub_start_date = 'pub_start_date_example' # str | Specify a starting published date to filter with. (optional) - pub_end_date = 'pub_end_date_example' # str | Specify an ending published date to filter with. (optional) - - try: - # Return vulnerability data stored in index \"target-intel-cve-summary\" - api_response = api_instance.index_target_intel_cve_summary_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cve=cve, alias=alias, iava=iava, jvndb=jvndb, ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, published=published, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) - print("The response of IndicesApi->index_target_intel_cve_summary_get:\n") - pprint(api_response) - except Exception as e: - print("Exception when calling IndicesApi->index_target_intel_cve_summary_get: %s\n" % e) -``` - - - -### Parameters - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **page** | **int**| set the page number of the response | [optional] - **limit** | **int**| limit the number of findings in the response | [optional] - **cursor** | **str**| continue server-side paging using a cursor id | [optional] - **start_cursor** | **str**| request server-side paging | [optional] - **order** | **str**| direction of the sort | [optional] - **sort** | **str**| field by which to sort the results | [optional] - **cve** | **str**| Specify a CVE ID to search with. | [optional] - **alias** | **str**| Specify a vulnerability alias to search with. | [optional] - **iava** | **str**| Specify an IAVA ID to search with. | [optional] - **jvndb** | **str**| Specify a JVNDB ID to search with. | [optional] - **ilvn** | **str**| Specify an ILVN ID to search with. | [optional] - **threat_actor** | **str**| Specify a threat actor name to search with. | [optional] - **mitre_id** | **str**| Specify a MITRE ID to search with. | [optional] - **misp_id** | **str**| Specify a MISP ID to search with. | [optional] - **ransomware** | **str**| Specify a ransomeware family name to search with. | [optional] - **botnet** | **str**| Specify a botnet name to search with. | [optional] - **published** | **str**| Specify a published date | [optional] - **var_date** | **str**| Specify an exact published date to filter with. | [optional] - **updated_at_start_date** | **str**| Specify a starting 'updated-at' date to filter with. | [optional] - **updated_at_end_date** | **str**| Specify an ending 'updated-at' date to filter with. | [optional] - **last_mod_start_date** | **str**| Specify a starting last modified date to filter with. | [optional] - **last_mod_end_date** | **str**| Specify an ending last modified date to filter with. | [optional] - **pub_start_date** | **str**| Specify a starting published date to filter with. | [optional] - **pub_end_date** | **str**| Specify an ending published date to filter with. | [optional] - -### Return type - -[**RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination**](RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination.md) - -### Authorization - -[Bearer](../README.md#Bearer) - -### HTTP request headers - - - **Content-Type**: Not defined - - **Accept**: application/json - -### HTTP response details - -| Status code | Description | Response headers | -|-------------|-------------|------------------| -**200** | OK | - | -**404** | Not Found | - | -**500** | Internal Server Error | - | - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) - # **index_target_intel_get** -> RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination index_target_intel_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cidr=cidr, cve=cve, country=country, country_code=country_code, asn=asn, id=id, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, port=port, contains_cve=contains_cve, classifications=classifications, hostname=hostname, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) +> RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination index_target_intel_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cidr=cidr, cve=cve, country=country, country_code=country_code, asn=asn, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, transport=transport, port=port, contains_cve=contains_cve, confirmed=confirmed, classifications=classifications, hostname=hostname, domain=domain, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) Return vulnerability data stored in index \"target-intel\" @@ -60919,16 +60919,18 @@ with vulncheck_sdk.ApiClient(configuration) as api_client: country = 'country_example' # str | Country name ISO-3166?? format (optional) country_code = 'country_code_example' # str | Country code in ISO-3166?? format (optional) asn = 'asn_example' # str | Autonomous system number (optional) - id = 'id_example' # str | Record type (optional) cpe = 'cpe_example' # str | CPE string (optional) vendor = 'vendor_example' # str | Vendor name (optional) product = 'product_example' # str | Product name (optional) version = 'version_example' # str | Product version (optional) protocol = 'protocol_example' # str | Protocol (optional) + transport = 'transport_example' # str | Transport (tcp/udp) (optional) port = 'port_example' # str | Port number (optional) contains_cve = True # bool | Filter to records that have (true) or do not have (false) an associated CVE (optional) + confirmed = True # bool | Filter to records with at least one CVE match that is (true) or is not (false) confirmed (optional) classifications = 'classifications_example' # str | Match one or more classification values (optional) hostname = 'hostname_example' # str | Match a string in the hostname (optional) + domain = 'domain_example' # str | Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix) (optional) var_date = 'var_date_example' # str | Specify an exact published date to filter with. (optional) updated_at_start_date = 'updated_at_start_date_example' # str | Specify a starting 'updated-at' date to filter with. (optional) updated_at_end_date = 'updated_at_end_date_example' # str | Specify an ending 'updated-at' date to filter with. (optional) @@ -60939,7 +60941,7 @@ with vulncheck_sdk.ApiClient(configuration) as api_client: try: # Return vulnerability data stored in index \"target-intel\" - api_response = api_instance.index_target_intel_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cidr=cidr, cve=cve, country=country, country_code=country_code, asn=asn, id=id, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, port=port, contains_cve=contains_cve, classifications=classifications, hostname=hostname, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) + api_response = api_instance.index_target_intel_get(page=page, limit=limit, cursor=cursor, start_cursor=start_cursor, order=order, sort=sort, cidr=cidr, cve=cve, country=country, country_code=country_code, asn=asn, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, transport=transport, port=port, contains_cve=contains_cve, confirmed=confirmed, classifications=classifications, hostname=hostname, domain=domain, var_date=var_date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, last_mod_start_date=last_mod_start_date, last_mod_end_date=last_mod_end_date, pub_start_date=pub_start_date, pub_end_date=pub_end_date) print("The response of IndicesApi->index_target_intel_get:\n") pprint(api_response) except Exception as e: @@ -60964,16 +60966,18 @@ Name | Type | Description | Notes **country** | **str**| Country name ISO-3166?? format | [optional] **country_code** | **str**| Country code in ISO-3166?? format | [optional] **asn** | **str**| Autonomous system number | [optional] - **id** | **str**| Record type | [optional] **cpe** | **str**| CPE string | [optional] **vendor** | **str**| Vendor name | [optional] **product** | **str**| Product name | [optional] **version** | **str**| Product version | [optional] **protocol** | **str**| Protocol | [optional] + **transport** | **str**| Transport (tcp/udp) | [optional] **port** | **str**| Port number | [optional] **contains_cve** | **bool**| Filter to records that have (true) or do not have (false) an associated CVE | [optional] + **confirmed** | **bool**| Filter to records with at least one CVE match that is (true) or is not (false) confirmed | [optional] **classifications** | **str**| Match one or more classification values | [optional] **hostname** | **str**| Match a string in the hostname | [optional] + **domain** | **str**| Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix) | [optional] **var_date** | **str**| Specify an exact published date to filter with. | [optional] **updated_at_start_date** | **str**| Specify a starting 'updated-at' date to filter with. | [optional] **updated_at_end_date** | **str**| Specify an ending 'updated-at' date to filter with. | [optional] diff --git a/docs/RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination.md b/docs/RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination.md new file mode 100644 index 00000000..db3306d6 --- /dev/null +++ b/docs/RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination.md @@ -0,0 +1,32 @@ +# RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination + +render.ResponseWithMetadata-array_advisory_AnthropicCVD-paginate_Pagination + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**benchmark** | **float** | Benchmark is the server-side processing time for the request in seconds. Example: 0.122322 = approximately 122 milliseconds | [optional] +**meta** | [**PaginatePagination**](PaginatePagination.md) | | [optional] +**data** | [**List[AdvisoryAnthropicCVD]**](AdvisoryAnthropicCVD.md) | Data is the data returned by the endpoint | [optional] + +## Example + +```python +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination + +# TODO update the JSON string below +json = "{}" +# create an instance of RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from a JSON string +render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination_instance = RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination.from_json(json) +# print the JSON string representation of the object +print(RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination.to_json()) + +# convert the object into a dict +render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination_dict = render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination_instance.to_dict() +# create an instance of RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from a dict +render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination_from_dict = RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination.from_dict(render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination_dict) +``` +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination.md b/docs/RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination.md deleted file mode 100644 index 96ff8ea0..00000000 --- a/docs/RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination.md +++ /dev/null @@ -1,32 +0,0 @@ -# RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination - -render.ResponseWithMetadata-array_api_TargetIntelCVESummary-paginate_Pagination - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**benchmark** | **float** | Benchmark is the server-side processing time for the request in seconds. Example: 0.122322 = approximately 122 milliseconds | [optional] -**meta** | [**PaginatePagination**](PaginatePagination.md) | | [optional] -**data** | [**List[ApiTargetIntelCVESummary]**](ApiTargetIntelCVESummary.md) | Data is the data returned by the endpoint | [optional] - -## Example - -```python -from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination - -# TODO update the JSON string below -json = "{}" -# create an instance of RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from a JSON string -render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination_instance = RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination.from_json(json) -# print the JSON string representation of the object -print(RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination.to_json()) - -# convert the object into a dict -render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination_dict = render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination_instance.to_dict() -# create an instance of RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from a dict -render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination_from_dict = RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination.from_dict(render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination_dict) -``` -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/openapi.json b/openapi.json index 4858506c..818d106e 100644 --- a/openapi.json +++ b/openapi.json @@ -1 +1 @@ -{"components":{"schemas":{"advisory.A10":{"description":"advisory.A10","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"reference":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ABBAdvisory":{"description":"advisory.ABBAdvisory","properties":{"abb_vulnerability_id":{"items":{"type":"string"},"type":"array","uniqueItems":false},"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"document_id":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ADP":{"description":"advisory.ADP","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.VulnrichmentMetric"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"}},"type":"object"},"advisory.ADPContainer":{"description":"advisory.ADPContainer","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"configurations":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"cpeApplicability":{"items":{"$ref":"#/components/schemas/advisory.CustomCPE"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.Credit"},"type":"array","uniqueItems":false},"datePublic":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"exploits":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"solutions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"source":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"taxonomyMappings":{"items":{"$ref":"#/components/schemas/advisory.TaxonomyMapping"},"type":"array","uniqueItems":false},"timeline":{"items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"title":{"type":"string"},"workarounds":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AIX":{"description":"advisory.AIX","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AMD":{"description":"advisory.AMD","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AMI":{"description":"advisory.AMI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ASRG":{"description":"advisory.ASRG","properties":{"affected_products":{"type":"string"},"capec":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"problem_type":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AVEVAAdvisory":{"description":"advisory.AVEVAAdvisory","properties":{"aveva_vulnerability_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"published_by":{"type":"string"},"rating":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AVIDMLAdvs":{"description":"advisory.AVIDMLAdvs","properties":{"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AWS":{"description":"advisory.AWS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Abbott":{"description":"advisory.Abbott","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Absolute":{"description":"advisory.Absolute","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Acknowledgement":{"description":"advisory.Acknowledgement","properties":{"name":{"items":{"$ref":"#/components/schemas/advisory.IVal"},"type":"array","uniqueItems":false},"url":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Acronis":{"description":"advisory.Acronis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AdobeAdvisory":{"description":"advisory.AdobeAdvisory","properties":{"adobe_cves":{"items":{"$ref":"#/components/schemas/advisory.AdobeCVE"},"type":"array","uniqueItems":false},"affected":{"items":{"$ref":"#/components/schemas/advisory.AdobeAffected"},"type":"array"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"solutions":{"items":{"$ref":"#/components/schemas/advisory.AdobeSolution"},"type":"array"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AdobeAffected":{"description":"advisory.AdobeAffected","properties":{"platform":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AdobeCVE":{"description":"advisory.AdobeCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.AdobeSolution":{"description":"advisory.AdobeSolution","properties":{"platform":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Advantech":{"description":"advisory.Advantech","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Advisory":{"description":"advisory.Advisory","properties":{"affects":{"type":"string"},"announced":{"type":"string"},"category":{"type":"string"},"corrections":{"items":{"$ref":"#/components/schemas/advisory.Correction"},"type":"array"},"credits":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"module":{"type":"string"},"name":{"type":"string"},"topic":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AdvisoryDetails":{"description":"advisory.AdvisoryDetails","properties":{"bugzilla":{"$ref":"#/components/schemas/advisory.Bugzilla"},"cve":{"$ref":"#/components/schemas/advisory.OvalCVE"},"issued":{"$ref":"#/components/schemas/advisory.Issued"},"severity":{"type":"string"},"updated":{"$ref":"#/components/schemas/advisory.Updated"}},"type":"object"},"advisory.AdvisoryRecord":{"description":"advisory.AdvisoryRecord","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"external_id":{"items":{"type":"string"},"type":"array","uniqueItems":false},"lang":{"type":"string"},"name":{"type":"string"},"refsource":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.Affected":{"description":"advisory.Affected","properties":{"database_specific":{"description":"The meaning of the values within the object is entirely defined by the database"},"ecosystem_specific":{"description":"The meaning of the values within the object is entirely defined by the ecosystem"},"package":{"$ref":"#/components/schemas/advisory.OSVPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.Range"},"type":"array","uniqueItems":false},"severity":{"items":{"$ref":"#/components/schemas/advisory.Severity"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AffectedChrome":{"description":"advisory.AffectedChrome","properties":{"fixed_version":{"type":"string"},"product":{"type":"string"}},"type":"object"},"advisory.AffectedDebianPackage":{"description":"advisory.AffectedDebianPackage","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AffectedDebianRelease":{"description":"advisory.AffectedDebianRelease","properties":{"fixed_version":{"type":"string"},"nodsa":{"type":"string"},"nodsa_reason":{"type":"string"},"release_name":{"type":"string"},"repositories":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianRepository"},"type":"array","uniqueItems":false},"status":{"type":"string"},"urgency":{"type":"string"}},"type":"object"},"advisory.AffectedDebianRepository":{"description":"advisory.AffectedDebianRepository","properties":{"repository_name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AffectedFile":{"description":"advisory.AffectedFile","properties":{"file_last_modified":{"type":"string"},"file_name":{"type":"string"}},"type":"object"},"advisory.AffectedProduct":{"description":"advisory.AffectedProduct","properties":{"affectedReleases":{"type":"string"},"fixedReleases":{"type":"string"},"lexmarkModels":{"type":"string"}},"type":"object"},"advisory.AffectedRel":{"description":"advisory.AffectedRel","properties":{"advisory":{"type":"string"},"cpe":{"type":"string"},"package":{"type":"string"},"product_name":{"type":"string"},"release_date":{"type":"string"}},"type":"object"},"advisory.AffectedUbuntuPackage":{"description":"advisory.AffectedUbuntuPackage","properties":{"break_commit_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fix_commit_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package_name":{"type":"string"},"package_release_status":{"items":{"$ref":"#/components/schemas/advisory.UbuntuPackageReleaseStatus"},"type":"array","uniqueItems":false},"upstream_fix_url":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AlephResearch":{"description":"advisory.AlephResearch","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Alibaba":{"description":"advisory.Alibaba","properties":{"cnnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"mitigation_cn":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_cn":{"type":"string"},"title_cn":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AlmaDate":{"description":"advisory.AlmaDate","properties":{"$date":{"type":"integer"}},"type":"object"},"advisory.AlmaLinuxUpdate":{"description":"advisory.AlmaLinuxUpdate","properties":{"bs_repo_id":{"$ref":"#/components/schemas/advisory.AlmaObjectID"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fromstr":{"type":"string"},"id":{"$ref":"#/components/schemas/advisory.AlmaObjectID"},"issued_date":{"$ref":"#/components/schemas/advisory.AlmaDate"},"pkglist":{"$ref":"#/components/schemas/advisory.AlmaPackageList"},"pushcount":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.AlmaReference"},"type":"array","uniqueItems":false},"release":{"type":"string"},"rights":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"update_url":{"type":"string"},"updated_date":{"$ref":"#/components/schemas/advisory.AlmaDate"},"updateinfo_id":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AlmaObjectID":{"description":"advisory.AlmaObjectID","properties":{"$oid":{"type":"string"}},"type":"object"},"advisory.AlmaPackage":{"description":"advisory.AlmaPackage","properties":{"arch":{"type":"string"},"epoch":{"type":"string"},"filename":{"type":"string"},"name":{"type":"string"},"reboot_suggested":{"type":"integer"},"release":{"type":"string"},"source":{"type":"string"},"sum":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AlmaPackageList":{"description":"advisory.AlmaPackageList","properties":{"name":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.AlmaPackage"},"type":"array","uniqueItems":false},"shortname":{"type":"string"}},"type":"object"},"advisory.AlmaReference":{"description":"advisory.AlmaReference","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.AlpineLinuxSecDB":{"description":"advisory.AlpineLinuxSecDB","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"distroversion":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecDBPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.AlpineLinuxSecDBPackage":{"description":"advisory.AlpineLinuxSecDBPackage","properties":{"package_name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecurityFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AlpineLinuxSecurityFix":{"description":"advisory.AlpineLinuxSecurityFix","properties":{"cve":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"advisory.AmazonAffectedPackage":{"description":"advisory.AmazonAffectedPackage","properties":{"advisory":{"type":"string"},"package":{"type":"string"},"platform":{"type":"string"},"releaseDate":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.AmazonCVE":{"description":"advisory.AmazonCVE","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AmazonAffectedPackage"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AnchoreNVDOverride":{"description":"advisory.AnchoreNVDOverride","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"override":{"$ref":"#/components/schemas/advisory.Override"},"url":{"type":"string"}},"type":"object"},"advisory.AndroidAdvisory":{"description":"advisory.AndroidAdvisory","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AndroidAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.AndroidReference"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AndroidAffected":{"description":"advisory.AndroidAffected","properties":{"ecosystem_specific":{"$ref":"#/components/schemas/advisory.EcoSystem"},"package":{"$ref":"#/components/schemas/advisory.AndroidPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.AndroidRange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AndroidEvent":{"description":"advisory.AndroidEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.AndroidPackage":{"description":"advisory.AndroidPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.AndroidRange":{"description":"advisory.AndroidRange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.AndroidEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.AndroidReference":{"description":"advisory.AndroidReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheActiveMQ":{"description":"advisory.ApacheActiveMQ","properties":{"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheArchiva":{"description":"advisory.ApacheArchiva","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheArrow":{"description":"advisory.ApacheArrow","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCamel":{"description":"advisory.ApacheCamel","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCommons":{"description":"advisory.ApacheCommons","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCouchDB":{"description":"advisory.ApacheCouchDB","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheFlink":{"description":"advisory.ApacheFlink","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.ApacheGuacamole":{"description":"advisory.ApacheGuacamole","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheHTTP":{"description":"advisory.ApacheHTTP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheHadoop":{"description":"advisory.ApacheHadoop","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheJSPWiki":{"description":"advisory.ApacheJSPWiki","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheKafka":{"description":"advisory.ApacheKafka","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheLoggingServices":{"description":"advisory.ApacheLoggingServices","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheNiFi":{"description":"advisory.ApacheNiFi","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed_versions":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOFBiz":{"description":"advisory.ApacheOFBiz","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOpenMeetings":{"description":"advisory.ApacheOpenMeetings","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOpenOffice":{"description":"advisory.ApacheOpenOffice","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApachePulsar":{"description":"advisory.ApachePulsar","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheShiro":{"description":"advisory.ApacheShiro","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheSpark":{"description":"advisory.ApacheSpark","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheStruts":{"description":"advisory.ApacheStruts","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"rating":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vulnerable_version":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ApacheSubversion":{"description":"advisory.ApacheSubversion","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheSuperset":{"description":"advisory.ApacheSuperset","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheTomcat":{"description":"advisory.ApacheTomcat","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheZooKeeper":{"description":"advisory.ApacheZooKeeper","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppCheck":{"description":"advisory.AppCheck","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Appgate":{"description":"advisory.Appgate","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppleAdvisory":{"description":"advisory.AppleAdvisory","properties":{"components":{"items":{"$ref":"#/components/schemas/advisory.AppleComponent"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppleComponent":{"description":"advisory.AppleComponent","properties":{"available_for":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"impact":{"type":"string"},"itw_exploit":{"type":"boolean"},"name":{"type":"string"}},"type":"object"},"advisory.ArchIssue":{"description":"advisory.ArchIssue","properties":{"advisories":{"items":{"type":"string"},"type":"array"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"issues":{"description":"cves","items":{"type":"string"},"type":"array"},"name":{"type":"string"},"packages":{"items":{"type":"string"},"type":"array"},"references":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"status":{"type":"string"},"ticket":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Arista":{"description":"advisory.Arista","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Aruba":{"description":"advisory.Aruba","properties":{"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AssetNote":{"description":"advisory.AssetNote","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Asterisk":{"description":"advisory.Asterisk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Astra":{"description":"advisory.Astra","properties":{"bdu":{"items":{"type":"string"},"type":"array","uniqueItems":false},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_ru":{"type":"string"},"title_ru":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Asus":{"description":"advisory.Asus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AtlassianAdvisory":{"description":"advisory.AtlassianAdvisory","properties":{"affected_version":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"detailed_summary":{"description":"overloading in places with 'RiskAssessment' and other places with\n'Description'","type":"string"},"fixed_version":{"type":"string"},"link":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AtlassianProducts":{"description":"advisory.AtlassianProducts","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"}},"type":"object"},"advisory.AtlassianVuln":{"description":"advisory.AtlassianVuln","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"$ref":"#/components/schemas/advisory.AtlassianProducts"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Atredis":{"description":"advisory.Atredis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendors":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Audiocodes":{"description":"advisory.Audiocodes","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AusCert":{"description":"advisory.AusCert","properties":{"body":{"type":"string"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"link":{"type":"string"},"operatingSystem":{"type":"string"},"product":{"type":"string"},"publisher":{"type":"string"},"resolution":{"type":"string"}},"type":"object"},"advisory.AustinHackersAdvisory":{"description":"advisory.AustinHackersAdvisory","properties":{"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"description":"From detail page (omitted for external-linked CVEs)","type":"number"},"cvss_vector":{"type":"string"},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"gcve":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"description":"From index table","type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Autodesk":{"description":"advisory.Autodesk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Avaya":{"description":"advisory.Avaya","properties":{"advisory_number":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"last_revised":{"type":"string"},"overview":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Avigilon":{"description":"advisory.Avigilon","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Award":{"description":"advisory.Award","properties":{"amount":{"type":"string"},"currency":{"type":"string"}},"type":"object"},"advisory.Axis":{"description":"advisory.Axis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Azul":{"description":"advisory.Azul","properties":{"base_score":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"prime_version":{"items":{"$ref":"#/components/schemas/advisory.PrimeVersion"},"type":"array","uniqueItems":false},"release":{"type":"string"},"url":{"type":"string"},"zulu_version":{"items":{"$ref":"#/components/schemas/advisory.ZuluVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BBraunAdvisory":{"description":"advisory.BBraunAdvisory","properties":{"attention":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"equipment":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"},"vulnerabilities":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BDUAdvisory":{"description":"advisory.BDUAdvisory","properties":{"bdu_id":{"description":"BDU:2022-03833","type":"string"},"cve":{"description":"[]string{\"CVE-2022-28194\"}","items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"$ref":"#/components/schemas/advisory.BDUCvss"},"cvss3":{"$ref":"#/components/schemas/advisory.BDUCvss3"},"cwe":{"description":"CWE-119","type":"string"},"date_added":{"type":"string"},"description_ru":{"description":"Библиотека libxml2 до версии 2.9.12 не корректно обрабатывает XML-документы, содержащие определенные сущности. В результате могут быть выполнены произвольные команды.","type":"string"},"environment":{"$ref":"#/components/schemas/advisory.BDUEnvironment"},"exploit_status_en":{"description":"Exploited","type":"string"},"exploit_status_ru":{"description":"Exploited","type":"string"},"fix_status_en":{"description":"Fixed","type":"string"},"fix_status_ru":{"description":"Fixed","type":"string"},"identify_date":{"description":"2022-09-01","type":"string"},"name_ru":{"description":"BDU:2022-03833: Уязвимость модуля Cboot (tegrabl_cbo.c) пакета драйверов микропрограммного обеспечения вычислительных плат NVIDIA Jetson, позволяющая нарушителю выполнить произвольный код или вызвать частичный отказ в обслуживании","type":"string"},"severity_ru":{"description":"High","type":"string"},"solution_ru":{"description":"Обновите драйверы микропрограммного обеспечения вычислительных плат NVIDIA Jetson до версии 32.6.1 или более поздней","type":"string"},"sources":{"description":"https://nvd.nist.gov/vuln/detail/CVE-2022-28194","items":{"type":"string"},"type":"array","uniqueItems":false},"text_ru":{"description":"Библиотека libxml2 до версии 2.9.12 не корректно обрабатывает XML-документы, содержащие определенные сущности. В результате могут быть выполнены произвольные команды.","type":"string"},"url":{"description":"https://bdu.fstec.ru/vul/2022-03833","type":"string"},"vul_status_en":{"description":"Exploitable","type":"string"},"vul_status_ru":{"description":"Exploitable","type":"string"},"vulnerable_software":{"$ref":"#/components/schemas/advisory.BDUVulnerableSoftware"}},"type":"object"},"advisory.BDUCvss":{"description":"advisory.BDUCvss","properties":{"vector":{"$ref":"#/components/schemas/advisory.BDUVector"}},"type":"object"},"advisory.BDUCvss3":{"description":"advisory.BDUCvss3","properties":{"vector":{"$ref":"#/components/schemas/advisory.BDUVector"}},"type":"object"},"advisory.BDUEnvironment":{"description":"advisory.BDUEnvironment","properties":{"os":{"$ref":"#/components/schemas/advisory.BDUOs"}},"type":"object"},"advisory.BDUOs":{"description":"advisory.BDUOs","properties":{"name":{"type":"string"},"platform":{"type":"string"},"text":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BDUSoft":{"description":"advisory.BDUSoft","properties":{"name":{"type":"string"},"platform":{"type":"string"},"text":{"type":"string"},"types":{"$ref":"#/components/schemas/advisory.BDUTypes"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BDUTypes":{"description":"advisory.BDUTypes","properties":{"text":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.BDUVector":{"description":"advisory.BDUVector","properties":{"score":{"type":"string"},"text":{"type":"string"}},"type":"object"},"advisory.BDUVulnerableSoftware":{"description":"advisory.BDUVulnerableSoftware","properties":{"soft":{"$ref":"#/components/schemas/advisory.BDUSoft"}},"type":"object"},"advisory.BLS":{"description":"advisory.BLS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"prodcut":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.Bandr":{"description":"advisory.Bandr","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"document_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BaxterAdvisory":{"description":"advisory.BaxterAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BeckhoffAdvisory":{"description":"advisory.BeckhoffAdvisory","properties":{"beckhoff_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"description":"if in the future we can delete this great - it's just a dupe to\nnormalize the field names","type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BeckmanCoulter":{"description":"advisory.BeckmanCoulter","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BectonDickinsonAdvisory":{"description":"advisory.BectonDickinsonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products_affected":{"items":{"$ref":"#/components/schemas/advisory.ProductsAffected"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BeldenAdvisory":{"description":"advisory.BeldenAdvisory","properties":{"belden_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BeyondTrust":{"description":"advisory.BeyondTrust","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Binarly":{"description":"advisory.Binarly","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BitDefender":{"description":"advisory.BitDefender","properties":{"additional_details":{"type":"string"},"affected_products":{"type":"string"},"affected_vendors":{"type":"string"},"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"details":{"type":"string"},"timeline":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BlackBerry":{"description":"advisory.BlackBerry","properties":{"bsrt":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BoschAdvisory":{"description":"advisory.BoschAdvisory","properties":{"bosch_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BostonScientificAdvisory":{"description":"advisory.BostonScientificAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Botnet":{"description":"advisory.Botnet","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"botnet_name":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Bugzilla":{"description":"advisory.Bugzilla","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CACyberCentreAdvisory":{"description":"advisory.CACyberCentreAdvisory","properties":{"control_systems":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"html_url":{"type":"string"},"serial_number":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CBLMariner":{"description":"advisory.CBLMariner","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"package":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CERTEUAdvisory":{"description":"advisory.CERTEUAdvisory","properties":{"advisoryId":{"type":"string"},"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"history":{"items":{"type":"string"},"type":"array"},"link":{"type":"string"},"recommendations":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"technicalDetails":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CESA":{"description":"advisory.CESA","properties":{"arch":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"issueDate":{"type":"string"},"osRelease":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.CentosPackage"},"type":"array"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"}},"type":"object"},"advisory.CISAAlert":{"description":"advisory.CISAAlert","properties":{"AffectedProducts":{"type":"string"},"AlertID":{"type":"string"},"Archived":{"type":"boolean"},"CVEExploitedITW":{"type":"boolean"},"CVSS":{"type":"string"},"ICSA":{"type":"boolean"},"ICSMA":{"type":"boolean"},"Mitigations":{"type":"string"},"ReleaseDate":{"type":"string"},"Title":{"type":"string"},"Url":{"type":"string"},"Vendor":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CISControl":{"description":"advisory.CISControl","properties":{"cis_control_description":{"type":"string"},"cis_control_id":{"type":"string"},"cis_control_name":{"type":"string"}},"type":"object"},"advisory.CNNVDEntryJSON":{"description":"advisory.CNNVDEntryJSON","properties":{"bugtraq-id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"modified-date":{"type":"string"},"name_cn":{"type":"string"},"published-date":{"type":"string"},"severity_cn":{"type":"string"},"severity_en":{"type":"string"},"source":{"type":"string"},"url":{"type":"string"},"vuln-description_cn":{"type":"string"},"vuln-solution":{"type":"string"},"vuln-type_cn":{"type":"string"},"vuln-type_en":{"type":"string"}},"type":"object"},"advisory.CNVDBulletin":{"description":"advisory.CNVDBulletin","properties":{"cnta":{"type":"string"},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"reference_urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CNVDFlaw":{"description":"advisory.CNVDFlaw","properties":{"affected_products_cn":{"type":"string"},"bugtraq_id":{"type":"string"},"cnvd":{"type":"string"},"collection_time":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"harm_level":{"type":"string"},"id":{"type":"string"},"public_date":{"type":"string"},"reference_urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"submission_time":{"type":"string"},"title_cn":{"type":"string"},"update_time":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"validation_info_cn":{"type":"string"},"validation_info_en":{"type":"string"},"vendor_patch_cn":{"type":"string"},"vuln_attachments":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vuln_description_cn":{"type":"string"},"vuln_solution_cn":{"type":"string"},"vuln_type_cn":{"type":"string"}},"type":"object"},"advisory.COSUpdate":{"description":"advisory.COSUpdate","properties":{"changed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"featured":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"reference":{"type":"string"},"security":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated":{"type":"string"}},"type":"object"},"advisory.CPEMatch":{"description":"advisory.CPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.CPENode":{"description":"advisory.CPENode","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.CPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.CSAF":{"description":"advisory.CSAF","properties":{"document":{"$ref":"#/components/schemas/advisory.DocumentMetadata"},"notes":{"description":"Notes holds notes associated with the whole document.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3217-document-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_tree":{"$ref":"#/components/schemas/advisory.ProductBranch"},"vulnerabilities":{"description":"Vulnerabilities contains information about the vulnerabilities,\n(i.e. CVEs), associated threats, and product status.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#323-vulnerabilities-property","items":{"$ref":"#/components/schemas/advisory.CSAFVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CSAFDistribution":{"description":"advisory.CSAFDistribution","type":"object"},"advisory.CSAFNote":{"description":"advisory.CSAFNote","properties":{"audience":{"type":"string"},"category":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CSAFReference":{"description":"advisory.CSAFReference","properties":{"category":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CSAFRelationship":{"description":"advisory.CSAFRelationship","properties":{"category":{"type":"string"},"full_product_name":{"$ref":"#/components/schemas/advisory.Product"},"product_reference":{"type":"string"},"relates_to_product_reference":{"type":"string"}},"type":"object"},"advisory.CSAFScore":{"description":"advisory.CSAFScore","properties":{"cvss_v2":{"$ref":"#/components/schemas/advisory.CVSSV2"},"cvss_v3":{"$ref":"#/components/schemas/advisory.CVSSV3"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CSAFVulnerability":{"description":"advisory.CSAFVulnerability","properties":{"cve":{"description":"MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3232-vulnerabilities-property---cve","type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.Cwe"},"flags":{"description":"Machine readable flags for products related to vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3235-vulnerabilities-property---flags","items":{"$ref":"#/components/schemas/advisory.Flag"},"type":"array","uniqueItems":false},"ids":{"description":"List of IDs represents a list of unique labels or tracking IDs for the vulnerability (if such information exists).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3236-vulnerabilities-property---ids","items":{"$ref":"#/components/schemas/advisory.TrackingID"},"type":"array","uniqueItems":false},"notes":{"description":"Notes holds notes associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3238-vulnerabilities-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_status":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Provide details on the status of the referenced product related to the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3239-vulnerabilities-property---product-status","type":"object"},"references":{"description":"Vulnerability references holds a list of references associated with this vulnerability item.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32310-vulnerabilities-property---references","items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"remediations":{"description":"Provide details of remediations associated with a Vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32312-vulnerabilities-property---remediations","items":{"$ref":"#/components/schemas/advisory.RemediationData"},"type":"array","uniqueItems":false},"scores":{"description":"Scores holds the scores associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32313-vulnerabilities-property---scores\nCurrently only CVSS v3 is supported.","items":{"$ref":"#/components/schemas/advisory.CSAFScore"},"type":"array","uniqueItems":false},"threats":{"description":"Provide details of threats associated with a vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32314-vulnerabilities-property---threats","items":{"$ref":"#/components/schemas/advisory.ThreatData"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CVEDetail":{"description":"advisory.CVEDetail","properties":{"baseScore":{"type":"string"},"cveid":{"type":"string"},"description":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.CVEDetailsLink":{"description":"advisory.CVEDetailsLink","properties":{"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.CVEIdentityMappings":{"description":"advisory.CVEIdentityMappings","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"mappings":{"items":{"$ref":"#/components/schemas/advisory.CVEMapping"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CVEMapping":{"description":"advisory.CVEMapping","properties":{"id":{"type":"string"},"source":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CVEReference":{"description":"advisory.CVEReference","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CVSS":{"description":"advisory.CVSS","properties":{"score":{"type":"string"},"severity":{"type":"string"},"type":{"type":"string"},"vector":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CVSSV2":{"description":"advisory.CVSSV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"collateralDamagePotential":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"exploitability":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"targetDistribution":{"type":"string"},"temporalScore":{"type":"number"}},"type":"object"},"advisory.CVSSV3":{"description":"advisory.CVSSV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CVSSV40":{"description":"this isn't called baseMetric, because it can contain other metrics -- typically supplemental metrics","properties":{"Automatable":{"type":"string"},"Recovery":{"type":"string"},"Safety":{"type":"string"},"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityRequirement":{"type":"string"},"exploitMaturity":{"type":"string"},"integrityRequirement":{"type":"string"},"modifiedAttackComplexity":{"type":"string"},"modifiedAttackRequirements":{"type":"string"},"modifiedAttackVector":{"type":"string"},"modifiedPrivilegesRequired":{"type":"string"},"modifiedSubAvailabilityImpact":{"type":"string"},"modifiedSubConfidentialityImpact":{"type":"string"},"modifiedSubIntegrityImpact":{"type":"string"},"modifiedUserInteraction":{"type":"string"},"modifiedVulnAvailabilityImpact":{"type":"string"},"modifiedVulnConfidentialityImpact":{"type":"string"},"modifiedVulnIntegrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"providerUrgency":{"type":"string"},"subAvailabilityImpact":{"type":"string"},"subConfidentialityImpact":{"type":"string"},"subIntegrityImpact":{"type":"string"},"userInteraction":{"type":"string"},"valueDensity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"},"vulnAvailabilityImpact":{"type":"string"},"vulnConfidentialityImpact":{"type":"string"},"vulnIntegrityImpact":{"type":"string"},"vulnerabilityResponseEffort":{"type":"string"}},"type":"object"},"advisory.CVSSV40Threat":{"description":"advisory.CVSSV40Threat","properties":{"baseThreatScore":{"type":"number"},"baseThreatSeverity":{"type":"string"},"exploitMaturity":{"type":"string"}},"type":"object"},"advisory.CWENode":{"description":"advisory.CWENode","type":"object"},"advisory.CanvasExploit":{"description":"advisory.CanvasExploit","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"exploit_pack":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Capec":{"description":"advisory.Capec","properties":{"capec_id":{"type":"string"},"capec_name":{"type":"string"},"capec_url":{"type":"string"},"lang":{"type":"string"}},"type":"object"},"advisory.CarestreamAdvisory":{"description":"advisory.CarestreamAdvisory","properties":{"carestream_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Carrier":{"description":"advisory.Carrier","properties":{"advisory_id":{"type":"string"},"affected_product":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CentosPackage":{"description":"advisory.CentosPackage","properties":{"filename":{"type":"string"},"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CertBE":{"description":"advisory.CertBE","properties":{"affected_software":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerability_type":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CertFRAdvisory":{"description":"advisory.CertFRAdvisory","properties":{"affected_systems_fr":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"resume_fr":{"type":"string"},"risks_fr":{"type":"string"},"solution_fr":{"type":"string"},"source_fr":{"type":"string"},"title_fr":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertIN":{"description":"advisory.CertIN","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertIRSecurityAlert":{"description":"advisory.CertIRSecurityAlert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_fa":{"type":"string"},"title_fa":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertSE":{"description":"advisory.CertSE","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_sv":{"type":"string"},"title_sv":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertUA":{"description":"advisory.CertUA","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_ua":{"type":"string"},"title_ua":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ChainGuard":{"description":"advisory.ChainGuard","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"un-used","type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.ChainGuardPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.ChainGuardPackage":{"description":"advisory.ChainGuardPackage","properties":{"name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.ChainGuardSecFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ChainGuardSecFix":{"description":"advisory.ChainGuardSecFix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"}},"type":"object"},"advisory.CheckPoint":{"description":"advisory.CheckPoint","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Chrome":{"description":"advisory.Chrome","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AffectedChrome"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ciena":{"description":"advisory.Ciena","properties":{"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issue_no":{"type":"integer"},"security_advisory_number":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vulnerable_products":{"items":{"$ref":"#/components/schemas/advisory.VulnerableProduct"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CirclAdvisory":{"description":"advisory.CirclAdvisory","properties":{"circl_ref":{"$ref":"#/components/schemas/advisory.CirclRef"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"gcve":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CirclCna":{"description":"advisory.CirclCna","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"configurations":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"cpeApplicability":{"items":{"$ref":"#/components/schemas/advisory.CustomCPE"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.Credit"},"type":"array","uniqueItems":false},"dateAssigned":{"type":"string"},"datePublic":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"exploits":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"rejectedReasons":{"description":"Fields below appear only on rejected records (cveMetadata.state == \"REJECTED\").","items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"replacedBy":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solutions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"source":{"$ref":"#/components/schemas/advisory.CirclSource"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"taxonomyMappings":{"items":{"$ref":"#/components/schemas/advisory.TaxonomyMapping"},"type":"array","uniqueItems":false},"timeline":{"items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"title":{"type":"string"},"workarounds":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"x_gcve":{"items":{"$ref":"#/components/schemas/advisory.CirclXGcve"},"type":"array","uniqueItems":false},"x_generator":{"$ref":"#/components/schemas/advisory.CirclXGenerator"}},"type":"object"},"advisory.CirclContainers":{"description":"advisory.CirclContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADPContainer"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.CirclCna"}},"type":"object"},"advisory.CirclCveMetadata":{"description":"advisory.CirclCveMetadata","properties":{"assignerOrgId":{"type":"string"},"assignerShortName":{"type":"string"},"cveId":{"type":"string"},"datePublished":{"type":"string"},"dateRejected":{"type":"string"},"dateReserved":{"type":"string"},"dateUpdated":{"type":"string"},"requesterUserId":{"type":"string"},"serial":{"type":"integer"},"state":{"type":"string"},"vulnId":{"type":"string"},"vulnerabilitylookup_history":{"items":{"items":{"type":"string"},"type":"array"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CirclRef":{"description":"advisory.CirclRef","properties":{"containers":{"$ref":"#/components/schemas/advisory.CirclContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.CirclCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.CirclSource":{"description":"advisory.CirclSource","properties":{"discovery":{"type":"string"}},"type":"object"},"advisory.CirclXGcve":{"description":"advisory.CirclXGcve","properties":{"recordType":{"type":"string"},"vulnId":{"type":"string"}},"type":"object"},"advisory.CirclXGenerator":{"description":"advisory.CirclXGenerator","properties":{"engine":{"type":"string"}},"type":"object"},"advisory.CisaCsafAdv":{"description":"advisory.CisaCsafAdv","properties":{"csaf_json":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CiscoAdvisory":{"description":"advisory.CiscoAdvisory","properties":{"ciscoBugId":{"description":"multiple","type":"string"},"csaf":{"type":"string"},"cve":{"description":"multiple","items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf":{"type":"string"},"cwe":{"description":"multiple","type":"string"},"date_added":{"type":"string"},"id":{"type":"integer"},"identifier":{"type":"string"},"name":{"type":"string"},"related_resources":{"type":"string"},"severity":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"totalCount":{"type":"integer"},"updated_at":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"},"workarounds":{"type":"string"},"workflowStatus":{"type":"string"}},"type":"object"},"advisory.CiscoCSAF":{"description":"advisory.CiscoCSAF","properties":{"csaf":{},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"identifier":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CiscoKnownGoodValue":{"description":"advisory.CiscoKnownGoodValue","properties":{"biv_category":{"type":"string"},"biv_hash":{"type":"string"},"date_added":{"type":"string"},"dtype":{"type":"string"},"filename":{"type":"string"},"md5":{"type":"string"},"platform":{"type":"string"},"published":{"type":"string"},"sha1":{"type":"string"},"sha256":{"type":"string"},"sha512":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CitrixAdvisory":{"description":"advisory.CitrixAdvisory","properties":{"citrixId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"products":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.ClarotyVulnerability":{"description":"advisory.ClarotyVulnerability","properties":{"advisory_url":{"type":"string"},"claroty_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v3":{"type":"number"},"cwe":{"type":"string"},"date_added":{"type":"string"},"product":{"type":"string"},"target":{"type":"string"},"vendor":{"type":"string"},"vendor_advisory_url":{"type":"string"}},"type":"object"},"advisory.CloudAdvisory":{"description":"advisory.CloudAdvisory","properties":{"affected_versions":{"items":{"$ref":"#/components/schemas/advisory.CloudAdvisoryVersionRange"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"service":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.CloudAdvisoryVersionRange":{"description":"advisory.CloudAdvisoryVersionRange","properties":{"branch":{"type":"string"},"version_end_excluding":{"type":"string"},"version_end_including":{"type":"string"},"version_start_excluding":{"type":"string"},"version_start_including":{"type":"string"}},"type":"object"},"advisory.CloudBees":{"description":"advisory.CloudBees","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CloudVulnDBAdvisory":{"description":"advisory.CloudVulnDBAdvisory","properties":{"affectedServices":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"}},"type":"object"},"advisory.CodesysAdvisory":{"description":"advisory.CodesysAdvisory","properties":{"codesys_id":{"type":"string"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CommVault":{"description":"advisory.CommVault","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultCVEDetails"},"type":"array","uniqueItems":false},"cvss_range":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"impacted_product":{"$ref":"#/components/schemas/advisory.CommVaultImpactedProduct"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"resolution":{"$ref":"#/components/schemas/advisory.CommVaultResolution"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CommVaultCVEDetails":{"description":"advisory.CommVaultCVEDetails","properties":{"cve_id":{"type":"string"},"cvss":{"type":"string"},"description":{"type":"string"},"external_links":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultImpactedProduct":{"description":"advisory.CommVaultImpactedProduct","properties":{"description":{"type":"string"},"impacted_product_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultImpactedProductDetails"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultImpactedProductDetails":{"description":"advisory.CommVaultImpactedProductDetails","properties":{"affected_versions":{"type":"string"},"platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product_name":{"type":"string"},"resolved_versions":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.CommVaultResolution":{"description":"advisory.CommVaultResolution","properties":{"description":{"type":"string"},"resolution_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultResolutionDetails"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultResolutionDetails":{"description":"advisory.CommVaultResolutionDetails","properties":{"feature_release":{"type":"string"},"maintenance_release":{"type":"string"}},"type":"object"},"advisory.CompassSecurity":{"description":"advisory.CompassSecurity","properties":{"csnc_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"effect":{"type":"string"},"introduction":{"type":"string"},"product":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"risk":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.ContainerOS":{"description":"advisory.ContainerOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updates":{"items":{"$ref":"#/components/schemas/advisory.COSUpdate"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.CoreImpactExploit":{"description":"advisory.CoreImpactExploit","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploit_type":{"type":"string"},"platform":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Correction":{"description":"advisory.Correction","properties":{"correctedAt":{"type":"string"},"orelease":{"type":"string"},"release":{"type":"string"}},"type":"object"},"advisory.Credit":{"description":"advisory.Credit","properties":{"lang":{"type":"string"},"type":{"type":"string"},"user":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Crestron":{"description":"advisory.Crestron","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"threat":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CrowdSec":{"description":"advisory.CrowdSec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"eitw":{"type":"boolean"},"first_seen":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Curl":{"description":"advisory.Curl","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"info":{"$ref":"#/components/schemas/advisory.OCurl"},"url":{"type":"string"}},"type":"object"},"advisory.CurlAffected":{"description":"advisory.CurlAffected","properties":{"ranges":{"items":{"$ref":"#/components/schemas/advisory.CurlRange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CurlCWE":{"description":"advisory.CurlCWE","properties":{"desc":{"type":"string"},"id":{"type":"string"}},"type":"object"},"advisory.CurlCredit":{"description":"advisory.CurlCredit","properties":{"name":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.CurlRange":{"description":"advisory.CurlRange","properties":{"events":{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.CustomCPE":{"description":"advisory.CustomCPE","properties":{"mcpeapplicability":{"$ref":"#/components/schemas/advisory.MCPEApplicability"},"stringValue":{"type":"string"}},"type":"object"},"advisory.Cvrf":{"description":"advisory.Cvrf","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CvsssV2_3":{"description":"advisory.CvsssV2_3","properties":{"basescore":{"type":"string"},"temporalscore":{"type":"string"}},"type":"object"},"advisory.Cwe":{"description":"advisory.Cwe","properties":{"id":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.CweAcceptanceLevel":{"description":"advisory.CweAcceptanceLevel","properties":{"description":{"type":"string"},"lastModified":{"type":"string"}},"type":"object"},"advisory.CweData":{"description":"advisory.CweData","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Cwes":{"description":"advisory.Cwes","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.CWENode"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Cycle":{"description":"advisory.Cycle","properties":{"codename":{"type":"string"},"cycle":{"type":"string"},"discontinued":{},"eol":{"description":"this Eol field is typically assigned either a boolean value, when the\ndate is not known, or a date string when it is."},"eolDate":{"type":"string"},"extendedSupport":{"description":"these interface fields are likewise assigned either true, false, or\na datestring in the format \"2006-01-02\""},"isEol":{"type":"boolean"},"latest":{"type":"string"},"latestReleaseDate":{"type":"string"},"link":{"type":"string"},"lts":{},"releaseDate":{"type":"string"},"releaseLabel":{"type":"string"},"support":{}},"type":"object"},"advisory.DBSpecific":{"description":"advisory.DBSpecific","properties":{"CWE":{"$ref":"#/components/schemas/advisory.CurlCWE"},"award":{"$ref":"#/components/schemas/advisory.Award"},"last_affected":{"type":"string"},"package":{"type":"string"},"severity":{"type":"string"},"url":{"type":"string"},"www":{"type":"string"}},"type":"object"},"advisory.DFNCert":{"description":"advisory.DFNCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_de":{"type":"string"},"title_de":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DLink":{"description":"advisory.DLink","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DNN":{"description":"advisory.DNN","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dahua":{"description":"advisory.Dahua","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DanFossCVEDetails":{"description":"advisory.DanFossCVEDetails","properties":{"base_score":{"type":"string"},"cve":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Danfoss":{"description":"advisory.Danfoss","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_details":{"items":{"$ref":"#/components/schemas/advisory.DanFossCVEDetails"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dassault":{"description":"advisory.Dassault","properties":{"affected_products":{"type":"string"},"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DateTime":{"description":"advisory.DateTime","type":"object"},"advisory.DebianCVE":{"description":"advisory.DebianCVE","properties":{"cve":{"type":"string"},"debianbug":{"type":"integer"},"description":{"type":"string"},"releases":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianRelease"},"type":"array","uniqueItems":false},"scope":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DebianSecurityAdvisory":{"description":"advisory.DebianSecurityAdvisory","properties":{"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianPackage"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dsa":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dell":{"description":"advisory.Dell","properties":{"articleNumber":{"type":"string"},"combinedProductList":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dell_cves":{"items":{"$ref":"#/components/schemas/advisory.DellCVE"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DellCVE":{"description":"advisory.DellCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.DeltaAdvisory":{"description":"advisory.DeltaAdvisory","properties":{"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"recommendedAction":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.DistroPackage":{"description":"advisory.DistroPackage","properties":{"binary":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"license":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"secFixes":{"items":{"$ref":"#/components/schemas/advisory.SecFix"},"type":"array"},"versions":{"items":{"$ref":"#/components/schemas/advisory.DistroVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.DistroVersion":{"description":"advisory.DistroVersion","properties":{"arch":{"type":"string"},"published_date":{"type":"string"},"release":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Django":{"description":"advisory.Django","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DocumentMetadata":{"description":"Document contains metadata about the CSAF document itself.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#321-document-property","properties":{"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.CSAFDistribution"},"lang":{"type":"string"},"notes":{"description":"used by ncsc","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.Publisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"title":{"description":"Aggregate severity is a vehicle that is provided by the document producer to convey the urgency and\ncriticality with which the one or more vulnerabilities reported should be addressed.","type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.Tracking"}},"type":"object"},"advisory.DocumentPublisher":{"description":"advisory.DocumentPublisher","properties":{"contact_details":{"type":"string"},"issuing_authority":{"type":"string"},"type":{"description":"the json for this is missing/broke","type":"integer"}},"type":"object"},"advisory.DotCMS":{"description":"advisory.DotCMS","properties":{"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"issue_id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DraegerAdvisory":{"description":"advisory.DraegerAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor_id":{"type":"string"}},"type":"object"},"advisory.DragosAdvisory":{"description":"advisory.DragosAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.Draytek":{"description":"advisory.Draytek","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Drupal":{"description":"advisory.Drupal","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"project":{"type":"string"},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EOLAlibaba":{"description":"advisory.EOLAlibaba","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"eol_date":{"type":"string"},"eol_name":{"type":"string"},"product":{"type":"string"},"release_date":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.EOLMicrosoft":{"description":"advisory.EOLMicrosoft","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"edition":{"type":"string"},"extended_end_date":{"type":"string"},"mainstream_date":{"type":"string"},"product":{"type":"string"},"release":{"type":"string"},"release_end_date":{"type":"string"},"release_start_date":{"type":"string"},"retirement_date":{"type":"string"},"start_date":{"type":"string"},"support_policy":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EOLReleaseData":{"description":"advisory.EOLReleaseData","properties":{"already_eol":{"type":"boolean"},"branch":{"description":"Alpine Linux","type":"string"},"branch_url":{"description":"Alpine Linux","type":"string"},"codename":{"type":"string"},"cpe":{"type":"string"},"eol_date":{"type":"string"},"eol_date_extended_support":{"description":"Oracle Linux, Solaris","type":"string"},"eol_date_premier_support":{"description":"Oracle Linux, Solaris","type":"string"},"eol_elts_date":{"type":"string"},"eol_lts_date":{"type":"string"},"git_branch":{"description":"Alpine Linux","type":"string"},"git_branch_url":{"description":"Alpine Linux","type":"string"},"lts":{"description":"Ubuntu","type":"boolean"},"minor_releases":{"description":"Alpine Linux","items":{"type":"string"},"type":"array","uniqueItems":false},"product":{"type":"string"},"release_date":{"type":"string"},"release_name":{"type":"string"},"source_url":{"type":"string"},"technology_level":{"description":"AIX","type":"string"},"vendor":{"type":"string"},"version":{"type":"string"},"version_api":{"description":"Android","type":"string"},"version_darwin":{"description":"macOS","type":"string"},"version_sunos":{"description":"Solaris","type":"string"},"windows_current_build":{"description":"Microsoft Windows","type":"string"},"windows_display_version":{"description":"Microsoft Windows","type":"string"},"windows_edition_id":{"description":"Microsoft Windows","type":"string"},"windows_insider_preview":{"description":"Microsoft Windows","type":"boolean"}},"type":"object"},"advisory.EUVD":{"description":"advisory.EUVD","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"assigner":{"type":"string"},"base_score":{"type":"number"},"base_score_vector":{"type":"string"},"base_score_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"description":{"type":"string"},"enisa_id_product":{"items":{"$ref":"#/components/schemas/advisory.EnisaIDProduct"},"type":"array","uniqueItems":false},"enisa_id_vendor":{"items":{"$ref":"#/components/schemas/advisory.EnisaIDVendor"},"type":"array","uniqueItems":false},"epss":{"type":"number"},"exploited":{"description":"This field is exploited field from endpoint /api/vulnerabilities.\napidocs : https://euvd.enisa.europa.eu/apidoc\nNote: There are records where exploited_since is populated with a valid date,\nbut it still shows up under non_exploitable data set","type":"boolean"},"exploited_since":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.EatonAdvisory":{"description":"advisory.EatonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"eaton_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EcoSystem":{"description":"advisory.EcoSystem","properties":{"severity":{"type":"string"},"spl":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Elastic":{"description":"advisory.Elastic","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"esaid":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Elspec":{"description":"advisory.Elspec","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EmergingThreatsSnort":{"description":"advisory.EmergingThreatsSnort","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rev":{"type":"string"},"rule_disabled":{"type":"boolean"},"rule_name":{"type":"string"},"sid":{"type":"integer"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EmersonAdvisory":{"description":"advisory.EmersonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"emerson_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EndOfLife":{"description":"advisory.EndOfLife","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cycles":{"items":{"$ref":"#/components/schemas/advisory.Cycle"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Endress":{"description":"advisory.Endress","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EnisaIDProduct":{"description":"advisory.EnisaIDProduct","properties":{"id":{"type":"string"},"product_name":{"type":"string"},"product_version":{"type":"string"}},"type":"object"},"advisory.EnisaIDVendor":{"description":"advisory.EnisaIDVendor","properties":{"id":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.Event":{"description":"advisory.Event","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"},"last_affected":{"type":"string"},"limit":{"type":"string"}},"type":"object"},"advisory.ExodusIntel":{"description":"advisory.ExodusIntel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"disclosed_public":{"type":"string"},"disclosed_vendor":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ExploitDBExploitv2":{"description":"advisory.ExploitDBExploitv2","properties":{"author":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"edb_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ExternalReferences":{"description":"advisory.ExternalReferences","properties":{"description":{"type":"string"},"external_id":{"type":"string"},"source_name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.F5":{"description":"advisory.F5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FSecure":{"description":"advisory.FSecure","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Fanuc":{"description":"advisory.Fanuc","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Fastly":{"description":"advisory.Fastly","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Festo":{"description":"advisory.Festo","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FileCloud":{"description":"advisory.FileCloud","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FileZilla":{"description":"advisory.FileZilla","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FixAff":{"description":"advisory.FixAff","properties":{"affected_since":{"type":"string"},"fixed_version":{"type":"string"},"patch_url":{"type":"string"}},"type":"object"},"advisory.Flag":{"description":"advisory.Flag","properties":{"date":{"type":"string"},"group_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"label":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.FlattSecurity":{"description":"advisory.FlattSecurity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ForgeRock":{"description":"advisory.ForgeRock","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FortinetAdvisory":{"description":"advisory.FortinetAdvisory","properties":{"acknowledgement":{"type":"string"},"affectedProducts":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvssv3":{"type":"string"},"date_added":{"type":"string"},"irnumber":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solutions":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.FortinetIPS":{"description":"advisory.FortinetIPS","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"epss":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Foxit":{"description":"advisory.Foxit","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.FoxitAffected"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FoxitAffected":{"description":"advisory.FoxitAffected","properties":{"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Fresenius":{"description":"advisory.Fresenius","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GCP":{"description":"advisory.GCP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GEGas":{"description":"advisory.GEGas","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GEHealthcareAdvisory":{"description":"advisory.GEHealthcareAdvisory","properties":{"base_score":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GHAdvisoryJSONLean":{"description":"advisory.GHAdvisoryJSONLean","properties":{"classification":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"$ref":"#/components/schemas/advisory.GHCvss"},"cwes":{"$ref":"#/components/schemas/advisory.Cwes"},"databaseId":{"type":"integer"},"date_added":{"type":"string"},"description":{"type":"string"},"ghsaId":{"type":"string"},"id":{"type":"string"},"identifiers":{"items":{"$ref":"#/components/schemas/advisory.GHIdentifier"},"type":"array","uniqueItems":false},"notificationsPermalink":{"type":"string"},"origin":{"type":"string"},"permalink":{"type":"string"},"publishedAt":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GHReference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"vulnerabilities":{"$ref":"#/components/schemas/advisory.GHVulnerabilities"},"withdrawnAt":{"type":"string"}},"type":"object"},"advisory.GHCvss":{"description":"advisory.GHCvss","properties":{"score":{"type":"number"},"vectorString":{"type":"string"}},"type":"object"},"advisory.GHIdentifier":{"description":"advisory.GHIdentifier","properties":{"type":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.GHNode":{"description":"advisory.GHNode","properties":{"package":{"$ref":"#/components/schemas/advisory.GHPackage"},"severity":{"type":"string"},"updatedAt":{"type":"string"},"vulnerableVersionRange":{"type":"string"}},"type":"object"},"advisory.GHPackage":{"description":"advisory.GHPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GHReference":{"description":"advisory.GHReference","properties":{"url":{"type":"string"}},"type":"object"},"advisory.GHSA":{"description":"advisory.GHSA","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"ghsa":{"$ref":"#/components/schemas/advisory.OriginalGHSA"},"url":{"type":"string"}},"type":"object"},"advisory.GHSAAffected":{"description":"advisory.GHSAAffected","properties":{"ecosystem_specific":{"$ref":"#/components/schemas/advisory.GHSAEcoSystemSpecific"},"package":{"$ref":"#/components/schemas/advisory.GHSAPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.GHSARange"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GHSADatabaseSpecific":{"description":"advisory.GHSADatabaseSpecific","properties":{"cwe_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"github_reviewed":{"type":"boolean"},"github_reviewed_at":{"type":"string"},"nvd_published_at":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.GHSAEcoSystemSpecific":{"description":"advisory.GHSAEcoSystemSpecific","properties":{"affected_functions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GHSAEvent":{"description":"advisory.GHSAEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.GHSAPackage":{"description":"advisory.GHSAPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GHSARange":{"description":"advisory.GHSARange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.GHSAEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.GHSAReference":{"description":"advisory.GHSAReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GHSASeverity":{"description":"advisory.GHSASeverity","properties":{"score":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.GHVulnerabilities":{"description":"advisory.GHVulnerabilities","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.GHNode"},"type":"array","uniqueItems":false},"totalCount":{"type":"integer"}},"type":"object"},"advisory.GMOCyberSecurity":{"description":"advisory.GMOCyberSecurity","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_ja":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gallagher":{"description":"advisory.Gallagher","properties":{"activeExploitation":{"type":"boolean"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixes":{"type":"string"},"reportedBy":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gen":{"description":"advisory.Gen","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"description":"not all of them have this","type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GenericEOL":{"description":"advisory.GenericEOL","properties":{"core":{"$ref":"#/components/schemas/advisory.GenericEOLCore"},"product":{"$ref":"#/components/schemas/advisory.GenericEOLProduct"},"vcInfo":{"$ref":"#/components/schemas/advisory.GenericEOLVCInfo"}},"type":"object"},"advisory.GenericEOLCore":{"description":"advisory.GenericEOLCore","properties":{"end_of_life":{"type":"string"},"end_of_sales":{"type":"string"},"end_of_security_support":{"type":"string"},"last_updated":{"type":"string"}},"type":"object"},"advisory.GenericEOLProduct":{"description":"advisory.GenericEOLProduct","properties":{"product_name":{"type":"string"},"product_version":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.GenericEOLReference":{"description":"advisory.GenericEOLReference","properties":{"description":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GenericEOLVCInfo":{"description":"advisory.GenericEOLVCInfo","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GenericEOLReference"},"type":"array","uniqueItems":false},"replacement":{"$ref":"#/components/schemas/advisory.GenericEOLProduct"},"updated_at":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Genetec":{"description":"advisory.Genetec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gigabyte":{"description":"advisory.Gigabyte","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.GitHubExploit":{"description":"advisory.GitHubExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"currently_trending":{"type":"boolean"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"id":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GitLabExploit":{"description":"advisory.GitLabExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GiteeExploit":{"description":"advisory.GiteeExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GitlabAdvisory":{"description":"advisory.GitlabAdvisory","properties":{"affected_range":{"type":"string"},"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v2":{"type":"string"},"cvss_v3":{"type":"string"},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"filename":{"type":"string"},"fixed_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"gitlab_url":{"type":"string"},"identifier":{"type":"string"},"identifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"not_impacted":{"type":"string"},"package_manager":{"type":"string"},"package_name":{"type":"string"},"package_slug":{"type":"string"},"pubdate":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"uuid":{"type":"string"}},"type":"object"},"advisory.Glibc":{"description":"advisory.Glibc","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GnuTLS":{"description":"advisory.GnuTLS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GoCredits":{"description":"advisory.GoCredits","properties":{"name":{"type":"string"}},"type":"object"},"advisory.GoEvent":{"description":"advisory.GoEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.GoVulnAffected":{"description":"advisory.GoVulnAffected","properties":{"database_specific":{"$ref":"#/components/schemas/advisory.GoVulnDatabaseSpecific"},"ecosystem_specific":{"$ref":"#/components/schemas/advisory.GoVulnEcosystemSpecific"},"package":{"$ref":"#/components/schemas/advisory.GoVulnPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.GoVulnRanges"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnDatabaseSpecific":{"description":"advisory.GoVulnDatabaseSpecific","properties":{"url":{"type":"string"}},"type":"object"},"advisory.GoVulnEcosystemSpecific":{"description":"advisory.GoVulnEcosystemSpecific","properties":{"imports":{"items":{"$ref":"#/components/schemas/advisory.GoVulnImport"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnImport":{"description":"advisory.GoVulnImport","properties":{"path":{"type":"string"},"symbols":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnJSON":{"description":"advisory.GoVulnJSON","properties":{"advisory_url":{"type":"string"},"affected":{"items":{"$ref":"#/components/schemas/advisory.GoVulnAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.GoCredits"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"go_advisory_id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GoVulnReference"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnPackage":{"description":"advisory.GoVulnPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GoVulnRanges":{"description":"advisory.GoVulnRanges","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.GoEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.GoVulnReference":{"description":"advisory.GoVulnReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Grafana":{"description":"advisory.Grafana","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GreyNoiseDetection":{"description":"advisory.GreyNoiseDetection","properties":{"category":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"intention":{"type":"string"},"label":{"type":"string"},"name":{"type":"string"},"recommend_block":{"type":"boolean"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"related_tags":{"items":{"$ref":"#/components/schemas/advisory.GreyNoiseTags"},"type":"array","uniqueItems":false},"slug":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GreyNoiseTags":{"description":"advisory.GreyNoiseTags","properties":{"category":{"type":"string"},"id":{"type":"string"},"intention":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"}},"type":"object"},"advisory.HCL":{"description":"advisory.HCL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HIKVision":{"description":"advisory.HIKVision","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.HKCert":{"description":"advisory.HKCert","properties":{"affected":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact":{"type":"string"},"link":{"type":"string"},"relatedLinks":{"items":{"type":"string"},"type":"array"},"risk":{"type":"string"},"solutions":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.HMS":{"description":"advisory.HMS","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HP":{"description":"advisory.HP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.HPE":{"description":"advisory.HPE","properties":{"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Hacktivity":{"description":"advisory.Hacktivity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"float64":{"type":"number"},"rank":{"type":"integer"},"reports_submitted":{"type":"integer"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HardwareUpdate":{"description":"advisory.HardwareUpdate","properties":{"affectedVersions":{"type":"string"},"cves":{"items":{"type":"string"},"type":"array"},"hardwarePlatform":{"type":"string"},"system":{"type":"string"},"updatedVersion":{"type":"string"}},"type":"object"},"advisory.HarmonyOS":{"description":"advisory.HarmonyOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HashiCorp":{"description":"advisory.HashiCorp","properties":{"affected_products":{"type":"string"},"background":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HaskellAffected":{"description":"advisory.HaskellAffected","properties":{"affected_constraint":{"type":"string"},"affected_versions":{"items":{"$ref":"#/components/schemas/advisory.HaskellVersion"},"type":"array","uniqueItems":false},"arch":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"os":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package":{"type":"string"}},"type":"object"},"advisory.HaskellSADBAdvisory":{"description":"advisory.HaskellSADBAdvisory","properties":{"advisory_id":{"type":"string"},"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.HaskellAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"keywords":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"type":"object"},"related_vulns":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"}},"type":"object"},"advisory.HaskellVersion":{"description":"advisory.HaskellVersion","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.HillromAdvisory":{"description":"advisory.HillromAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Hitachi":{"description":"advisory.Hitachi","properties":{"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixedProducts":{"type":"string"},"hitachiId":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HitachiEnergy":{"description":"advisory.HitachiEnergy","properties":{"advisory_id":{"type":"string"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploited":{"type":"boolean"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Honeywell":{"description":"advisory.Honeywell","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Huawei":{"description":"advisory.Huawei","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"sa_number":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HuaweiEulerOS":{"description":"advisory.HuaweiEulerOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer"},"packages":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"synopsis":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HuaweiIPS":{"description":"advisory.HuaweiIPS","properties":{"cnnvd":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"name":{"type":"string"},"severity":{"type":"string"},"threat_id":{"type":"integer"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.IAVA":{"description":"advisory.IAVA","properties":{"IAVA":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.IBM":{"description":"advisory.IBM","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IOCBotnetAdvisory":{"description":"advisory.IOCBotnetAdvisory","properties":{"botnet_name":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malicious_domains":{"items":{"type":"string"},"type":"array","uniqueItems":false},"malicious_files":{"items":{"$ref":"#/components/schemas/advisory.IOCFile"},"type":"array","uniqueItems":false},"malicious_ip":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IOCFile":{"description":"advisory.IOCFile","properties":{"name":{"type":"string"},"sha256":{"type":"string"}},"type":"object"},"advisory.IOCRansomwareAdvisory":{"description":"advisory.IOCRansomwareAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malicious_domains":{"items":{"type":"string"},"type":"array","uniqueItems":false},"malicious_files":{"items":{"$ref":"#/components/schemas/advisory.IOCFile"},"type":"array","uniqueItems":false},"malicious_ip":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ransomware_name":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IOCThreatActorAdvisory":{"description":"advisory.IOCThreatActorAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malicious_domains":{"items":{"type":"string"},"type":"array","uniqueItems":false},"malicious_files":{"items":{"$ref":"#/components/schemas/advisory.IOCFile"},"type":"array","uniqueItems":false},"malicious_ip":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"threat_actor_name":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ITW":{"description":"advisory.ITW","properties":{"cve":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.ITWExploit":{"description":"advisory.ITWExploit","properties":{"advisory":{"type":"string"},"affected_versions":{"type":"string"},"analysis_url":{"type":"string"},"bug_introducing_change_list_url":{"type":"string"},"claimed_attribution":{"type":"string"},"claimed_attribution_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_discovered":{"type":"string"},"date_patched":{"type":"string"},"description":{"type":"string"},"first_patched_version":{"type":"string"},"patch_change_list_url":{"type":"string"},"product":{"type":"string"},"reported_by":{"type":"string"},"root_cause_analysis_url":{"type":"string"},"vendor":{"type":"string"},"vulnerability_type":{"type":"string"}},"type":"object"},"advisory.IVal":{"description":"advisory.IVal","properties":{"Value":{"type":"string"}},"type":"object"},"advisory.Idemia":{"description":"advisory.Idemia","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"sbid":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IdentificationHelper":{"additionalProperties":{},"description":"advisory.IdentificationHelper","type":"object"},"advisory.Igel":{"description":"advisory.Igel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Impact":{"description":"advisory.Impact","properties":{"capecId":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.IncibeAdvisory":{"description":"advisory.IncibeAdvisory","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"detail":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solution":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Intel":{"description":"advisory.Intel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.IpIntelRecord":{"description":"advisory.IpIntelRecord","properties":{"asn":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"country_code":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"feed_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"hostnames":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ip":{"type":"string"},"lastSeen":{"type":"string"},"matches":{"items":{"type":"string"},"type":"array","uniqueItems":false},"port":{"type":"integer"},"ssl":{"type":"boolean"},"type":{"$ref":"#/components/schemas/advisory.RecordType"}},"type":"object"},"advisory.IsraeliAlert":{"description":"advisory.IsraeliAlert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details_he":{"type":"string"},"handling_he":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary_he":{"type":"string"},"title_he":{"type":"string"}},"type":"object"},"advisory.IsraeliVulnerability":{"description":"advisory.IsraeliVulnerability","properties":{"ILVNId":{"type":"string"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Issued":{"description":"advisory.Issued","type":"object"},"advisory.Istio":{"description":"advisory.Istio","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ivanti":{"description":"advisory.Ivanti","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IvantiRSS":{"description":"advisory.IvantiRSS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JFrog":{"description":"advisory.JFrog","properties":{"cpes":{"items":{"$ref":"#/components/schemas/advisory.NVD20CVECPEMatch"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.JNJAdvisory":{"description":"advisory.JNJAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JVN":{"description":"advisory.JVN","properties":{"affected_en":{"type":"string"},"affected_ja":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_en":{"type":"string"},"description_ja":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution_en":{"type":"string"},"solution_ja":{"type":"string"},"summary_en":{"type":"string"},"summary_ja":{"type":"string"},"title_en":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JVNAdvisoryItem":{"description":"advisory.JVNAdvisoryItem","properties":{"cpe":{"items":{"$ref":"#/components/schemas/advisory.JVNCPE"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"items":{"$ref":"#/components/schemas/advisory.CVSS"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"description_en":{"type":"string"},"identifier":{"type":"string"},"issued":{"type":"string"},"modified":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.JVNReference"},"type":"array","uniqueItems":false},"title":{"type":"string"},"title_en":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"url_en":{"type":"string"}},"type":"object"},"advisory.JVNCPE":{"description":"advisory.JVNCPE","properties":{"cpe":{"type":"string"},"product":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.JVNReference":{"description":"advisory.JVNReference","properties":{"id":{"type":"string"},"source":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Jenkins":{"description":"advisory.Jenkins","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fix":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.JetBrains":{"description":"advisory.JetBrains","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"product":{"type":"string"},"resolved_in":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JohnsonControls":{"description":"advisory.JohnsonControls","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Juniper":{"description":"advisory.Juniper","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss3_score":{"type":"string"},"cvss3_vector":{"type":"string"},"cvss4_score":{"type":"string"},"cvss4_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.K8S":{"description":"advisory.K8S","properties":{"content":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issue_id":{"type":"integer"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.KEVCatalogVulnerability":{"description":"advisory.KEVCatalogVulnerability","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dueDate":{"type":"string"},"knownRansomwareCampaignUse":{"type":"string"},"notes":{"type":"string"},"product":{"type":"string"},"requiredAction":{"type":"string"},"shortDescription":{"type":"string"},"vendorProject":{"type":"string"},"vulnerabilityName":{"type":"string"}},"type":"object"},"advisory.KRCertAdvisory":{"description":"advisory.KRCertAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_ko":{"type":"string"},"link":{"type":"string"},"overview_ko":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title_ko":{"type":"string"}},"type":"object"},"advisory.KasperskyICSCERTAdvisory":{"description":"advisory.KasperskyICSCERTAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"klcert_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Kb":{"description":"advisory.Kb","properties":{"kb_url":{"type":"string"},"ms_date_added":{"type":"string"},"status":{"type":"string"},"supercedence":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.KbThreatDescription":{"description":"advisory.KbThreatDescription","properties":{"dos":{"type":"string"},"exploited":{"type":"string"},"latest_software_release":{"type":"string"},"level":{"items":{"type":"string"},"type":"array","uniqueItems":false},"older_software_release":{"type":"string"},"publicly_disclosed":{"type":"string"},"type":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.KoreLogic":{"description":"advisory.KoreLogic","properties":{"affected_product":{"type":"string"},"affected_vendor":{"type":"string"},"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Kunbus":{"description":"advisory.Kunbus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LG":{"description":"advisory.LG","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Lantronix":{"description":"advisory.Lantronix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Lenovo":{"description":"advisory.Lenovo","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"industry_identifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"last_updated":{"type":"string"},"lenovo_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LexmarkAdvisory":{"description":"advisory.LexmarkAdvisory","properties":{"affectedProducts":{"items":{"$ref":"#/components/schemas/advisory.AffectedProduct"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"impact":{"type":"string"},"lastUpdate":{"type":"string"},"link":{"type":"string"},"publicReleaseDate":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"revision":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"workarounds":{"type":"string"}},"type":"object"},"advisory.LibreOffice":{"description":"advisory.LibreOffice","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Linux":{"description":"advisory.Linux","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LogSource":{"description":"advisory.LogSource","properties":{"category":{"type":"string"},"definition":{"type":"string"},"product":{"type":"string"},"service":{"type":"string"}},"type":"object"},"advisory.LolAdvs":{"description":"advisory.LolAdvs","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"lol_json":{"additionalProperties":{},"type":"object"},"mitre_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MACert":{"description":"advisory.MACert","properties":{"affected_systems_fr":{"type":"string"},"assessment_fr":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact_fr":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"risk_fr":{"type":"string"},"risks_fr":{"type":"string"},"solution_fr":{"type":"string"},"title_fr":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MAffected":{"description":"advisory.MAffected","properties":{"collectionURL":{"type":"string"},"cpes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"defaultStatus":{"type":"string"},"modules":{"items":{"type":"string"},"type":"array","uniqueItems":false},"packageName":{"type":"string"},"packageURL":{"type":"string"},"platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product":{"type":"string"},"programFiles":{"items":{"type":"string"},"type":"array","uniqueItems":false},"programRoutines":{"items":{"$ref":"#/components/schemas/advisory.ProgramRoutine"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"vendor":{"type":"string"},"versions":{"items":{"$ref":"#/components/schemas/advisory.MVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MBranch":{"description":"advisory.MBranch","properties":{"Branch":{"items":{"$ref":"#/components/schemas/advisory.MBranch"},"type":"array","uniqueItems":false},"FullProductName":{"items":{"$ref":"#/components/schemas/advisory.MFullProductName"},"type":"array","uniqueItems":false},"Items":{"items":{"$ref":"#/components/schemas/advisory.MItem"},"type":"array","uniqueItems":false},"name":{"type":"string"},"type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.MCPEApplicability":{"description":"advisory.MCPEApplicability","properties":{"negate":{"type":"boolean"},"nodes":{"items":{"$ref":"#/components/schemas/advisory.MNodes"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"advisory.MCPEMatch":{"description":"advisory.MCPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.MCna":{"description":"advisory.MCna","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"configurations":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"cpeApplicability":{"items":{"$ref":"#/components/schemas/advisory.CustomCPE"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.Credit"},"type":"array","uniqueItems":false},"dateAssigned":{"type":"string"},"datePublic":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"exploits":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"rejectedReasons":{"description":"Fields below appear only on rejected records (cveMetadata.state == \"REJECTED\").","items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"replacedBy":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solutions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"source":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"taxonomyMappings":{"items":{"$ref":"#/components/schemas/advisory.TaxonomyMapping"},"type":"array","uniqueItems":false},"timeline":{"items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"title":{"type":"string"},"workarounds":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MContainers":{"description":"advisory.MContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADPContainer"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.MCna"}},"type":"object"},"advisory.MCveMetadata":{"description":"advisory.MCveMetadata","properties":{"assignerOrgId":{"type":"string"},"assignerShortName":{"type":"string"},"cveId":{"type":"string"},"datePublished":{"type":"string"},"dateRejected":{"type":"string"},"dateReserved":{"type":"string"},"dateUpdated":{"type":"string"},"requesterUserId":{"type":"string"},"serial":{"type":"integer"},"state":{"type":"string"}},"type":"object"},"advisory.MCvssV20":{"description":"advisory.MCvssV20","properties":{"accessVector":{"type":"string"},"attackComplexity":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV30":{"description":"advisory.MCvssV30","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV31":{"description":"advisory.MCvssV31","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV40":{"description":"advisory.MCvssV40","properties":{"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"automatable":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"privilegesRequired":{"type":"string"},"providerUrgency":{"type":"string"},"recovery":{"type":"string"},"safety":{"type":"string"},"subAvailabilityImpact":{"type":"string"},"subConfidentialityImpact":{"type":"string"},"subIntegrityImpact":{"type":"string"},"userInteraction":{"type":"string"},"valueDensity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"},"vulnAvailabilityImpact":{"type":"string"},"vulnConfidentialityImpact":{"type":"string"},"vulnIntegrityImpact":{"type":"string"},"vulnerabilityResponseEffort":{"type":"string"}},"type":"object"},"advisory.MDescriptions":{"description":"advisory.MDescriptions","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.MDocumentTracking":{"description":"advisory.MDocumentTracking","properties":{"CurrentReleaseDate":{"type":"string"},"InitialReleaseDate":{"type":"string"},"identification":{"$ref":"#/components/schemas/advisory.MIdentification"},"revisionhistory":{"description":"diff in xml/json","items":{"$ref":"#/components/schemas/advisory.RRevision"},"type":"array","uniqueItems":false},"status":{"description":"again - change in json/xml","type":"integer"},"version":{"type":"string"}},"type":"object"},"advisory.MEProduct":{"description":"advisory.MEProduct","properties":{"ID":{"type":"string"},"display_value":{"type":"string"}},"type":"object"},"advisory.MFiles":{"description":"advisory.MFiles","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MFullProductName":{"description":"advisory.MFullProductName","properties":{"CPE":{"type":"string"},"ProductID":{"type":"string"},"Value":{"type":"string"}},"type":"object"},"advisory.MISPValueNoID":{"description":"advisory.MISPValueNoID","properties":{"description":{"type":"string"},"meta":{"$ref":"#/components/schemas/advisory.MispMeta"},"related":{"items":{"$ref":"#/components/schemas/advisory.MispRelatedItem"},"type":"array","uniqueItems":false},"value":{"type":"string"}},"type":"object"},"advisory.MITREAttackGroupNoID":{"description":"advisory.MITREAttackGroupNoID","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"name":{"type":"string"},"techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechnique"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MIdentification":{"description":"advisory.MIdentification","properties":{"alias":{"$ref":"#/components/schemas/advisory.IVal"},"id":{"$ref":"#/components/schemas/advisory.IVal"}},"type":"object"},"advisory.MItem":{"description":"advisory.MItem","properties":{"Items":{"items":{"$ref":"#/components/schemas/advisory.MItem"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"ProductID":{"type":"string"},"Type":{"description":"diff","type":"integer"},"Value":{"type":"string"}},"type":"object"},"advisory.MNodes":{"description":"advisory.MNodes","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.MCPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.MProblemTypes":{"description":"advisory.MProblemTypes","properties":{"descriptions":{"items":{"$ref":"#/components/schemas/advisory.PTMDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MProductStatus":{"description":"advisory.MProductStatus","properties":{"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.MProductTree":{"description":"advisory.MProductTree","properties":{"Branch":{"items":{"$ref":"#/components/schemas/advisory.MBranch"},"type":"array","uniqueItems":false},"FullProductName":{"items":{"$ref":"#/components/schemas/advisory.MFullProductName"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MProviderMetadata":{"description":"advisory.MProviderMetadata","properties":{"dateUpdated":{"description":"FIXME: flip to time","type":"string"},"orgId":{"type":"string"},"shortName":{"type":"string"}},"type":"object"},"advisory.MReference":{"description":"advisory.MReference","properties":{"name":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.MRemediation":{"description":"advisory.MRemediation","properties":{"AffectedFiles":{"items":{"$ref":"#/components/schemas/advisory.AffectedFile"},"type":"array","uniqueItems":false},"Date":{"type":"string"},"DateSpecified":{"type":"boolean"},"Description":{"$ref":"#/components/schemas/advisory.IVal"},"FixedBuild":{"type":"string"},"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"RestartRequired":{"$ref":"#/components/schemas/advisory.IVal"},"SubType":{"type":"string"},"Type":{"description":"diff","type":"integer"},"Url":{"type":"string"},"supercedence":{"type":"string"}},"type":"object"},"advisory.MSCVRF":{"description":"advisory.MSCVRF","properties":{"DocumentTitle":{"$ref":"#/components/schemas/advisory.MSDocumentTitle"},"DocumentTracking":{"$ref":"#/components/schemas/advisory.MDocumentTracking"},"ProductTree":{"$ref":"#/components/schemas/advisory.MProductTree"},"document_type":{"type":"string"},"documentnotes":{"description":"diff","items":{"$ref":"#/components/schemas/advisory.RNote"},"type":"array","uniqueItems":false},"documentpublisher":{"$ref":"#/components/schemas/advisory.DocumentPublisher"},"vulnerability":{"items":{"$ref":"#/components/schemas/advisory.MVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MSDocumentTitle":{"description":"advisory.MSDocumentTitle","properties":{"Value":{"type":"string"}},"type":"object"},"advisory.MVersion":{"description":"advisory.MVersion","properties":{"changes":{"items":{"$ref":"#/components/schemas/advisory.VersionChange"},"type":"array","uniqueItems":false},"lessThan":{"type":"string"},"lessThanOrEqual":{"type":"string"},"status":{"type":"string"},"version":{"type":"string"},"versionType":{"type":"string"}},"type":"object"},"advisory.MVulnerability":{"description":"advisory.MVulnerability","properties":{"ProductStatuses":{"items":{"$ref":"#/components/schemas/advisory.MProductStatus"},"type":"array","uniqueItems":false},"Remediations":{"items":{"$ref":"#/components/schemas/advisory.MRemediation"},"type":"array","uniqueItems":false},"Threats":{"items":{"$ref":"#/components/schemas/advisory.RThreat"},"type":"array","uniqueItems":false},"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.Acknowledgement"},"type":"array","uniqueItems":false},"cve":{"type":"string"},"cvssscoresets":{"items":{"$ref":"#/components/schemas/advisory.RScoreSet"},"type":"array","uniqueItems":false},"notes":{"items":{"$ref":"#/components/schemas/advisory.Note"},"type":"array","uniqueItems":false},"ordinal":{"type":"string"},"revisionhistory":{"description":"diff in xml/json","items":{"$ref":"#/components/schemas/advisory.RRevision"},"type":"array","uniqueItems":false},"title":{"$ref":"#/components/schemas/advisory.IVal"}},"type":"object"},"advisory.MaliciousPackage":{"description":"advisory.MaliciousPackage","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"malware":{"$ref":"#/components/schemas/advisory.OSVObj"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MaliciousVSCodeDiscovery":{"description":"advisory.MaliciousVSCodeDiscovery","properties":{"date":{"description":"Date the timestamp when the discovery was published (via the \"reference\")","type":"string"},"marketplace":{"description":"Marketplace list of names of the marketplaces where the extension versions are available","items":{"type":"string"},"type":"array","uniqueItems":false},"reference":{"description":"Reference location where the initial public release of the vulnerability was pulled","type":"string"},"type":{"description":"Type VulnCheck vulnerability classification","type":"string"},"versions":{"description":"Versions list of vulnerable versions","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MaliciousVSCodeExts":{"description":"advisory.MaliciousVSCodeExts","properties":{"discoveries":{"description":"Discoveries list of individual vulnerability reports, sorted chronologically by discovery date","items":{"$ref":"#/components/schemas/advisory.MaliciousVSCodeDiscovery"},"type":"array","uniqueItems":false},"first_seen":{"description":"FirstSeen the earliest date the vulnerability was observed or created in our system","type":"string"},"last_updated":{"description":"LastUpdated the most recent date when any discovery was added for this extension","type":"string"},"marketplace":{"description":"Marketplace list of names of the marketplaces where the extension versions are available","items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"description":"Name is the name of the extension","type":"string"},"publisher":{"description":"Publisher name of the publisher of the extension","type":"string"},"references":{"description":"Reference list of locations where the public releases about the vulnerabilities were pulled","items":{"type":"string"},"type":"array","uniqueItems":false},"types":{"description":"Types VulnCheck vulnerability classifications found for this extension","items":{"type":"string"},"type":"array","uniqueItems":false},"versions":{"description":"Versions list of vulnerable versions","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ManageEngine":{"description":"advisory.ManageEngine","properties":{"ADVISORY":{"type":"string"},"Added_Time":{"type":"string"},"CVE_Details_Link":{"$ref":"#/components/schemas/advisory.CVEDetailsLink"},"CVE_ID":{"type":"string"},"CVSS_Severity_Rating":{"type":"string"},"Fixed":{"type":"string"},"For_product_search":{"type":"string"},"ID":{"type":"string"},"Product":{"$ref":"#/components/schemas/advisory.MEProduct"},"Product_list":{"items":{"$ref":"#/components/schemas/advisory.MEProduct"},"type":"array","uniqueItems":false},"Product_specific_details":{"items":{"$ref":"#/components/schemas/advisory.ProductSpecificDetail"},"type":"array","uniqueItems":false},"Summary":{"type":"string"},"Version":{"type":"string"},"index_field":{"type":"string"}},"type":"object"},"advisory.ManageEngineAdvisory":{"description":"advisory.ManageEngineAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"manage_engine":{"$ref":"#/components/schemas/advisory.ManageEngine"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MbedTLS":{"description":"advisory.MbedTLS","properties":{"affects":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.McAfee":{"description":"advisory.McAfee","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mcafee_score":{"items":{"$ref":"#/components/schemas/advisory.McAfeeScore"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.McAfeeScore":{"description":"advisory.McAfeeScore","properties":{"base":{"type":"string"},"cve":{"type":"string"},"temporal":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.Mediatek":{"description":"advisory.Mediatek","properties":{"affected_chipsets":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_software":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MedtronicAdvisory":{"description":"advisory.MedtronicAdvisory","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Mendix":{"description":"advisory.Mendix","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"mendix_id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MetaAdvisories":{"description":"advisory.MetaAdvisories","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MetaData":{"description":"advisory.MetaData","properties":{"advisory":{"$ref":"#/components/schemas/advisory.AdvisoryDetails"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckPackage"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.OvalReference"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.MetasploitExploit":{"description":"advisory.MetasploitExploit","properties":{"author":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Metric":{"description":"advisory.Metric","properties":{"cvssV2_0":{"$ref":"#/components/schemas/advisory.MCvssV20"},"cvssV3_0":{"$ref":"#/components/schemas/advisory.MCvssV30"},"cvssV3_1":{"$ref":"#/components/schemas/advisory.MCvssV31"},"cvssV4_0":{"$ref":"#/components/schemas/advisory.MCvssV40"},"format":{"type":"string"},"other":{"$ref":"#/components/schemas/advisory.MetricsOther"},"scenarios":{"items":{"$ref":"#/components/schemas/advisory.MetricScenario"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MetricScenario":{"description":"advisory.MetricScenario","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.MetricsOther":{"description":"advisory.MetricsOther","properties":{"content":{"type":"object"},"type":{"type":"string"}},"type":"object"},"advisory.MicrosoftCSAF":{"description":"advisory.MicrosoftCSAF","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MicrosoftCVRF":{"description":"advisory.MicrosoftCVRF","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf":{"$ref":"#/components/schemas/advisory.MSCVRF"},"date_added":{"type":"string"},"exploited_list":{"items":{"$ref":"#/components/schemas/advisory.ITW"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MicrosoftDriverBlockList":{"description":"advisory.MicrosoftDriverBlockList","properties":{"date_added":{"type":"string"},"file_id":{"description":"From FileAttrib or Deny","type":"string"},"file_metadata":{"$ref":"#/components/schemas/advisory.MicrosoftFileMetadata"}},"type":"object"},"advisory.MicrosoftFileMetadata":{"description":"File-level metadata","properties":{"file_name":{"description":"Full path (FilePath + FileName or FriendlyName)","type":"string"},"maximum_file_version":{"type":"string"},"minimum_file_version":{"type":"string"},"product_name":{"type":"string"},"sha1_hash":{"type":"string"},"sha256_hash":{"type":"string"}},"type":"object"},"advisory.MicrosoftKb":{"description":"advisory.MicrosoftKb","properties":{"cve":{"type":"string"},"date_added":{"type":"string"},"kbs":{"items":{"$ref":"#/components/schemas/advisory.Kb"},"type":"array","uniqueItems":false},"threat":{"$ref":"#/components/schemas/advisory.KbThreatDescription"},"title":{"type":"string"}},"type":"object"},"advisory.Mikrotik":{"description":"advisory.Mikrotik","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Mindray":{"description":"advisory.Mindray","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MispMeta":{"description":"advisory.MispMeta","properties":{"attribution-confidence":{"type":"string"},"cfr-suspected-state-sponsor":{"type":"string"},"cfr-suspected-victims":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cfr-target-category":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cfr-type-of-incident":{"items":{"type":"string"},"type":"array","uniqueItems":false},"country":{"type":"string"},"refs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"synonyms":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MispRelatedItem":{"description":"advisory.MispRelatedItem","properties":{"dest-uuid":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.MispValue":{"description":"advisory.MispValue","properties":{"description":{"type":"string"},"meta":{"$ref":"#/components/schemas/advisory.MispMeta"},"related":{"items":{"$ref":"#/components/schemas/advisory.MispRelatedItem"},"type":"array","uniqueItems":false},"uuid":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Mitel":{"description":"advisory.Mitel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackRef":{"description":"advisory.MitreAttackRef","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackTechWithRefs":{"description":"advisory.MitreAttackTechWithRefs","properties":{"domain":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"nist_controls":{"items":{"$ref":"#/components/schemas/advisory.NISTControl"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackRef"},"type":"array","uniqueItems":false},"subtechnique":{"type":"boolean"},"tactics":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackTechnique":{"description":"advisory.MitreAttackTechnique","properties":{"sub_technique":{"type":"string"},"sub_technique_name":{"type":"string"},"tactic":{"items":{"type":"string"},"type":"array","uniqueItems":false},"technique_id":{"type":"string"},"technique_name":{"type":"string"}},"type":"object"},"advisory.MitreCVEListV5":{"description":"advisory.MitreCVEListV5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreCVEListV5Ref":{"description":"advisory.MitreCVEListV5Ref","properties":{"containers":{"$ref":"#/components/schemas/advisory.MContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.MCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.MitreGroupCTI":{"description":"advisory.MitreGroupCTI","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"id":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.ExternalReferences"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MitsubishiElectricAdvisory":{"description":"advisory.MitsubishiElectricAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"description":"could nuke this at some pt in the future as it's a dupe","type":"string"},"mitsubishi_electric_id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MogwaiLabsAdvisory":{"description":"advisory.MogwaiLabsAdvisory","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"gcve":{"description":"From detail page","type":"string"},"id":{"description":"From index table","type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MokshaAdvisory":{"description":"advisory.MokshaAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"cvss3_score":{"type":"number"},"cvss3_severity":{"type":"string"},"cvss4_score":{"type":"number"},"cvss4_severity":{"type":"string"},"date_added":{"type":"string"},"gcve":{"type":"string"},"moksha_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MongoDB":{"description":"advisory.MongoDB","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"score":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MoxaAdvisory":{"description":"advisory.MoxaAdvisory","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MozillaAdvisory":{"description":"advisory.MozillaAdvisory","properties":{"affected_components":{"items":{"$ref":"#/components/schemas/advisory.MozillaComponent"},"type":"array","uniqueItems":false},"bugzilla":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_in":{"items":{"type":"string"},"type":"array","uniqueItems":false},"impact":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"reporter":{"type":"string"},"risk":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MozillaComponent":{"description":"advisory.MozillaComponent","properties":{"bugzilla":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"impact":{"type":"string"},"reporter":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.NCSC":{"description":"advisory.NCSC","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_nl":{"type":"string"},"title_nl":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NCSCCVE":{"description":"advisory.NCSCCVE","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_nl":{"type":"string"},"title_nl":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NEC":{"description":"advisory.NEC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"nvd_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NHS":{"description":"advisory.NHS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"threat_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NI":{"description":"advisory.NI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"ovewrview":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NISTControl":{"description":"advisory.NISTControl","properties":{"cis_controls":{"items":{"$ref":"#/components/schemas/advisory.CISControl"},"type":"array","uniqueItems":false},"nist_control_family":{"type":"string"},"nist_control_id":{"type":"string"},"nist_control_name":{"type":"string"}},"type":"object"},"advisory.NTP":{"description":"advisory.NTP","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NVD20CVECPEMatch":{"description":"advisory.NVD20CVECPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.NVD20Configuration":{"description":"advisory.NVD20Configuration","properties":{"negate":{"type":"boolean"},"nodes":{"items":{"$ref":"#/components/schemas/advisory.NVD20Node"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"advisory.NVD20Node":{"description":"advisory.NVD20Node","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.NVD20CVECPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.NVD20Source":{"description":"advisory.NVD20Source","properties":{"contactEmail":{"type":"string"},"created":{"type":"string"},"cweAcceptanceLevel":{"$ref":"#/components/schemas/advisory.CweAcceptanceLevel"},"lastModified":{"type":"string"},"name":{"type":"string"},"sourceIdentifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"v3AcceptanceLevel":{"$ref":"#/components/schemas/advisory.V3AcceptanceLevel"}},"type":"object"},"advisory.NVDCPEDictionary":{"description":"advisory.NVDCPEDictionary","properties":{"backupOnly":{"type":"string"}},"type":"object"},"advisory.NZAdvisory":{"description":"advisory.NZAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"happening":{"type":"string"},"link":{"type":"string"},"lookFor":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"whatToDo":{"type":"string"}},"type":"object"},"advisory.Naver":{"description":"advisory.Naver","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nessus":{"description":"advisory.Nessus","properties":{"cpe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploitability_ease":{"description":"seems like only 3 vals for this","type":"string"},"filename":{"type":"string"},"iava":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"script_id":{"type":"integer"},"updated":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NetApp":{"description":"advisory.NetApp","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact":{"type":"string"},"ntap":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netatalk":{"description":"advisory.Netatalk","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netgate":{"description":"advisory.Netgate","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netgear":{"description":"advisory.Netgear","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"psvn_number":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netskope":{"description":"advisory.Netskope","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nexpose":{"description":"advisory.Nexpose","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"identifier":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NginxAdvisory":{"description":"advisory.NginxAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"not_vuln_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false},"patch_pgp":{"type":"string"},"patch_url":{"type":"string"},"severity":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vuln_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.NodeAuthor":{"description":"advisory.NodeAuthor","properties":{"author":{"type":"string"},"username":{"type":"string"},"website":{"type":"string"}},"type":"object"},"advisory.NodeJS":{"description":"advisory.NodeJS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NodeSecurity":{"description":"advisory.NodeSecurity","properties":{"affected_environments":{"items":{"type":"string"},"type":"array","uniqueItems":false},"author":{"$ref":"#/components/schemas/advisory.NodeAuthor"},"coordinating_vendor":{"type":"string"},"created_at":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"number"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"integer"},"module_name":{"type":"string"},"overview":{"type":"string"},"patched_versions":{"type":"string"},"publish_date":{"type":"string"},"recommendation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerable_versions":{"type":"string"}},"type":"object"},"advisory.Nokia":{"description":"advisory.Nokia","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Note":{"description":"advisory.Note","properties":{"ordinal":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"},"type":{"type":"integer"}},"type":"object"},"advisory.NotePadPlusPlus":{"description":"advisory.NotePadPlusPlus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nozomi":{"description":"advisory.Nozomi","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nuclei":{"description":"advisory.Nuclei","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"template":{"type":"object"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NvidiaRevision":{"description":"advisory.NvidiaRevision","properties":{"date":{"type":"string"},"description":{"type":"string"},"revision":{"type":"string"}},"type":"object"},"advisory.OCurl":{"description":"advisory.OCurl","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.CurlAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.CurlCredit"},"type":"array","uniqueItems":false},"database_specific":{"$ref":"#/components/schemas/advisory.DBSpecific"},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"schema_version":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.OPCFoundationAcknowledgment":{"description":"advisory.OPCFoundationAcknowledgment","properties":{"names":{"items":{"type":"string"},"type":"array","uniqueItems":false},"organization":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.OPCFoundationAdvisory":{"description":"advisory.OPCFoundationAdvisory","properties":{"csaf":{"$ref":"#/components/schemas/advisory.OPCFoundationRef"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"gcve":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OPCFoundationDistribution":{"description":"advisory.OPCFoundationDistribution","properties":{"tlp":{"$ref":"#/components/schemas/advisory.OPCFoundationTLP"}},"type":"object"},"advisory.OPCFoundationDocumentMetadata":{"description":"advisory.OPCFoundationDocumentMetadata","properties":{"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.OPCFoundationDistribution"},"lang":{"type":"string"},"notes":{"description":"used by ncsc","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.Publisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"title":{"description":"Aggregate severity is a vehicle that is provided by the document producer to convey the urgency and\ncriticality with which the one or more vulnerabilities reported should be addressed.","type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.Tracking"}},"type":"object"},"advisory.OPCFoundationInvolvement":{"description":"advisory.OPCFoundationInvolvement","properties":{"party":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.OPCFoundationRef":{"description":"advisory.OPCFoundationRef","properties":{"document":{"$ref":"#/components/schemas/advisory.OPCFoundationDocumentMetadata"},"product_tree":{"$ref":"#/components/schemas/advisory.ProductBranch"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.OPCFoundationVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OPCFoundationTLP":{"description":"advisory.OPCFoundationTLP","properties":{"label":{"type":"string"}},"type":"object"},"advisory.OPCFoundationVulnerability":{"description":"advisory.OPCFoundationVulnerability","properties":{"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.OPCFoundationAcknowledgment"},"type":"array","uniqueItems":false},"cve":{"description":"MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3232-vulnerabilities-property---cve","type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.Cwe"},"discovery_date":{"type":"string"},"flags":{"description":"Machine readable flags for products related to vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3235-vulnerabilities-property---flags","items":{"$ref":"#/components/schemas/advisory.Flag"},"type":"array","uniqueItems":false},"ids":{"description":"List of IDs represents a list of unique labels or tracking IDs for the vulnerability (if such information exists).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3236-vulnerabilities-property---ids","items":{"$ref":"#/components/schemas/advisory.TrackingID"},"type":"array","uniqueItems":false},"involvements":{"items":{"$ref":"#/components/schemas/advisory.OPCFoundationInvolvement"},"type":"array","uniqueItems":false},"notes":{"description":"Notes holds notes associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3238-vulnerabilities-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_status":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Provide details on the status of the referenced product related to the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3239-vulnerabilities-property---product-status","type":"object"},"references":{"description":"Vulnerability references holds a list of references associated with this vulnerability item.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32310-vulnerabilities-property---references","items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"remediations":{"description":"Provide details of remediations associated with a Vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32312-vulnerabilities-property---remediations","items":{"$ref":"#/components/schemas/advisory.RemediationData"},"type":"array","uniqueItems":false},"scores":{"description":"Scores holds the scores associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32313-vulnerabilities-property---scores\nCurrently only CVSS v3 is supported.","items":{"$ref":"#/components/schemas/advisory.CSAFScore"},"type":"array","uniqueItems":false},"threats":{"description":"Provide details of threats associated with a vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32314-vulnerabilities-property---threats","items":{"$ref":"#/components/schemas/advisory.ThreatData"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.OSV":{"description":"advisory.OSV","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"osv":{"$ref":"#/components/schemas/advisory.OSVObj"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OSVObj":{"description":"advisory.OSVObj","properties":{"affected":{"description":"collection based on https://ossf.github.io/osv-schema/","items":{"$ref":"#/components/schemas/advisory.Affected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.OSVReference"},"type":"array","uniqueItems":false},"related":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"withdrawn":{"type":"string"}},"type":"object"},"advisory.OSVPackage":{"description":"advisory.OSVPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"}},"type":"object"},"advisory.OSVReference":{"description":"advisory.OSVReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OTRS":{"description":"advisory.OTRS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"product":{"type":"string"},"release":{"type":"string"},"risk":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OctopusDeploy":{"description":"advisory.OctopusDeploy","properties":{"advisory_number":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Okta":{"description":"advisory.Okta","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"resolution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Omron":{"description":"advisory.Omron","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OneE":{"description":"advisory.OneE","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenBSD":{"description":"advisory.OpenBSD","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"patch":{"type":"string"},"release":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenCVDB":{"description":"advisory.OpenCVDB","properties":{"affected_platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_services":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"disclosed_at":{"type":"string"},"known_itw_exploitation":{"type":"boolean"},"manual_remediation":{"type":"string"},"published_at":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenJDK":{"description":"advisory.OpenJDK","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"openjdk_cves":{"items":{"$ref":"#/components/schemas/advisory.OpenJDKCVE"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenJDKCVE":{"description":"advisory.OpenJDKCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.OpenSSH":{"description":"advisory.OpenSSH","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenSSLSecAdv":{"description":"advisory.OpenSSLSecAdv","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"description":{"type":"string"},"filename":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.OpenSSLVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OpenSSLVulnerability":{"description":"advisory.OpenSSLVulnerability","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"$ref":"#/components/schemas/advisory.FixAff"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.OpenStack":{"description":"advisory.OpenStack","properties":{"affects":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Opengear":{"description":"advisory.Opengear","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OracleCPU":{"description":"advisory.OracleCPU","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OracleCPUCSAF":{"description":"advisory.OracleCPUCSAF","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OriginalGHSA":{"description":"advisory.OriginalGHSA","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.GHSAAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"database_specific":{"$ref":"#/components/schemas/advisory.GHSADatabaseSpecific"},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GHSAReference"},"type":"array","uniqueItems":false},"schema_version":{"type":"string"},"severity":{"items":{"$ref":"#/components/schemas/advisory.GHSASeverity"},"type":"array","uniqueItems":false},"summary":{"type":"string"}},"type":"object"},"advisory.OvalCVE":{"description":"advisory.OvalCVE","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.OvalReference":{"description":"advisory.OvalReference","properties":{"ref_id":{"type":"string"},"ref_url":{"type":"string"},"source":{"type":"string"}},"type":"object"},"advisory.Override":{"description":"advisory.Override","properties":{"_annotation":{"$ref":"#/components/schemas/advisory.OverrideAnnotation"},"cve":{"$ref":"#/components/schemas/advisory.OverrideCVE"}},"type":"object"},"advisory.OverrideAnnotation":{"description":"advisory.OverrideAnnotation","properties":{"cve_id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"reason":{"type":"string"},"snapshot":{"type":"string"},"triage_notes":{"$ref":"#/components/schemas/advisory.TriageNotes"}},"type":"object"},"advisory.OverrideCVE":{"description":"advisory.OverrideCVE","properties":{"configurations":{"items":{"$ref":"#/components/schemas/advisory.OverrideConfiguration"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OverrideConfiguration":{"description":"advisory.OverrideConfiguration","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.CPENode"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OwnCloud":{"description":"advisory.OwnCloud","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PGFix":{"description":"advisory.PGFix","properties":{"affected":{"type":"string"},"fixed":{"type":"string"}},"type":"object"},"advisory.PHPMyAdmin":{"description":"advisory.PHPMyAdmin","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PKCert":{"description":"advisory.PKCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PTC":{"description":"advisory.PTC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PTMDescriptions":{"description":"advisory.PTMDescriptions","properties":{"cweId":{"type":"string"},"description":{"type":"string"},"lang":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.Package":{"description":"advisory.Package","properties":{"filename":{"type":"string"},"name":{"description":"sort","type":"string"},"release":{"type":"string"},"src":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.PackageStat":{"description":"advisory.PackageStat","properties":{"cpe":{"type":"string"},"fix_state":{"type":"string"},"package_name":{"type":"string"},"product_name":{"type":"string"}},"type":"object"},"advisory.PacketstormExploit":{"description":"advisory.PacketstormExploit","properties":{"author":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"download_url":{"type":"string"},"md5":{"type":"string"},"summary":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Palantir":{"description":"advisory.Palantir","properties":{"affected_products":{"type":"string"},"background":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PaloAltoAdvisory":{"description":"advisory.PaloAltoAdvisory","properties":{"affected":{"type":"string"},"applicableVersions":{"type":"string"},"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"confidentialityImpact":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvssbaseScore":{"type":"string"},"datePublished":{"type":"string"},"dateUpdated":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"problem":{"type":"string"},"product":{"type":"string"},"scope":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"unaffected":{"type":"string"},"url":{"type":"string"},"userInteraction":{"type":"string"},"workaround":{"type":"string"}},"type":"object"},"advisory.Panasonic":{"description":"advisory.Panasonic","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PaperCut":{"description":"advisory.PaperCut","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Patch":{"description":"advisory.Patch","properties":{"advisory_id":{"type":"string"},"component":{"type":"string"},"link":{"type":"string"},"os_sw":{"type":"string"}},"type":"object"},"advisory.Pega":{"description":"advisory.Pega","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"score":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PhilipsAdvisory":{"description":"advisory.PhilipsAdvisory","properties":{"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PhoenixContactAdvisory":{"description":"advisory.PhoenixContactAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.PostgresSQL":{"description":"advisory.PostgresSQL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"pg_fix":{"items":{"$ref":"#/components/schemas/advisory.PGFix"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PowerDNS":{"description":"advisory.PowerDNS","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PrimeVersion":{"description":"advisory.PrimeVersion","properties":{"jdK":{"type":"string"},"prime":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Product":{"description":"advisory.Product","properties":{"name":{"type":"string"},"product_id":{"type":"string"},"product_identification_helper":{"$ref":"#/components/schemas/advisory.IdentificationHelper"}},"type":"object"},"advisory.ProductBranch":{"description":"ProductTree contains information about the product tree (branches only).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#322-product-tree-property","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.ProductBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"},"product":{"$ref":"#/components/schemas/advisory.Product"},"relationships":{"items":{"$ref":"#/components/schemas/advisory.CSAFRelationship"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ProductSpecificDetail":{"description":"advisory.ProductSpecificDetail","properties":{"ID":{"type":"string"},"display_value":{"type":"string"}},"type":"object"},"advisory.ProductsAffected":{"description":"advisory.ProductsAffected","properties":{"cve":{"type":"string"},"description":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.ProgramRoutine":{"description":"advisory.ProgramRoutine","properties":{"name":{"type":"string"}},"type":"object"},"advisory.Progress":{"description":"advisory.Progress","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Proofpoint":{"description":"advisory.Proofpoint","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Publisher":{"description":"advisory.Publisher","properties":{"category":{"type":"string"},"contact_details":{"type":"string"},"issuing_authority":{"type":"string"},"name":{"type":"string"},"namespace":{"type":"string"}},"type":"object"},"advisory.PureStorage":{"description":"advisory.PureStorage","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"product":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PyPAAdvisory":{"description":"advisory.PyPAAdvisory","properties":{"advisory_id":{"description":"ID is the PYSEC- identifier","type":"string"},"affected":{"description":"Affected will list out the vulnerable versions.","items":{"$ref":"#/components/schemas/advisory.PyPAAffected"},"type":"array","uniqueItems":false},"aliases":{"description":"Aliases are other identifiers that refer to this, such as a CVE","items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"description":"Details discuss the vulnerability information","type":"string"},"modified":{"description":"Modified is non-zero Time if entry was updated","type":"string"},"published":{"description":"Published is the datetime when this was released","type":"string"},"references":{"description":"References are links to more detailed advisories, fixes, etc.","items":{"$ref":"#/components/schemas/advisory.PyPAReference"},"type":"array","uniqueItems":false},"was_withdrawn":{"description":"WasWD indicates if the advisory was withdrawn or not.","type":"boolean"},"withdrawn":{"description":"Withdrawn is non-zero if this advisory has been withdrawn","type":"string"}},"type":"object"},"advisory.PyPAAffected":{"description":"advisory.PyPAAffected","properties":{"package":{"$ref":"#/components/schemas/advisory.PyPAPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.PyPARange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.PyPAEvent":{"description":"advisory.PyPAEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.PyPAPackage":{"description":"advisory.PyPAPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"}},"type":"object"},"advisory.PyPARange":{"description":"advisory.PyPARange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.PyPAEvent"},"type":"array","uniqueItems":false},"ranges_type":{"type":"string"}},"type":"object"},"advisory.PyPAReference":{"description":"advisory.PyPAReference","properties":{"refs_type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QCompliance":{"description":"advisory.QCompliance","properties":{"section":{"type":"string"},"typ":{"type":"string"}},"type":"object"},"advisory.QNAPAdvisory":{"description":"advisory.QNAPAdvisory","properties":{"affected":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"last_update_date":{"type":"string"},"link":{"type":"string"},"severity":{"type":"string"},"severity_number":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.QQID":{"description":"advisory.QQID","properties":{"compliance":{"items":{"$ref":"#/components/schemas/advisory.QCompliance"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss3_score":{"type":"string"},"cvss_score":{"type":"string"},"date_added":{"type":"string"},"qid":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QSB":{"description":"advisory.QSB","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Qualcomm":{"description":"advisory.Qualcomm","properties":{"chipsets":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"score":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Qualys":{"description":"advisory.Qualys","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploits":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QualysQID":{"description":"advisory.QualysQID","properties":{"consequence":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v2":{"items":{"$ref":"#/components/schemas/advisory.CvsssV2_3"},"type":"array","uniqueItems":false},"cvss_v3":{"items":{"$ref":"#/components/schemas/advisory.CvsssV2_3"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_insert":{"type":"string"},"description":{"type":"string"},"patches":{"items":{"$ref":"#/components/schemas/advisory.Patch"},"type":"array","uniqueItems":false},"published":{"type":"string"},"qid":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor_refs":{"items":{"$ref":"#/components/schemas/advisory.VendorRef"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RDescription":{"description":"advisory.RDescription","properties":{"value":{"type":"string"}},"type":"object"},"advisory.RNote":{"description":"advisory.RNote","properties":{"audience":{"type":"string"},"ordinal":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"},"type":{"description":"diff between xml \u0026\u0026 json","type":"integer"}},"type":"object"},"advisory.RRevision":{"description":"advisory.RRevision","properties":{"date":{"type":"string"},"description":{"$ref":"#/components/schemas/advisory.RDescription"},"number":{"type":"string"}},"type":"object"},"advisory.RScoreSet":{"description":"advisory.RScoreSet","properties":{"base_score":{"type":"string"},"product_id":{"type":"string"},"temporal_score":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.RThreat":{"description":"advisory.RThreat","properties":{"Date":{"type":"string"},"DateSpecified":{"type":"boolean"},"Description":{"$ref":"#/components/schemas/advisory.IVal"},"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.Range":{"description":"advisory.Range","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.Event"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RansomwareExploit":{"description":"advisory.RansomwareExploit","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"ransomware_family":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RecordType":{"description":"advisory.RecordType","properties":{"finding":{"type":"string"},"id":{"type":"string"},"kind":{"type":"string"}},"type":"object"},"advisory.RedLion":{"description":"advisory.RedLion","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RedhatCVE":{"description":"advisory.RedhatCVE","properties":{"advisories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"advisory_csaf_vex_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_packages":{"description":"used for un-marshlling from redhat","items":{"type":"string"},"type":"array","uniqueItems":false},"affected_release":{"items":{"$ref":"#/components/schemas/advisory.AffectedRel"},"type":"array","uniqueItems":false},"bugzilla":{"type":"string"},"bugzilla_description":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_csaf_vex_url":{"type":"string"},"cvss3_score":{"type":"string"},"cvss3_scoring_vector":{"type":"string"},"cvss_score":{"type":"number"},"cvss_scoring_vector":{"type":"string"},"cwe":{"type":"string"},"package_state":{"items":{"$ref":"#/components/schemas/advisory.PackageStat"},"type":"array","uniqueItems":false},"packages":{"description":"used to index into vulncheck OS","items":{"$ref":"#/components/schemas/advisory.VulnCheckPackage"},"type":"array","uniqueItems":false},"public_date":{"type":"string"},"resource_url":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Reference":{"description":"advisory.Reference","properties":{"href":{"description":"sort","type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RelatedRule":{"description":"advisory.RelatedRule","properties":{"id":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RemediationData":{"description":"advisory.RemediationData","properties":{"category":{"type":"string"},"date":{"type":"string"},"details":{"type":"string"},"entitlements":{"items":{"type":"string"},"type":"array","uniqueItems":false},"group_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"restart_required":{"$ref":"#/components/schemas/advisory.RestartData"}},"type":"object"},"advisory.Renesas":{"description":"advisory.Renesas","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ReportedExploit":{"description":"advisory.ReportedExploit","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RestartData":{"description":"advisory.RestartData","properties":{"category":{"type":"string"},"details":{"type":"string"}},"type":"object"},"advisory.RevisionHistory":{"description":"advisory.RevisionHistory","properties":{"date":{"type":"string"},"number":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Revive":{"description":"advisory.Revive","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RhelCVE":{"description":"advisory.RhelCVE","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Roche":{"description":"advisory.Roche","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"roche_cves":{"items":{"$ref":"#/components/schemas/advisory.RocheCVE"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RocheCVE":{"description":"advisory.RocheCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.Rockwell":{"description":"advisory.Rockwell","properties":{"affected_products":{"items":{"$ref":"#/components/schemas/advisory.RockwellAffectedProduct"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RockwellAffectedProduct":{"description":"advisory.RockwellAffectedProduct","properties":{"affectedCatalogNumber":{"type":"string"},"affectedVersion":{"type":"string"},"correctedVersion":{"type":"string"},"cve":{"type":"string"},"product":{"type":"string"}},"type":"object"},"advisory.RockyAdvisory":{"description":"advisory.RockyAdvisory","properties":{"affectedProducts":{"items":{"type":"string"},"type":"array","uniqueItems":false},"buildReferences":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cves":{"items":{"$ref":"#/components/schemas/advisory.RockyCve"},"type":"array","uniqueItems":false},"description":{"type":"string"},"fixes":{"items":{"$ref":"#/components/schemas/advisory.RockyFix"},"type":"array","uniqueItems":false},"name":{"type":"string"},"publishedAt":{"type":"string"},"rebootSuggested":{"type":"boolean"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rpms":{"$ref":"#/components/schemas/advisory.RockyRpms"},"severity":{"type":"string"},"shortCode":{"type":"string"},"solution":{"type":"string"},"synopsis":{"type":"string"},"topic":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RockyCve":{"description":"advisory.RockyCve","properties":{"cvss3BaseScore":{"type":"string"},"cvss3ScoringVector":{"type":"string"},"cwe":{"type":"string"},"name":{"type":"string"},"sourceBy":{"type":"string"},"sourceLink":{"type":"string"}},"type":"object"},"advisory.RockyErrata":{"description":"advisory.RockyErrata","properties":{"advisory":{"$ref":"#/components/schemas/advisory.RockyAdvisory"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.RockyPackage"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.RockyFix":{"description":"advisory.RockyFix","properties":{"description":{"type":"string"},"sourceBy":{"type":"string"},"sourceLink":{"type":"string"},"ticket":{"type":"string"}},"type":"object"},"advisory.RockyPackage":{"description":"advisory.RockyPackage","properties":{"distro":{"type":"string"},"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.RockyRpms":{"additionalProperties":{"$ref":"#/components/schemas/advisory.RockyVersion"},"description":"advisory.RockyRpms","type":"object"},"advisory.RockyVersion":{"description":"advisory.RockyVersion","properties":{"nvras":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Rsync":{"description":"advisory.Rsync","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ruckus":{"description":"advisory.Ruckus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RustsecAdvisory":{"description":"advisory.RustsecAdvisory","properties":{"advisory":{"$ref":"#/components/schemas/advisory.RustsecFrontMatterAdvisory"},"affected":{"$ref":"#/components/schemas/advisory.RustsecAffected"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"versions":{"$ref":"#/components/schemas/advisory.RustsecFrontMatterVersions"}},"type":"object"},"advisory.RustsecAffected":{"description":"advisory.RustsecAffected","properties":{"arch":{"items":{"type":"string"},"type":"array","uniqueItems":false},"functions":{"type":"string"},"os":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RustsecFrontMatterAdvisory":{"description":"advisory.RustsecFrontMatterAdvisory","properties":{"aliases":{"description":"Vulnerability aliases, e.g. CVE IDs (optional but recommended)\nRequest a CVE for your RustSec vulns: https://iwantacve.org/","items":{"type":"string"},"type":"array","uniqueItems":false},"categories":{"description":"Optional: Categories this advisory falls under. Valid categories are:\n\"code-execution\", \"crypto-failure\", \"denial-of-service\", \"file-disclosure\"\n\"format-injection\", \"memory-corruption\", \"memory-exposure\", \"privilege-escalation\"","items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"description":"Optional: a Common Vulnerability Scoring System score. More information\ncan be found on the CVSS website, https://www.first.org/cvss/.","type":"string"},"date":{"description":"Disclosure date of the advisory as an RFC 3339 date (mandatory)","type":"string"},"informational":{"description":"Optional: Indicates the type of informational security advisory\n - \"unsound\" for soundness issues\n - \"unmaintained\" for crates that are no longer maintained\n - \"notice\" for other informational notices","type":"string"},"keywords":{"description":"Freeform keywords which describe this vulnerability, similar to Cargo (optional)","items":{"type":"string"},"type":"array","uniqueItems":false},"package":{"description":"Name of the affected crate (mandatory)","type":"string"},"references":{"description":"URL to additional helpful references regarding the advisory (optional)","items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"description":"Related vulnerabilities (optional)\ne.g. CVE for a C library wrapped by a -sys crate)","items":{"type":"string"},"type":"array","uniqueItems":false},"rustsec_id":{"description":"Identifier for the advisory (mandatory). Will be assigned a \"RUSTSEC-YYYY-NNNN\"\nidentifier e.g. RUSTSEC-2018-0001. Please use \"RUSTSEC-0000-0000\" in PRs.","type":"string"},"url":{"description":"URL to a long-form description of this issue, e.g. a GitHub issue/PR,\na change log entry, or a blogpost announcing the release (optional)","type":"string"},"withdrawn":{"description":"Whether the advisory is withdrawn (optional)","type":"string"}},"type":"object"},"advisory.RustsecFrontMatterVersions":{"description":"advisory.RustsecFrontMatterVersions","properties":{"patched":{"items":{"type":"string"},"type":"array","uniqueItems":false},"unaffected":{"description":"Versions which were never vulnerable (optional)","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SAAdvisory":{"description":"advisory.SAAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"threats":{"type":"string"},"vendor":{"type":"string"},"warningDate":{"type":"string"},"warningNumber":{"type":"string"}},"type":"object"},"advisory.SAP":{"description":"advisory.SAP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SECConsult":{"description":"advisory.SECConsult","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SSASource":{"description":"advisory.SSASource","properties":{"document":{"$ref":"#/components/schemas/advisory.SiemensDocument"},"product_tree":{"$ref":"#/components/schemas/advisory.SiemensProductTree"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.SiemensVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SSDAdvisory":{"description":"advisory.SSDAdvisory","properties":{"analysis":{"type":"string"},"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"poc":{"description":"contains actual poc code","type":"string"},"published":{"type":"string"},"response_ref":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.Safran":{"description":"advisory.Safran","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SaintExploit":{"description":"advisory.SaintExploit","properties":{"bid":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"osvdb":{"type":"string"},"saint_id":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SalesForce":{"description":"advisory.SalesForce","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer"},"link":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Samba":{"description":"advisory.Samba","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issues":{"type":"string"},"patches":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sandisk":{"description":"advisory.Sandisk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SansDshield":{"description":"advisory.SansDshield","properties":{"count":{"type":"integer"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"firstSeen":{"type":"string"},"lastSeen":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SchneiderCVE":{"description":"advisory.SchneiderCVE","properties":{"cve":{"type":"string"},"cvss_score3":{"type":"string"},"cvss_score4":{"type":"string"},"cvss_vector3":{"type":"string"},"cvss_vector4":{"type":"string"}},"type":"object"},"advisory.SchneiderElectricAdvisory":{"description":"advisory.SchneiderElectricAdvisory","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"pdf_url":{"type":"string"},"schneider_cves":{"items":{"$ref":"#/components/schemas/advisory.SchneiderCVE"},"type":"array","uniqueItems":false},"schneider_electric_id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Schutzwerk":{"description":"advisory.Schutzwerk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SecFix":{"description":"advisory.SecFix","properties":{"arch":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"release":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SecurityBulletin":{"description":"advisory.SecurityBulletin","properties":{"acknowledgement":{"type":"string"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvedetails":{"items":{"$ref":"#/components/schemas/advisory.CVEDetail"},"type":"array"},"date_added":{"type":"string"},"hardwareUpdates":{"items":{"$ref":"#/components/schemas/advisory.HardwareUpdate"},"type":"array"},"lastUpdated":{"type":"string"},"link":{"type":"string"},"revisions":{"items":{"$ref":"#/components/schemas/advisory.NvidiaRevision"},"type":"array"},"severity":{"type":"string"},"softwareUpdates":{"items":{"$ref":"#/components/schemas/advisory.SoftwareUpdate"},"type":"array"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.SecurityLab":{"description":"advisory.SecurityLab","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"title_ru":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.SeebugExploit":{"description":"advisory.SeebugExploit","properties":{"author":{"type":"string"},"category":{"type":"string"},"cnnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"component":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"find_time":{"type":"string"},"name":{"type":"string"},"ssv_id":{"type":"string"},"submitter":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sel":{"description":"advisory.Sel","properties":{"acknowledgement":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SentinelOne":{"description":"advisory.SentinelOne","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ServiceNow":{"description":"advisory.ServiceNow","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SevenZip":{"description":"advisory.SevenZip","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Severity":{"description":"advisory.Severity","properties":{"score":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.ShadowServerExploitedVulnerability":{"description":"advisory.ShadowServerExploitedVulnerability","properties":{"cnvd":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"detections_last_1_day":{"type":"integer"},"detections_last_30_days":{"type":"integer"},"detections_last_7_days":{"type":"integer"},"detections_last_90_days":{"type":"integer"},"edb":{"type":"string"},"in_kev":{"type":"boolean"},"is_iot":{"type":"boolean"},"is_ransomware":{"type":"boolean"},"product":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"},"vulnerability_id":{"type":"string"},"vulnerability_link":{"type":"string"}},"type":"object"},"advisory.Shielder":{"description":"advisory.Shielder","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sick":{"description":"advisory.Sick","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SiemensAcknowledgments":{"description":"advisory.SiemensAcknowledgments","properties":{"names":{"items":{"type":"string"},"type":"array","uniqueItems":false},"organization":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.SiemensAdvisory":{"description":"advisory.SiemensAdvisory","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf_url":{"type":"string"},"date_added":{"type":"string"},"html_url":{"type":"string"},"id":{"type":"string"},"last_update":{"description":"could potentially kill this in the future as it's a dupe","type":"string"},"pdf_url":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ssa":{"$ref":"#/components/schemas/advisory.SSASource"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"txt_url":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.SiemensBranch":{"description":"advisory.SiemensBranch","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensSubBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensCVSSV3":{"description":"advisory.SiemensCVSSV3","properties":{"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensCWE":{"description":"advisory.SiemensCWE","properties":{"id":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensDistribution":{"description":"advisory.SiemensDistribution","properties":{"text":{"type":"string"},"tlp":{"$ref":"#/components/schemas/advisory.SiemensTLP"}},"type":"object"},"advisory.SiemensDocument":{"description":"advisory.SiemensDocument","properties":{"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.SiemensAcknowledgments"},"type":"array","uniqueItems":false},"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.SiemensDistribution"},"notes":{"items":{"$ref":"#/components/schemas/advisory.SiemensNotes"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.SiemensPublisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.SiemensReferences"},"type":"array","uniqueItems":false},"title":{"type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.SiemensTracking"}},"type":"object"},"advisory.SiemensEngine":{"description":"advisory.SiemensEngine","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensGenerator":{"description":"advisory.SiemensGenerator","properties":{"engine":{"$ref":"#/components/schemas/advisory.SiemensEngine"}},"type":"object"},"advisory.SiemensNotes":{"description":"advisory.SiemensNotes","properties":{"category":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.SiemensProduct":{"description":"advisory.SiemensProduct","properties":{"name":{"type":"string"},"product_id":{"type":"string"},"product_identification_helper":{"$ref":"#/components/schemas/advisory.SiemensProductIdentificationHelper"}},"type":"object"},"advisory.SiemensProductIdentificationHelper":{"description":"advisory.SiemensProductIdentificationHelper","properties":{"model_numbers":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensProductStatus":{"description":"advisory.SiemensProductStatus","properties":{"known_affected":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensProductTree":{"description":"advisory.SiemensProductTree","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensBranch"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensPublisher":{"description":"advisory.SiemensPublisher","properties":{"category":{"type":"string"},"contact_details":{"type":"string"},"name":{"type":"string"},"namespace":{"type":"string"}},"type":"object"},"advisory.SiemensReferences":{"description":"advisory.SiemensReferences","properties":{"category":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SiemensRemediation":{"description":"advisory.SiemensRemediation","properties":{"category":{"type":"string"},"details":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.SiemensRevisionHistory":{"description":"advisory.SiemensRevisionHistory","properties":{"date":{"type":"string"},"legacy_version":{"type":"string"},"number":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.SiemensScore":{"description":"advisory.SiemensScore","properties":{"cvss_v3":{"$ref":"#/components/schemas/advisory.SiemensCVSSV3"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensSubBranch":{"description":"advisory.SiemensSubBranch","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensSubSubBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensSubSubBranch":{"description":"advisory.SiemensSubSubBranch","properties":{"category":{"type":"string"},"name":{"type":"string"},"product":{"$ref":"#/components/schemas/advisory.SiemensProduct"}},"type":"object"},"advisory.SiemensTLP":{"description":"advisory.SiemensTLP","properties":{"label":{"type":"string"}},"type":"object"},"advisory.SiemensTracking":{"description":"advisory.SiemensTracking","properties":{"current_release_date":{"type":"string"},"generator":{"$ref":"#/components/schemas/advisory.SiemensGenerator"},"id":{"type":"string"},"initial_release_date":{"type":"string"},"revision_history":{"items":{"$ref":"#/components/schemas/advisory.SiemensRevisionHistory"},"type":"array","uniqueItems":false},"status":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensVulnerability":{"description":"advisory.SiemensVulnerability","properties":{"cve":{"type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.SiemensCWE"},"notes":{"items":{"$ref":"#/components/schemas/advisory.SiemensNotes"},"type":"array","uniqueItems":false},"product_status":{"$ref":"#/components/schemas/advisory.SiemensProductStatus"},"references":{"items":{"$ref":"#/components/schemas/advisory.SiemensReferences"},"type":"array","uniqueItems":false},"remediations":{"items":{"$ref":"#/components/schemas/advisory.SiemensRemediation"},"type":"array","uniqueItems":false},"scores":{"items":{"$ref":"#/components/schemas/advisory.SiemensScore"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SierraWireless":{"description":"advisory.SierraWireless","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"swid":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SigmaRule":{"description":"advisory.SigmaRule","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_attack_techniques":{"items":{"type":"string"},"type":"array","uniqueItems":false},"sigma_rule":{"$ref":"#/components/schemas/advisory.SigmaRuleRule"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SigmaRuleRule":{"description":"advisory.SigmaRuleRule","properties":{"author":{"type":"string"},"date":{"type":"string"},"description":{"type":"string"},"detection":{"additionalProperties":{},"type":"object"},"false_positives":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fields":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"level":{"type":"string"},"logsource":{"$ref":"#/components/schemas/advisory.LogSource"},"modified":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"items":{"$ref":"#/components/schemas/advisory.RelatedRule"},"type":"array","uniqueItems":false},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SingCert":{"description":"advisory.SingCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"}},"type":"object"},"advisory.Sitecore":{"description":"advisory.Sitecore","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"refs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"summary_ja":{"type":"string"},"title":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Slackware":{"description":"advisory.Slackware","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SoftwareUpdate":{"description":"advisory.SoftwareUpdate","properties":{"affectedVersion":{"type":"string"},"cves":{"items":{"type":"string"},"type":"array"},"operatingSystem":{"type":"string"},"softwareProduct":{"type":"string"},"updatedVersion":{"type":"string"}},"type":"object"},"advisory.SolarWindsAdvisory":{"description":"advisory.SolarWindsAdvisory","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"date_added":{"type":"string"},"fixed_version":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Solr":{"description":"advisory.Solr","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sonatype":{"description":"advisory.Sonatype","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SonicWallAdvisory":{"description":"advisory.SonicWallAdvisory","properties":{"advisory_id":{"type":"string"},"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cvss_vector":{"type":"string"},"cvss_version":{"type":"number"},"cwe":{"type":"string"},"date_added":{"type":"string"},"impact":{"type":"string"},"is_workaround_available":{"type":"boolean"},"last_updated_when":{"type":"string"},"published_when":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vuln_status":{"type":"string"},"vulnerable_products_list":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SpacelabsHealthcareAdvisory":{"description":"advisory.SpacelabsHealthcareAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Splunk":{"description":"advisory.Splunk","properties":{"advisory_id":{"type":"string"},"affected_products":{"items":{"$ref":"#/components/schemas/advisory.SplunkProduct"},"type":"array","uniqueItems":false},"bug_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SplunkProduct":{"description":"advisory.SplunkProduct","properties":{"affected_version":{"type":"string"},"component":{"type":"string"},"fixed_version":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Spring":{"description":"advisory.Spring","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Stormshield":{"description":"advisory.Stormshield","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.StrykerAdvisory":{"description":"advisory.StrykerAdvisory","properties":{"affected_components":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sudo":{"description":"advisory.Sudo","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"fix":{"type":"string"},"impact":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"workaround":{"type":"string"}},"type":"object"},"advisory.SuseSecurity":{"description":"advisory.SuseSecurity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SwisslogHealthcareAdvisory":{"description":"advisory.SwisslogHealthcareAdvisory","properties":{"affected_components":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Symfony":{"description":"advisory.Symfony","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Synacktiv":{"description":"advisory.Synacktiv","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SyncroSoft":{"description":"advisory.SyncroSoft","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Synology":{"description":"advisory.Synology","properties":{"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"last_updated":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Syss":{"description":"advisory.Syss","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TI":{"description":"advisory.TI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"incident_id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TPLink":{"description":"advisory.TPLink","properties":{"bulletin_id":{"type":"integer"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TWCertAdvisory":{"description":"advisory.TWCertAdvisory","properties":{"affected_cn":{"type":"string"},"affected_en":{"type":"string"},"credit_cn":{"type":"string"},"credit_en":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_cn":{"type":"string"},"description_en":{"type":"string"},"link":{"type":"string"},"solution_cn":{"type":"string"},"solution_en":{"type":"string"},"title_cn":{"type":"string"},"title_en":{"type":"string"},"tvnid":{"type":"string"}},"type":"object"},"advisory.Tailscale":{"description":"advisory.Tailscale","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TalosAdvisory":{"description":"advisory.TalosAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"talos_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TaxonomyMapping":{"description":"advisory.TaxonomyMapping","properties":{"taxonomyName":{"type":"string"},"taxonomyRelations":{"items":{"$ref":"#/components/schemas/advisory.TaxonomyRelation"},"type":"array","uniqueItems":false},"taxonomyVersion":{"type":"string"}},"type":"object"},"advisory.TaxonomyRelation":{"description":"advisory.TaxonomyRelation","properties":{"relationshipName":{"type":"string"},"relationshipValue":{"type":"string"},"taxonomyId":{"type":"string"}},"type":"object"},"advisory.TeamViewer":{"description":"advisory.TeamViewer","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TenableResearchAdvisory":{"description":"advisory.TenableResearchAdvisory","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Tencent":{"description":"advisory.Tencent","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_cn":{"type":"string"},"title_cn":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Thales":{"description":"advisory.Thales","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TheMissingLink":{"description":"advisory.TheMissingLink","properties":{"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed_versions":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ThermoFisher":{"description":"advisory.ThermoFisher","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ThreatActorWithExternalObjects":{"description":"advisory.ThreatActorWithExternalObjects","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"country":{"type":"string"},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"misp_id":{"type":"string"},"misp_threat_actor":{"$ref":"#/components/schemas/advisory.MISPValueNoID"},"mitre_attack_group":{"$ref":"#/components/schemas/advisory.MITREAttackGroupNoID"},"mitre_group_cti":{"$ref":"#/components/schemas/advisory.MitreGroupCTI"},"mitre_id":{"type":"string"},"threat_actor_name":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false},"vendor_names_for_threat_actors":{"items":{"$ref":"#/components/schemas/advisory.VendorNameForThreatActor"},"type":"array","uniqueItems":false},"vendors_and_products_targeted":{"items":{"$ref":"#/components/schemas/advisory.VendorProduct"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ThreatData":{"description":"advisory.ThreatData","properties":{"category":{"type":"string"},"details":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Tibco":{"description":"advisory.Tibco","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"impact":{"type":"string"},"overview":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Timeline":{"description":"advisory.Timeline","properties":{"lang":{"type":"string"},"time":{"description":"FIXME: flip to time","type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Tool":{"description":"advisory.Tool","properties":{"name":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.ToolRef"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ToolRef":{"description":"advisory.ToolRef","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Tracking":{"description":"advisory.Tracking","properties":{"current_release_date":{"type":"string"},"id":{"type":"string"},"initial_release_date":{"type":"string"},"revision_history":{"items":{"$ref":"#/components/schemas/advisory.RevisionHistory"},"type":"array","uniqueItems":false},"status":{"type":"string"},"version":{"description":"should match last 'number' in []RevisionHistory","type":"string"}},"type":"object"},"advisory.TrackingID":{"description":"advisory.TrackingID","properties":{"system_name":{"type":"string"},"text":{"type":"string"}},"type":"object"},"advisory.TraneTechnology":{"description":"advisory.TraneTechnology","properties":{"brand":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"product":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TrendMicro":{"description":"advisory.TrendMicro","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"scores":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TriageNotes":{"description":"advisory.TriageNotes","properties":{"references":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Trustwave":{"description":"advisory.Trustwave","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.USD":{"description":"advisory.USD","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.USOMAdvisory":{"description":"advisory.USOMAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"effect_tr":{"type":"string"},"general_information_tr":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solution_tr":{"type":"string"},"title_tr":{"type":"string"},"trid":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ubiquiti":{"description":"advisory.Ubiquiti","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"links":{"items":{"type":"string"},"type":"array","uniqueItems":false},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.UbuntuCVE":{"description":"advisory.UbuntuCVE","properties":{"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.AffectedUbuntuPackage"},"type":"array","uniqueItems":false},"cve":{"description":"Candidate","items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"PublicDate","type":"string"},"reference_urls":{"description":"References","items":{"type":"string"},"type":"array","uniqueItems":false},"source_url":{"type":"string"},"status":{"description":"active || retired","type":"string"},"ubuntu_url":{"type":"string"},"usn":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.UbuntuPackageReleaseStatus":{"description":"advisory.UbuntuPackageReleaseStatus","properties":{"affected":{"type":"boolean"},"fixed":{"type":"boolean"},"fixed_version":{"type":"string"},"lts":{"type":"boolean"},"release":{"type":"string"},"release_long":{"type":"string"},"release_version":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.Unify":{"description":"advisory.Unify","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Unisoc":{"description":"advisory.Unisoc","properties":{"access_vector":{"type":"string"},"affected_chipsets":{"type":"string"},"affected_software":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"rating":{"type":"string"},"score":{"type":"string"},"severity":{"type":"string"},"technology":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerability":{"type":"string"}},"type":"object"},"advisory.Update":{"description":"advisory.Update","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"description":"sort // key","type":"string"},"issued":{"$ref":"#/components/schemas/advisory.DateTime"},"os_arch":{"type":"string"},"os_version":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.Package"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.Reference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"updated":{"$ref":"#/components/schemas/advisory.DateTime"}},"type":"object"},"advisory.Updated":{"description":"advisory.Updated","type":"object"},"advisory.V3AcceptanceLevel":{"description":"advisory.V3AcceptanceLevel","properties":{"description":{"type":"string"},"lastModified":{"type":"string"}},"type":"object"},"advisory.VCCPEDictionary":{"description":"advisory.VCCPEDictionary","properties":{"baseCPE":{"type":"string"},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.VCVulnerableCPEs":{"description":"advisory.VCVulnerableCPEs","properties":{"cve":{"type":"string"},"unrolled":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.VDEAdvisory":{"description":"advisory.VDEAdvisory","properties":{"csaf_json":{"$ref":"#/components/schemas/advisory.CSAF"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"type":"string"}},"type":"object"},"advisory.VLC":{"description":"advisory.VLC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VMWareAdvisory":{"description":"advisory.VMWareAdvisory","properties":{"AdvisoryID":{"type":"string"},"AdvisoryURL":{"type":"string"},"CVSSv3Range":{"type":"string"},"IssueDate":{"type":"string"},"Severity":{"type":"string"},"Synopsis":{"type":"string"},"UpdatedOn":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.VYAIREAdvisory":{"description":"advisory.VYAIREAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VanDyke":{"description":"advisory.VanDyke","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VapidLabsAdvisory":{"description":"advisory.VapidLabsAdvisory","properties":{"author":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"exploit":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"vapidId":{"type":"string"},"vendor":{"type":"string"},"vulnerability":{"type":"string"}},"type":"object"},"advisory.Veeam":{"description":"advisory.Veeam","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VendorNameForThreatActor":{"description":"advisory.VendorNameForThreatActor","properties":{"threat_actor_name":{"type":"string"},"url":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.VendorProduct":{"description":"advisory.VendorProduct","properties":{"product":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.VendorRef":{"description":"advisory.VendorRef","properties":{"vendor_ref":{"type":"string"},"vendor_ref_url":{"type":"string"}},"type":"object"},"advisory.Veritas":{"description":"advisory.Veritas","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VersionChange":{"description":"advisory.VersionChange","properties":{"at":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.Virtuozzo":{"description":"advisory.Virtuozzo","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VoidSec":{"description":"advisory.VoidSec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheck":{"description":"advisory.VulnCheck","properties":{"affecting":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credit":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cvss_v3_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheckCVEListV5":{"description":"advisory.VulnCheckCVEListV5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheckConfig":{"description":"advisory.VulnCheckConfig","properties":{"config":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"}},"type":"object"},"advisory.VulnCheckKEV":{"description":"advisory.VulnCheckKEV","properties":{"_timestamp":{"type":"string"},"cisa_date_added":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dueDate":{"type":"string"},"knownRansomwareCampaignUse":{"type":"string"},"product":{"type":"string"},"reported_exploited_by_vulncheck_canaries":{"type":"boolean"},"required_action":{"type":"string"},"shortDescription":{"type":"string"},"vendorProject":{"type":"string"},"vulncheck_reported_exploitation":{"items":{"$ref":"#/components/schemas/advisory.ReportedExploit"},"type":"array","uniqueItems":false},"vulncheck_xdb":{"items":{"$ref":"#/components/schemas/advisory.XDB"},"type":"array","uniqueItems":false},"vulnerabilityName":{"type":"string"}},"type":"object"},"advisory.VulnCheckPackage":{"description":"advisory.VulnCheckPackage","properties":{"arch":{"type":"string"},"distro":{"type":"string"},"filename":{"type":"string"},"md5":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.VulnerableDebianPackage":{"description":"advisory.VulnerableDebianPackage","properties":{"associated_cves":{"items":{"$ref":"#/components/schemas/advisory.DebianCVE"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package_name":{"type":"string"}},"type":"object"},"advisory.VulnerableProduct":{"description":"advisory.VulnerableProduct","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Vulnrichment":{"description":"advisory.Vulnrichment","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.VulnrichmentCVERef"},"url":{"type":"string"}},"type":"object"},"advisory.VulnrichmentCVERef":{"description":"advisory.VulnrichmentCVERef","properties":{"containers":{"$ref":"#/components/schemas/advisory.VulnrichmentContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.MCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.VulnrichmentContainers":{"description":"advisory.VulnrichmentContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADP"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.MCna"}},"type":"object"},"advisory.VulnrichmentContent":{"description":"advisory.VulnrichmentContent","properties":{"id":{"type":"string"},"options":{"items":{"$ref":"#/components/schemas/advisory.VulnrichmentOption"},"type":"array","uniqueItems":false},"role":{"type":"string"},"timestamp":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.VulnrichmentMetric":{"description":"advisory.VulnrichmentMetric","properties":{"other":{"$ref":"#/components/schemas/advisory.VulnrichmentOther"}},"type":"object"},"advisory.VulnrichmentOption":{"description":"advisory.VulnrichmentOption","properties":{"Automatable":{"type":"string"},"Exploitation":{"type":"string"},"Technical Impact":{"type":"string"}},"type":"object"},"advisory.VulnrichmentOther":{"description":"advisory.VulnrichmentOther","properties":{"content":{"$ref":"#/components/schemas/advisory.VulnrichmentContent"},"type":{"type":"string"}},"type":"object"},"advisory.WRT":{"description":"advisory.WRT","properties":{"advisory":{"type":"string"},"affectedVersions":{"type":"string"},"credits":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigations":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"requirements":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WatchGuard":{"description":"advisory.WatchGuard","properties":{"advisory_id":{"type":"string"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"resolution":{"type":"string"},"score":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WhatsApp":{"description":"advisory.WhatsApp","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Wibu":{"description":"advisory.Wibu","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Wireshark":{"description":"advisory.Wireshark","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WithSecure":{"description":"advisory.WithSecure","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WolfSSL":{"description":"advisory.WolfSSL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Wolfi":{"description":"advisory.Wolfi","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"un-used","type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.WolfiPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.WolfiPackage":{"description":"advisory.WolfiPackage","properties":{"name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.WolfiSecFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.WolfiSecFix":{"description":"advisory.WolfiSecFix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"}},"type":"object"},"advisory.Wordfence":{"description":"advisory.Wordfence","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.XDB":{"description":"advisory.XDB","properties":{"clone_ssh_url":{"type":"string"},"date_added":{"type":"string"},"exploit_type":{"type":"string"},"xdb_id":{"type":"string"},"xdb_url":{"type":"string"}},"type":"object"},"advisory.Xen":{"description":"advisory.Xen","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updatedAt":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xerox":{"description":"advisory.Xerox","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xiaomi":{"description":"advisory.Xiaomi","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"internal_id":{"type":"string"},"summary":{"type":"string"},"summary_cn":{"type":"string"},"title":{"type":"string"},"title_cn":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xylem":{"description":"advisory.Xylem","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"xsa":{"type":"string"}},"type":"object"},"advisory.Yamaha":{"description":"advisory.Yamaha","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary_ja":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.YokogawaAdvisory":{"description":"advisory.YokogawaAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"ysar_id":{"type":"string"}},"type":"object"},"advisory.Yubico":{"description":"advisory.Yubico","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZDI":{"description":"advisory.ZDI","properties":{"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"cvss_version":{"type":"string"},"discoverers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"filter_ids_dv":{"items":{"type":"string"},"type":"array","uniqueItems":false},"last_updated_at":{"type":"string"},"products":{"items":{"$ref":"#/components/schemas/advisory.ZDIProduct"},"type":"array","uniqueItems":false},"public_advisory":{"type":"string"},"published_date":{"type":"string"},"responses":{"items":{"$ref":"#/components/schemas/advisory.ZDIResponse"},"type":"array","uniqueItems":false},"title":{"type":"string"},"zdi_can":{"type":"string"},"zdi_public":{"type":"string"}},"type":"object"},"advisory.ZDIProduct":{"description":"advisory.ZDIProduct","properties":{"name":{"type":"string"},"uri":{"type":"string"},"vendor":{"$ref":"#/components/schemas/advisory.ZDIVendor"}},"type":"object"},"advisory.ZDIResponse":{"description":"advisory.ZDIResponse","properties":{"text":{"type":"string"},"uri":{"type":"string"},"vendor":{"$ref":"#/components/schemas/advisory.ZDIResponseVendor"}},"type":"object"},"advisory.ZDIResponseVendor":{"description":"advisory.ZDIResponseVendor","properties":{"name":{"type":"string"}},"type":"object"},"advisory.ZDIVendor":{"description":"advisory.ZDIVendor","properties":{"name":{"type":"string"},"uri":{"type":"string"}},"type":"object"},"advisory.Zebra":{"description":"advisory.Zebra","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZeroDayAdvisory":{"description":"advisory.ZeroDayAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"zdi":{"$ref":"#/components/schemas/advisory.ZDI"}},"type":"object"},"advisory.ZeroScienceAdvisory":{"description":"advisory.ZeroScienceAdvisory","properties":{"advisoryId":{"type":"string"},"affectedVersions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"impact":{"type":"string"},"link":{"type":"string"},"poC":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.Zimbra":{"description":"advisory.Zimbra","properties":{"bugs":{"items":{"type":"integer"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"fix":{"type":"string"},"rating":{"type":"string"},"reporter":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Zoom":{"description":"advisory.Zoom","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"zsb":{"type":"string"}},"type":"object"},"advisory.Zscaler":{"description":"advisory.Zscaler","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZuluVersion":{"description":"advisory.ZuluVersion","properties":{"jdk":{"type":"string"},"type":{"type":"string"},"zulu":{"type":"string"}},"type":"object"},"advisory.Zuso":{"description":"advisory.Zuso","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"zaid":{"type":"string"}},"type":"object"},"advisory.Zyxel":{"description":"advisory.Zyxel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.BaseMetricV2":{"description":"api.BaseMetricV2","properties":{"acInsufInfo":{"type":"boolean"},"cvssV2":{"$ref":"#/components/schemas/api.CVSSV2"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"obtainAllPrivilege":{"type":"boolean"},"obtainOtherPrivilege":{"type":"boolean"},"obtainUserPrivilege":{"type":"boolean"},"severity":{"type":"string"},"userInteractionRequired":{"type":"boolean"}},"type":"object"},"api.BaseMetricV3":{"description":"api.BaseMetricV3","properties":{"cvssV3":{"$ref":"#/components/schemas/api.CVSSV3"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"}},"type":"object"},"api.CPE":{"description":"api.CPE","properties":{"edition":{"type":"string"},"language":{"type":"string"},"other":{"type":"string"},"part":{"type":"string"},"product":{"type":"string"},"sw_edition":{"type":"string"},"target_hw":{"type":"string"},"target_sw":{"type":"string"},"update":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CPEMatch":{"description":"api.CPEMatch","properties":{"cpe22Uri":{"type":"string"},"cpe23Uri":{"type":"string"},"cpe_name":{"items":{"$ref":"#/components/schemas/api.CPEName"},"type":"array","uniqueItems":false},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"api.CPEName":{"description":"api.CPEName","properties":{"cpe22Uri":{"type":"string"},"cpe23Uri":{"type":"string"},"lastModifiedDate":{"type":"string"}},"type":"object"},"api.CVE":{"description":"api.CVE","properties":{"CVE_data_meta":{"$ref":"#/components/schemas/api.CVEDataMeta"},"data_format":{"type":"string"},"data_type":{"type":"string"},"data_version":{"type":"string"},"description":{"$ref":"#/components/schemas/api.Description"},"problemtype":{"$ref":"#/components/schemas/api.ProblemType"},"references":{"$ref":"#/components/schemas/api.References"}},"type":"object"},"api.CVEDataMeta":{"description":"api.CVEDataMeta","properties":{"ASSIGNER":{"type":"string"},"ID":{"type":"string"}},"type":"object"},"api.CVEDataMetaExtended":{"description":"api.CVEDataMetaExtended","properties":{"ALIAS":{"type":"string"},"ASSIGNER":{"type":"string"},"ID":{"type":"string"},"STATUS":{"type":"string"}},"type":"object"},"api.CVEExtended":{"description":"api.CVEExtended","properties":{"CVE_data_meta":{"$ref":"#/components/schemas/api.CVEDataMetaExtended"},"categorization":{"$ref":"#/components/schemas/api.CategorizationExtended"},"data_format":{"type":"string"},"data_type":{"type":"string"},"data_version":{"type":"string"},"description":{"$ref":"#/components/schemas/api.Description"},"problemtype":{"$ref":"#/components/schemas/api.ProblemTypeExtended"},"references":{"$ref":"#/components/schemas/api.ReferencesExtended"}},"type":"object"},"api.CVSSV2":{"description":"api.CVSSV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CVSSV3":{"description":"api.CVSSV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CWE":{"description":"api.CWE","properties":{"abstraction":{"type":"string"},"description":{"type":"string"},"kev_count":{"type":"integer"},"relationships":{"items":{"$ref":"#/components/schemas/api.CWERelationship"},"type":"array","uniqueItems":false},"status":{"type":"string"},"structure":{"type":"string"},"vulncheck_nvd_count":{"type":"integer"},"weakness_id":{"type":"string"},"weakness_name":{"type":"string"},"weighted_score":{"type":"number"}},"type":"object"},"api.CWERelationship":{"description":"api.CWERelationship","properties":{"cwe_id":{"type":"string"},"cwe_label":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.CategorizationExtended":{"description":"api.CategorizationExtended","properties":{"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.ClientFingerprints":{"description":"api.ClientFingerprints","properties":{"hassh":{"type":"string"},"ja3":{"type":"string"},"ja4":{"type":"string"}},"type":"object"},"api.Configurations":{"description":"api.Configurations","properties":{"CVE_data_version":{"type":"string"},"nodes":{"items":{"$ref":"#/components/schemas/api.Nodes"},"type":"array","uniqueItems":false}},"type":"object"},"api.CveItems":{"description":"api.CveItems","properties":{"configurations":{"$ref":"#/components/schemas/api.Configurations"},"cve":{"$ref":"#/components/schemas/api.CVE"},"impact":{"$ref":"#/components/schemas/api.Impact"},"lastModifiedDate":{"type":"string"},"publishedDate":{"type":"string"},"vcConfigurations":{"$ref":"#/components/schemas/api.Configurations"},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.CveItemsExtended":{"description":"api.CveItemsExtended","properties":{"_timestamp":{"type":"string"},"configurations":{"$ref":"#/components/schemas/api.Configurations"},"cve":{"$ref":"#/components/schemas/api.CVEExtended"},"date_added":{"type":"string"},"documentGenerationDate":{"description":"the deep tag instructs deep.Equal to ignore this field (used during OpenSearch loading)","type":"string"},"impact":{"$ref":"#/components/schemas/api.ImpactExtended"},"lastModifiedDate":{"type":"string"},"mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/api.MitreAttackTech"},"type":"array","uniqueItems":false},"publishedDate":{"type":"string"},"related_attack_patterns":{"items":{"$ref":"#/components/schemas/api.RelatedAttackPattern"},"type":"array","uniqueItems":false},"vcConfigurations":{"$ref":"#/components/schemas/api.Configurations"},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vulnerable_cpes":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.DateTime":{"description":"api.DateTime","type":"object"},"api.Description":{"description":"api.Description","properties":{"description_data":{"items":{"$ref":"#/components/schemas/api.DescriptionData"},"type":"array","uniqueItems":false}},"type":"object"},"api.DescriptionData":{"description":"api.DescriptionData","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.EPSS":{"description":"exclude EPSS from changelog","properties":{"epss_percentile":{"type":"number"},"epss_score":{"type":"number"},"last_modified":{"type":"string"}},"type":"object"},"api.EPSSData":{"description":"api.EPSSData","properties":{"_timestamp":{"type":"string"},"cve":{"type":"string"},"epss_percentile":{"type":"number"},"epss_score":{"type":"number"}},"type":"object"},"api.ExploitChain":{"description":"api.ExploitChain","properties":{"cves":{"items":{"$ref":"#/components/schemas/api.ExploitChainCVE"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.ExploitChainCVE":{"description":"api.ExploitChainCVE","properties":{"cve":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.ExploitV3Result":{"description":"api.ExploitV3Result","properties":{"_timestamp":{"description":"ignore this field when checking for differences/changes","type":"string"},"commercial_exploit_found":{"type":"boolean"},"counts":{"$ref":"#/components/schemas/api.ExploitsV3Count"},"date_added":{"type":"string"},"epss":{"$ref":"#/components/schemas/api.EPSS"},"exploits":{"items":{"$ref":"#/components/schemas/api.NormalizedExploitV3Entry"},"type":"array","uniqueItems":false},"id":{"type":"string"},"inKEV":{"type":"boolean"},"inVCKEV":{"type":"boolean"},"max_exploit_maturity":{"type":"string"},"public_exploit_found":{"type":"boolean"},"reported_exploitation":{"items":{"$ref":"#/components/schemas/api.NormalizedReportV3Entry"},"type":"array","uniqueItems":false},"reported_exploited":{"type":"boolean"},"reported_exploited_by_botnets":{"type":"boolean"},"reported_exploited_by_honeypot_service":{"type":"boolean"},"reported_exploited_by_ransomware":{"type":"boolean"},"reported_exploited_by_threat_actors":{"type":"boolean"},"reported_exploited_by_vulncheck_canaries":{"type":"boolean"},"timeline":{"$ref":"#/components/schemas/api.ExploitsV3Timeline"},"trending":{"$ref":"#/components/schemas/api.ExploitsTrending"},"weaponized_exploit_found":{"type":"boolean"}},"type":"object"},"api.ExploitsChange":{"description":"api.ExploitsChange","properties":{"change_time":{"type":"string"},"change_type":{"type":"string"},"field":{"type":"string"},"new_value":{},"old_value":{}},"type":"object"},"api.ExploitsChangelog":{"description":"api.ExploitsChangelog","properties":{"changes":{"items":{"$ref":"#/components/schemas/api.ExploitsChange"},"type":"array","uniqueItems":false},"cve":{"type":"string"}},"type":"object"},"api.ExploitsTrending":{"description":"api.ExploitsTrending","properties":{"github":{"type":"boolean"}},"type":"object"},"api.ExploitsV3Count":{"description":"api.ExploitsV3Count","properties":{"botnets":{"type":"integer"},"exploits":{"type":"integer"},"ransomware_families":{"type":"integer"},"threat_actors":{"type":"integer"}},"type":"object"},"api.ExploitsV3Timeline":{"description":"api.ExploitsV3Timeline","properties":{"cisa_kev_date_added":{"type":"string"},"cisa_kev_date_due":{"type":"string"},"first_exploit_published":{"type":"string"},"first_exploit_published_weaponized_or_higher":{"type":"string"},"first_reported_botnet":{"type":"string"},"first_reported_ransomware":{"type":"string"},"first_reported_threat_actor":{"type":"string"},"first_reported_vulncheck_canaries":{"type":"string"},"most_recent_exploit_published":{"type":"string"},"most_recent_reported_botnet":{"type":"string"},"most_recent_reported_ransomware":{"type":"string"},"most_recent_reported_threat_actor":{"type":"string"},"nvd_last_modified":{"description":"it's often the case the nvd record was updated, but in a way that is irrelevant to the contents\nof a vc exploits record.","type":"string"},"nvd_published":{"type":"string"},"vulncheck_kev_date_added":{"type":"string"},"vulncheck_kev_date_due":{"type":"string"}},"type":"object"},"api.Fingerprint":{"description":"api.Fingerprint","properties":{"cpe":{"type":"string"},"product":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.HTTPDetails":{"description":"api.HTTPDetails","properties":{"http_request_body":{"type":"string"},"http_user_agent":{"type":"string"},"method":{"type":"string"},"protocol":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.Impact":{"description":"api.Impact","properties":{"baseMetricV2":{"$ref":"#/components/schemas/api.BaseMetricV2"},"baseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"metricV40":{"$ref":"#/components/schemas/advisory.CVSSV40"}},"type":"object"},"api.ImpactExtended":{"description":"api.ImpactExtended","properties":{"baseMetricV2":{"$ref":"#/components/schemas/api.BaseMetricV2"},"baseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"correctedBaseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"epss":{"$ref":"#/components/schemas/api.EPSS"},"metricV40":{"$ref":"#/components/schemas/advisory.CVSSV40"},"ssvc":{"items":{"$ref":"#/components/schemas/api.SSVC"},"type":"array","uniqueItems":false},"temporalMetricV2":{"$ref":"#/components/schemas/api.TemporalMetricV2"},"temporalMetricV3":{"$ref":"#/components/schemas/api.TemporalMetricV3"},"temporalV3Corrected":{"$ref":"#/components/schemas/api.TemporalMetricV3"},"threatMetricV40":{"$ref":"#/components/schemas/advisory.CVSSV40Threat"}},"type":"object"},"api.InitialAccess":{"description":"api.InitialAccess","properties":{"artifacts":{"description":"Artifacts holds the set of available artifacts for this vulnerability, such as exploit, shodan queries, PCAP traces, and others.","items":{"$ref":"#/components/schemas/api.InitialAccessArtifact"},"type":"array","uniqueItems":false},"cve":{"description":"CVE identifier for the given initial access record.","type":"string"},"inKEV":{"description":"InKEV is true if this artifact is in CISA's Known Exploited Vulnerabilities (KEV) data set; otherwise, false.","type":"boolean"},"inVCKEV":{"description":"InVCKEV is true if this artifact is in VulnCheck's Known Exploited Vulnerabilities (VCKEV) data set; otherwise, false.","type":"boolean"},"vulnerable_cpes":{"description":"VulnerableCPEs is the list of vulnerable CPE strings associated with this CVE and artifact(s).","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.InitialAccessArtifact":{"description":"api.InitialAccessArtifact","properties":{"artifactName":{"description":"ArtifactName is a title to associate with this artifact.","type":"string"},"artifactsURL":{"description":"ArtifactsURL are URLs to the available artifact.","items":{"type":"string"},"type":"array","uniqueItems":false},"baiduQueries":{"description":"...","items":{"type":"string"},"type":"array","uniqueItems":false},"baiduRawQueries":{"description":"...","items":{"type":"string"},"type":"array","uniqueItems":false},"censysLegacyQueries":{"description":"CensysLegacyQueries are legacy queries for examining potential Internet-exposed devices \u0026 applications with Censys in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysLegacyRawQueries":{"description":"CensysLegacyRawQueries are raw legacy queries for examining potential Internet-exposed devices \u0026 applications with Censys.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysQueries":{"description":"CensysQueries are queries for examining potential Internet-exposed devices \u0026 applications with Censys in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysRawQueries":{"description":"CensysRawQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with Censys.","items":{"type":"string"},"type":"array","uniqueItems":false},"chain":{"description":"Chain can represent the chain of exploitation.","items":{"type":"string"},"type":"array","uniqueItems":false},"cloneSSHURL":{"description":"CloneSSHURL is the git URL to clone the artifact with.","type":"string"},"dateAdded":{"description":"DateAdded is when this artifact entry was first added to the InitialAccess data set.","type":"string"},"driftnetQueries":{"description":"DriftnetQueries are queries for examining Internet exposed services with Driftnet.","items":{"type":"string"},"type":"array","uniqueItems":false},"driftnetRawQueries":{"description":"DriftnetRawQueries are queries for examining Internet exposed services with Driftnet.","items":{"type":"string"},"type":"array","uniqueItems":false},"exploit":{"description":"Exploit indicates whether or not an exploit is available in this artifact.","type":"boolean"},"fofaQueries":{"description":"FOFAQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with FOFA.","items":{"type":"string"},"type":"array","uniqueItems":false},"fofaRawQueries":{"items":{"type":"string"},"type":"array","uniqueItems":false},"googleQueries":{"description":"google queries","items":{"type":"string"},"type":"array","uniqueItems":false},"googleRawQueries":{"description":"raw google queries","items":{"type":"string"},"type":"array","uniqueItems":false},"greynoiseQueries":{"description":"GreynoiseQueries are queries for finding the vulnerability via honeypot data.","items":{"type":"string"},"type":"array","uniqueItems":false},"mitreAttackTechniques":{"description":"MITRE ATT\u0026CK techniques","items":{"type":"string"},"type":"array","uniqueItems":false},"nmapScript":{"description":"NmapScript indicates whether or not an nmap script for scanning environment exists in this artifact.","type":"boolean"},"pcap":{"description":"PCAP indicates whether of not a package capture of the exploit PoC exploiting a vulnerable system exists in this artifact.","type":"boolean"},"product":{"description":"Product are the software that has the vulnerability.","items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"description":"Related is a set of related cves.","items":{"type":"string"},"type":"array","uniqueItems":false},"shodanQueries":{"description":"ShodanQueries are queries for examining potential Internet-exposed devices \u0026 applications with Shodan in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"shodanRawQueries":{"description":"ShodanRawQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with Shodan.","items":{"type":"string"},"type":"array","uniqueItems":false},"sigmaRule":{"description":"SigmaRule indicates whether or not a Sigma rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"snortRule":{"description":"SnortRule indicates whether or not a Snort rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"suricataRule":{"description":"SuricataRule indicates whether or not a Suricata rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"targetDocker":{"description":"TargetDocker indicates whether or not there is an available docker image with the vulnerability.","type":"boolean"},"targetEncryptedComms":{"description":"Encrypted communications?","type":"string"},"targetService":{"description":"TargetService indicates the service (HTTP, FTP, etc) that this exploit targets.","type":"string"},"vendor":{"description":"Vendor of the vulnerable product","type":"string"},"versionScanner":{"description":"VersionScanner indicates whether or not the exploit PoC can determine if target system is vulnerable without sending exploit payload in this artifact.","type":"boolean"},"yara":{"description":"YARA indicates whether or not a YARA rule designed to detect the exploit on an endpoint exists in this artifact.","type":"boolean"},"zeroday":{"description":"Zeroday indicates whether or not it is a VulnCheck zeroday.","type":"boolean"},"zoomEyeQueries":{"description":"ZoomEyeQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with ZoomEye.","items":{"type":"string"},"type":"array","uniqueItems":false},"zoomEyeRawQueries":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.MitreAttackTech":{"description":"api.MitreAttackTech","properties":{"d3fendmapping":{"items":{"$ref":"#/components/schemas/api.MitreMitigation2D3fendMapping"},"type":"array","uniqueItems":false},"detections":{"items":{"$ref":"#/components/schemas/api.MitreDetectionTech"},"type":"array","uniqueItems":false},"domain":{"type":"string"},"id":{"type":"string"},"mitigations":{"items":{"$ref":"#/components/schemas/api.MitreMitigationTech"},"type":"array","uniqueItems":false},"name":{"type":"string"},"subtechnique":{"type":"boolean"},"tactics":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.MitreAttackToCVE":{"description":"api.MitreAttackToCVE","properties":{"cve_list":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"technique_id":{"$ref":"#/components/schemas/api.MitreAttackTech"}},"type":"object"},"api.MitreD3fendTechnique":{"description":"api.MitreD3fendTechnique","properties":{"id":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.MitreDetectionTech":{"description":"api.MitreDetectionTech","properties":{"datacomponent":{"type":"string"},"datasource":{"type":"string"},"detects":{"type":"string"},"id":{"type":"string"}},"type":"object"},"api.MitreMitigation2D3fendMapping":{"description":"api.MitreMitigation2D3fendMapping","properties":{"d3fendtechniques":{"items":{"$ref":"#/components/schemas/api.MitreD3fendTechnique"},"type":"array","uniqueItems":false},"id":{"type":"string"}},"type":"object"},"api.MitreMitigationTech":{"description":"api.MitreMitigationTech","properties":{"description":{"type":"string"},"id":{"type":"string"},"mitigation_url":{"type":"string"}},"type":"object"},"api.NVD20CPEMatch":{"description":"api.NVD20CPEMatch","properties":{"cpeLastModified":{"type":"string"},"created":{"type":"string"},"criteria":{"type":"string"},"lastModified":{"type":"string"},"matchCriteriaId":{"type":"string"},"matches":{"items":{"$ref":"#/components/schemas/api.NVD20CPEName"},"type":"array","uniqueItems":false},"status":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"}},"type":"object"},"api.NVD20CPEName":{"description":"api.NVD20CPEName","properties":{"cpeName":{"type":"string"},"cpeNameId":{"type":"string"}},"type":"object"},"api.NVD20CVE":{"description":"api.NVD20CVE","properties":{"cisaActionDue":{"type":"string"},"cisaExploitAdd":{"type":"string"},"cisaRequiredAction":{"type":"string"},"cisaVulnerabilityName":{"type":"string"},"configurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"descriptions":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"evaluatorComment":{"type":"string"},"evaluatorImpact":{"type":"string"},"evaluatorSolution":{"type":"string"},"id":{"type":"string"},"lastModified":{"type":"string"},"metrics":{"$ref":"#/components/schemas/api.NVD20Metric"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/api.NVD20Reference"},"type":"array","uniqueItems":false},"sourceIdentifier":{"type":"string"},"vcConfigurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vendorComments":{"items":{"$ref":"#/components/schemas/api.NVD20VendorComment"},"type":"array","uniqueItems":false},"vulnStatus":{"type":"string"},"weaknesses":{"items":{"$ref":"#/components/schemas/api.NVD20Weakness"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20CVEExtended":{"description":"api.NVD20CVEExtended","properties":{"ALIAS":{"type":"string"},"STATUS":{"type":"string"},"_timestamp":{"description":"the deep tag instructs deep.Equal to ignore this field (used during OpenSearch loading)","type":"string"},"categorization":{"$ref":"#/components/schemas/api.CategorizationExtended"},"cisaActionDue":{"type":"string"},"cisaExploitAdd":{"type":"string"},"cisaRequiredAction":{"type":"string"},"cisaVulnerabilityName":{"type":"string"},"configurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"documentGenerationDate":{"type":"string"},"evaluatorComment":{"type":"string"},"evaluatorImpact":{"type":"string"},"evaluatorSolution":{"type":"string"},"id":{"type":"string"},"lastModified":{"type":"string"},"metrics":{"$ref":"#/components/schemas/api.NVD20MetricExtended"},"mitreAttackTechniques":{"items":{"$ref":"#/components/schemas/api.MitreAttackTech"},"type":"array","uniqueItems":false},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/api.NVD20ReferenceExtended"},"type":"array","uniqueItems":false},"relatedAttackPatterns":{"items":{"$ref":"#/components/schemas/api.RelatedAttackPattern"},"type":"array","uniqueItems":false},"sourceIdentifier":{"type":"string"},"vcConfigurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vendorComments":{"items":{"$ref":"#/components/schemas/api.NVD20VendorComment"},"type":"array","uniqueItems":false},"vulnStatus":{"type":"string"},"vulncheckKEVExploitAdd":{"type":"string"},"vulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"weaknesses":{"items":{"$ref":"#/components/schemas/api.NVD20WeaknessExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20CvssDataV2":{"description":"api.NVD20CvssDataV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"collateralDamagePotential":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"exploitability":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"targetDistribution":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20CvssDataV3":{"description":"api.NVD20CvssDataV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"environmentalSeverity":{"type":"string"},"exploitCodeMaturity":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"modifiedAttackComplexity":{"type":"string"},"modifiedAttackVector":{"type":"string"},"modifiedAvailabilityImpact":{"type":"string"},"modifiedConfidentialityImpact":{"type":"string"},"modifiedIntegrityImpact":{"type":"string"},"modifiedPrivilegesRequired":{"type":"string"},"modifiedScope":{"type":"string"},"modifiedUserInteraction":{"type":"string"},"privilegesRequired":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"scope":{"type":"string"},"temporalScore":{"type":"number"},"temporalSeverity":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20CvssMetricV2":{"description":"api.NVD20CvssMetricV2","properties":{"acInsufInfo":{"type":"boolean"},"baseSeverity":{"type":"string"},"cvssData":{"$ref":"#/components/schemas/api.NVD20CvssDataV2"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"obtainAllPrivilege":{"type":"boolean"},"obtainOtherPrivilege":{"type":"boolean"},"obtainUserPrivilege":{"type":"boolean"},"source":{"type":"string"},"type":{"type":"string"},"userInteractionRequired":{"type":"boolean"}},"type":"object"},"api.NVD20CvssMetricV3":{"description":"api.NVD20CvssMetricV3","properties":{"cvssData":{"$ref":"#/components/schemas/api.NVD20CvssDataV3"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20CvssMetricV40":{"description":"api.NVD20CvssMetricV40","properties":{"cvssData":{"$ref":"#/components/schemas/advisory.CVSSV40"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20Description":{"description":"api.NVD20Description","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.NVD20Metric":{"description":"api.NVD20Metric","properties":{"cvssMetricV2":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV2"},"type":"array","uniqueItems":false},"cvssMetricV30":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV31":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV40":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV40"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20MetricExtended":{"description":"api.NVD20MetricExtended","properties":{"cvssMetricV2":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV2"},"type":"array","uniqueItems":false},"cvssMetricV30":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV31":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV40":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV40"},"type":"array","uniqueItems":false},"epss":{"$ref":"#/components/schemas/api.EPSS"},"ssvc":{"items":{"$ref":"#/components/schemas/api.SSVC"},"type":"array","uniqueItems":false},"temporalCVSSV2":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV2"},"temporalCVSSV2Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV2"},"type":"array","uniqueItems":false},"temporalCVSSV30":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"temporalCVSSV30Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"type":"array","uniqueItems":false},"temporalCVSSV31":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"temporalCVSSV31Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"type":"array","uniqueItems":false},"threatCVSSV40":{"$ref":"#/components/schemas/api.NVD20ThreatCVSSV40"},"threatCVSSV40Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20ThreatCVSSV40"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20Reference":{"description":"api.NVD20Reference","properties":{"source":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.NVD20ReferenceExtended":{"description":"api.NVD20ReferenceExtended","properties":{"date_added":{"type":"string"},"external_id":{"type":"string"},"lang":{"type":"string"},"name":{"type":"string"},"previous_url":{"type":"string"},"refsource":{"type":"string"},"source":{"type":"string"},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.NVD20TemporalAssociatedBaseMetric":{"description":"api.NVD20TemporalAssociatedBaseMetric","properties":{"baseScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20TemporalCVSSV2":{"description":"api.NVD20TemporalCVSSV2","properties":{"associatedBaseMetricV2":{"$ref":"#/components/schemas/api.NVD20TemporalAssociatedBaseMetric"},"exploitability":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20TemporalCVSSV3":{"description":"api.NVD20TemporalCVSSV3","properties":{"associatedBaseMetricV3":{"$ref":"#/components/schemas/api.NVD20TemporalAssociatedBaseMetric"},"exploitCodeMaturity":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20ThreatAssociatedBaseMetric":{"description":"api.NVD20ThreatAssociatedBaseMetric","properties":{"baseScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20ThreatCVSSV40":{"description":"api.NVD20ThreatCVSSV40","properties":{"associatedBaseMetricV40":{"$ref":"#/components/schemas/api.NVD20ThreatAssociatedBaseMetric"},"baseThreatScore":{"type":"number"},"baseThreatSeverity":{"type":"string"},"exploitMaturity":{"type":"string"}},"type":"object"},"api.NVD20VendorComment":{"description":"api.NVD20VendorComment","properties":{"comment":{"type":"string"},"lastModified":{"type":"string"},"organization":{"type":"string"}},"type":"object"},"api.NVD20Weakness":{"description":"api.NVD20Weakness","properties":{"description":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20WeaknessDescExtended":{"description":"api.NVD20WeaknessDescExtended","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.NVD20WeaknessExtended":{"description":"api.NVD20WeaknessExtended","properties":{"description":{"items":{"$ref":"#/components/schemas/api.NVD20WeaknessDescExtended"},"type":"array","uniqueItems":false},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.Nodes":{"description":"api.Nodes","properties":{"children":{"items":{"$ref":"#/components/schemas/api.Nodes"},"type":"array","uniqueItems":false},"cpe_match":{"items":{"$ref":"#/components/schemas/api.CPEMatch"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"api.NormalizedExploitV3Entry":{"description":"api.NormalizedExploitV3Entry","properties":{"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"date_added":{"type":"string"},"exploit_availability":{"type":"string"},"exploit_maturity":{"type":"string"},"exploit_type":{"type":"string"},"name":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_id":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.NormalizedReportV3Entry":{"description":"api.NormalizedReportV3Entry","properties":{"date_added":{"type":"string"},"name":{"type":"string"},"refsource":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.OSSPackage":{"description":"api.OSSPackage","properties":{"artifacts":{"$ref":"#/components/schemas/api.OSSPackageArtifacts"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"licenses":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"published_date":{"type":"string"},"purl":{"items":{"type":"string"},"type":"array","uniqueItems":false},"research_attributes":{"$ref":"#/components/schemas/api.OSSPackageResearchAttributes"},"version":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"api.OSSPackageArtifacts":{"description":"api.OSSPackageArtifacts","properties":{"binary":{"items":{"$ref":"#/components/schemas/api.OSSPackageDownloadInfo"},"type":"array","uniqueItems":false},"source":{"items":{"$ref":"#/components/schemas/api.OSSPackageDownloadInfo"},"type":"array","uniqueItems":false}},"type":"object"},"api.OSSPackageDownloadInfo":{"description":"api.OSSPackageDownloadInfo","properties":{"hashes":{"items":{"$ref":"#/components/schemas/api.OSSPackageHashInfo"},"type":"array","uniqueItems":false},"reference":{"type":"string"},"type":{"description":"See OSSPackageDownloadInfoType* consts","type":"string"},"url":{"type":"string"}},"type":"object"},"api.OSSPackageHashInfo":{"description":"api.OSSPackageHashInfo","properties":{"algorithm":{"description":"See OSSPackageHashInfoAlgo* consts","type":"string"},"type":{"description":"See OSSPackageHashInfoType* consts","type":"string"},"value":{"description":"hex string digest or link to hash","type":"string"}},"type":"object"},"api.OSSPackageResearchAttributes":{"description":"api.OSSPackageResearchAttributes","properties":{"abandoned":{"type":"boolean"},"eol":{"type":"boolean"},"is_malicious":{"type":"boolean"},"malicious_source":{"type":"string"},"repo_hijackable":{"type":"boolean"},"squatted_package":{"type":"string"}},"type":"object"},"api.OSSPackageVulnerability":{"description":"api.OSSPackageVulnerability","properties":{"detection":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"api.Package":{"description":"api.Package","properties":{"filename":{"type":"string"},"name":{"description":"sort","type":"string"},"release":{"type":"string"},"src":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.ProblemType":{"description":"api.ProblemType","properties":{"problemtype_data":{"items":{"$ref":"#/components/schemas/api.ProblemTypeData"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeData":{"description":"api.ProblemTypeData","properties":{"description":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDescription"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeDataExtended":{"description":"api.ProblemTypeDataExtended","properties":{"description":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDescriptionExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeDescription":{"description":"api.ProblemTypeDescription","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.ProblemTypeDescriptionExtended":{"description":"api.ProblemTypeDescriptionExtended","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.ProblemTypeExtended":{"description":"api.ProblemTypeExtended","properties":{"problemtype_data":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDataExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.Reference":{"description":"api.Reference","properties":{"href":{"description":"sort","type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.ReferenceData":{"description":"api.ReferenceData","properties":{"name":{"type":"string"},"refsource":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.ReferenceDataExtended":{"description":"api.ReferenceDataExtended","properties":{"date_added":{"type":"string"},"external_id":{"type":"string"},"lang":{"type":"string"},"name":{"type":"string"},"previous_url":{"type":"string"},"refsource":{"type":"string"},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.References":{"description":"api.References","properties":{"reference_data":{"items":{"$ref":"#/components/schemas/api.ReferenceData"},"type":"array","uniqueItems":false}},"type":"object"},"api.ReferencesExtended":{"description":"api.ReferencesExtended","properties":{"reference_data":{"description":"ExploitData []NormalizedExploit `json:\"exploit_data,omitempty\"`\n\t\tThreatActorData []ThreatActorExtended `json:\"threat_actor_data,omitempty\"`\n\t\tRansomwareData []RansomwareReferenceData `json:\"ransomware_data,omitempty\"`\n\t\tAdvisoryData []AdvisoryExtended `json:\"advisory_data,omitempty\"`\n\t\tIdentifierData []IdentifierExtended `json:\"identifier_data,omitempty\"`","items":{"$ref":"#/components/schemas/api.ReferenceDataExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.RelatedAttackPattern":{"description":"api.RelatedAttackPattern","properties":{"capec_id":{"type":"string"},"capec_name":{"type":"string"},"capec_url":{"type":"string"},"lang":{"type":"string"}},"type":"object"},"api.SSVC":{"description":"api.SSVC","properties":{"automatable":{"type":"string"},"exploitation":{"type":"string"},"source":{"type":"string"},"technicalImpact":{"type":"string"}},"type":"object"},"api.TargetIntel":{"description":"api.TargetIntel","properties":{"as_domain":{"type":"string"},"as_name":{"type":"string"},"asn":{"type":"string"},"classifications":{"items":{"type":"string"},"type":"array","uniqueItems":false},"contains_cve":{"type":"boolean"},"country":{"type":"string"},"country_code":{"type":"string"},"cpe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fingerprints":{"items":{"$ref":"#/components/schemas/api.Fingerprint"},"type":"array","uniqueItems":false},"hostname":{"type":"string"},"ip":{"type":"string"},"metadata":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"port":{"type":"integer"},"product":{"items":{"type":"string"},"type":"array","uniqueItems":false},"protocol":{"type":"string"},"timestamp":{"type":"string"},"vendor":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.TargetIntelCVESummary":{"description":"api.TargetIntelCVESummary","properties":{"_timestamp":{"type":"string"},"asns":{"items":{"properties":{"count":{"type":"integer"},"value":{"type":"string"}},"type":"object"},"type":"array","uniqueItems":false},"country_codes":{"items":{"properties":{"count":{"type":"integer"},"value":{"type":"string"}},"type":"object"},"type":"array","uniqueItems":false},"cve":{"type":"string"},"ports":{"items":{"properties":{"count":{"type":"integer"},"value":{"type":"integer"}},"type":"object"},"type":"array","uniqueItems":false},"vendors":{"items":{"properties":{"count":{"type":"integer"},"value":{"type":"string"}},"type":"object"},"type":"array","uniqueItems":false}},"type":"object"},"api.TemporalCVSSV2":{"description":"api.TemporalCVSSV2","properties":{"exploitability":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.TemporalCVSSV3":{"description":"api.TemporalCVSSV3","properties":{"exploitCodeMaturity":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.TemporalMetricV2":{"description":"api.TemporalMetricV2","properties":{"cvssV2":{"$ref":"#/components/schemas/api.TemporalCVSSV2"}},"type":"object"},"api.TemporalMetricV3":{"description":"api.TemporalMetricV3","properties":{"cvssV3":{"$ref":"#/components/schemas/api.TemporalCVSSV3"}},"type":"object"},"api.Update":{"description":"api.Update","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"description":"sort // key","type":"string"},"issued":{"$ref":"#/components/schemas/api.DateTime"},"os_arch":{"type":"string"},"os_version":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/api.Package"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/api.Reference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"updated":{"$ref":"#/components/schemas/api.DateTime"}},"type":"object"},"api.VulnCheckCanary":{"description":"api.VulnCheckCanary","properties":{"category":{"type":"string"},"client_fingerprints":{"$ref":"#/components/schemas/api.ClientFingerprints"},"cve":{"type":"string"},"dst_country":{"type":"string"},"http":{"$ref":"#/components/schemas/api.HTTPDetails"},"payload":{"type":"string"},"severity":{"type":"integer"},"signature":{"type":"string"},"signature_id":{"type":"integer"},"src_as_domain":{"type":"string"},"src_as_name":{"type":"string"},"src_asn":{"type":"string"},"src_country":{"type":"string"},"src_ip":{"type":"string"},"src_port":{"type":"integer"},"timestamp":{"type":"string"}},"type":"object"},"api.VulnerabilityAlias":{"description":"api.VulnerabilityAlias","properties":{"alias":{"type":"string"},"cve":{"type":"string"},"reference_url":{"type":"string"}},"type":"object"},"backup.BackupResponse":{"description":"backup.BackupResponse","properties":{"available":{"type":"boolean"},"feed":{"type":"string"},"sha256":{"type":"string"},"url_ap-southeast-2":{"type":"string"},"url_eu-west-2":{"type":"string"},"url_expires":{"type":"string"},"url_mrap":{"type":"string"},"url_ttl_minutes":{"type":"integer"},"url_us-east-1":{"type":"string"}},"type":"object"},"backup.FeedItem":{"description":"backup.FeedItem","properties":{"available":{"type":"boolean"},"backup_written_at":{"type":"string"},"href":{"type":"string"},"name":{"type":"string"}},"type":"object"},"backup.ListBackupsResponse":{"description":"backup.ListBackupsResponse","properties":{"data":{"items":{"$ref":"#/components/schemas/backup.FeedItem"},"type":"array","uniqueItems":false}},"type":"object"},"index.CveSearchHit":{"description":"index.CveSearchHit","properties":{"id":{"description":"ID is the unique document identifier within the index.","type":"string"},"index":{"description":"Index is the name of the index where this document was found.","type":"string"},"score":{"description":"Score is the relevance score from OpenSearch (higher = more relevant).","type":"number"},"source":{"description":"Source is the full document content. Structure varies by index.","type":"object"}},"type":"object"},"index.CveSearchMeta":{"description":"Meta is the metadata related to the endpoint response","properties":{"current_count":{"description":"CurrentCount is the number of documents returned in this response.","type":"integer"},"cve":{"description":"CVE is the CVE identifier that was searched for.","type":"string"},"indices_with_hits":{"description":"IndicesWithHits is the number of indices that contained at least one match.","type":"integer"},"limit":{"description":"Limit is the maximum number of results requested per page.","type":"integer"},"next_cursor":{"description":"NextCursor is the cursor for fetching the next page of results.\nEmpty if there are no more results (current_count \u003c limit).","type":"string"},"page":{"description":"Page is the current page number (only set in page-based pagination mode).","type":"integer"},"queried_index_count":{"description":"QueriedIndexCount is the number of indices that were searched.","type":"integer"},"timestamp":{"description":"Timestamp is the UTC time when the search was executed.","type":"string"},"top_index_counts":{"description":"TopIndexCounts contains the top indices by document count (up to 10).","items":{"$ref":"#/components/schemas/index.IndexCountEntry"},"type":"array","uniqueItems":false},"total_count":{"description":"TotalCount is the total number of matching documents across all queried indices.","type":"integer"},"total_pages":{"description":"TotalPages is the total number of pages (only set in page-based pagination mode).","type":"integer"}},"type":"object"},"index.IndexCountEntry":{"description":"index.IndexCountEntry","properties":{"doc_count":{"description":"DocCount is the number of matching documents in this index.","type":"integer"},"index":{"description":"Index is the name of the index.","type":"string"}},"type":"object"},"models.Entitlements":{"description":"models.Entitlements","properties":{"entitlements":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Entitlements provides a map of roles to a list of entitlements","type":"object"}},"type":"object"},"paginate.Match":{"description":"paginate.Match","properties":{"field":{"description":"Field is the name of the field being filtered on.","type":"string"},"value":{"description":"Value is the filter value being applied to the field.","type":"string"}},"type":"object"},"paginate.Pagination":{"description":"Meta is the metadata related to the endpoint response","properties":{"cursor":{"description":"Cursor is an opaque string representing the current page position for cursor-based pagination.\nContains encoded information about sort values and position markers.\nUse this value with the 'cursor' query parameter to resume pagination from this point.","type":"string"},"first_item":{"description":"FirstItem is the 1-indexed position of the first item on the current page.\nExample: Page 1 with limit 100 → FirstItem = 1\n Page 2 with limit 100 → FirstItem = 101","type":"integer"},"index":{"description":"Index name being queried, corresponding to the VulnCheck data feed.\nExamples: \"exploits\", \"vulncheck-nvd2\", \"ipintel-3d\", \"malicious-vscode-exts\"","type":"string"},"last_item":{"description":"LastItem is the 1-indexed position of the last item on the current page.\nAccounts for partial pages. Example: Page with 50 items → LastItem = FirstItem + 49\nOn the final page, LastItem equals TotalRows.","type":"integer"},"limit":{"description":"Limit is the maximum number of items returned in this response.\nRange: 1-100 for standard indices, 1-10 for large indices.\nDefault: 100 (or 10 for indices marked as \"large\" in metadata)","type":"integer"},"matches":{"description":"Matches shows the active filter values applied to the current query.\nEach match includes the field name and the value being filtered on.\nHelps users understand which filters are currently active.","items":{"$ref":"#/components/schemas/paginate.Match"},"type":"array","uniqueItems":false},"max_pages":{"description":"MaxPages is the maximum number of pages allowed for offset-based pagination.\nPerformance limit to prevent expensive deep pagination. Default: 6 pages.\nWhen TotalPages \u003e MaxPages, cursor-based pagination should be used instead.","type":"integer"},"next_cursor":{"description":"NextCursor is an opaque string for fetching the next page in cursor-based pagination.\nWhen empty or null, indicates no more pages are available.\nMore efficient than offset pagination for large datasets and real-time data.","type":"string"},"opensearch_query":{"description":"OSQuery contains the raw OpenSearch query JSON used internally.\nOnly included when show_query=true parameter is set.\nUseful for debugging complex queries and understanding performance.","type":"object"},"order":{"description":"Order specifies the sort direction: \"asc\" (ascending) or \"desc\" (descending).\nDefault: \"desc\" for most time-based indices to show newest items first.","type":"string"},"page":{"description":"Page is the current page number for offset-based pagination (1-indexed).\nFirst page = 1, second page = 2, etc. Used with Limit to calculate database offset.\nFor cursor-based pagination, this field may be omitted or estimated.","type":"integer"},"pages":{"description":"Pages contains page numbers to display in pagination UI (e.g., [1, 2, \"...\", 45]).\nOnly populated when ShowPages=true. Includes ellipsis (\"...\") for gaps.\nLimited by MaxPages to prevent overwhelming UI with too many page links.","items":{"type":"string"},"type":"array","uniqueItems":false},"parameters":{"description":"Params describes available query parameters for this index.\nEach parameter includes name, format constraints, and filtering capabilities.\nUsed for building dynamic query UIs and input validation.","items":{"$ref":"#/components/schemas/paginate.Param"},"type":"array","uniqueItems":false},"show_pages":{"description":"ShowPages controls whether the Pages array should be calculated and included.\nSet to true for UI pagination controls, false for API-only usage to save processing.","type":"boolean"},"show_query":{"description":"ShowQuery indicates whether the raw OpenSearch query should be included.\nWhen true, OSQuery field will be populated with the internal query structure.","type":"boolean"},"sort":{"description":"Sort field used for ordering results. Available fields vary by index.\nCommon values: \"_timestamp\", \"date_added\", \"_id\", \"lastSeen\"\nAffects cursor generation and ensures pagination consistency.","type":"string"},"timestamp":{"description":"Timestamp when the query was executed in UTC (ISO 8601 format).\nUsed for debugging, cache management, and determining data freshness.\nExample: \"2024-02-23T20:35:43.732591251Z\"","type":"string"},"total_documents":{"description":"TotalRows is the total number of documents matching the query across all pages.\nUsed for calculating total_pages and building pagination UI elements.\nNote: May be capped for performance on very large result sets.","type":"integer"},"total_pages":{"description":"TotalPages is the total number of pages based on TotalRows and Limit.\nCalculated as: ceil(TotalRows / Limit). Used for pagination UI and validation.\nExample: 1000 items with limit 100 = 10 total pages.","type":"integer"},"warnings":{"description":"Warnings contains any non-fatal issues encountered during query processing.\nExamples: deprecated parameters, performance concerns, or data quality notes.","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"paginate.Param":{"description":"paginate.Param","properties":{"filtering":{"description":"Filtering indicates the type of filtering this parameter supports.\nExamples: \"exact\", \"range\", \"wildcard\", \"boolean\"","type":"string"},"format":{"description":"Format describes the expected parameter format or pattern.\nExamples: \"CVE-YYYY-N{4-7}\", \"YYYY-MM-DD\", \"numeric\"","type":"string"},"name":{"description":"Name is the query parameter name (e.g., \"cve\", \"date\", \"limit\").","type":"string"}},"type":"object"},"params.IndexBackup":{"description":"params.IndexBackup","properties":{"date_added":{"type":"string"},"filename":{"type":"string"},"sha256":{"type":"string"},"url":{"type":"string"},"url_ap-southeast-2":{"type":"string"},"url_eu-west-2":{"type":"string"},"url_expires":{"type":"string"},"url_il-central-1":{"type":"string"},"url_me-central-1":{"type":"string"},"url_mrap":{"type":"string"},"url_ttl_minutes":{"type":"integer"},"url_us-east-1":{"type":"string"},"url_us-west-2":{"type":"string"}},"type":"object"},"params.IndexBackupList":{"description":"params.IndexBackupList","properties":{"description":{"type":"string"},"href":{"description":"Href API endpoint URI to detailed backup information","type":"string"},"name":{"type":"string"}},"type":"object"},"params.IndexList":{"description":"params.IndexList","properties":{"description":{"type":"string"},"href":{"description":"Href API endpoint URI to detailed index information","type":"string"},"name":{"type":"string"}},"type":"object"},"purl.BatchVulnFinding":{"description":"purl.BatchVulnFinding","properties":{"cves":{"description":"list of associated CVE 's","items":{"type":"string"},"type":"array","uniqueItems":false},"purl":{"description":"the purl, ex. hex/coherence@0.1.2","type":"string"},"purl_struct":{"$ref":"#/components/schemas/purl.PackageURLJSON"},"research_attributes":{"$ref":"#/components/schemas/api.OSSPackageResearchAttributes"},"vulnerabilities":{"description":"list of associated vulnerabilities","items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"purl.PackageURLJSON":{"description":"meta-data about the purl","properties":{"name":{"type":"string"},"namespace":{"type":"string"},"qualifiers":{"items":{"$ref":"#/components/schemas/purl.QualifierJSON"},"type":"array","uniqueItems":false},"subpath":{"type":"string"},"type":{"type":"string"},"version":{"type":"string"}},"type":"object"},"purl.QualifierJSON":{"description":"purl.QualifierJSON","properties":{"key":{"type":"string"},"value":{"type":"string"}},"type":"object"},"purls.Artifact":{"description":"purls.Artifact","type":"object"},"purls.PurlResponse":{"description":"purls.PurlResponse","properties":{"artifacts":{"$ref":"#/components/schemas/purls.Artifact"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"licenses":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"published_date":{"type":"string"},"purl":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/purls.Vulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"purls.Vulnerability":{"description":"purls.Vulnerability","properties":{"arch":{"type":"string"},"detection":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"render.Response-array_params_IndexBackupList":{"description":"render.Response-array_params_IndexBackupList","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/params.IndexBackupList"},"type":"array","uniqueItems":false}},"type":"object"},"render.Response-array_params_IndexList":{"description":"render.Response-array_params_IndexList","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/params.IndexList"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.A10"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ABBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AIX"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AMD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AMI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ASRG"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AVEVAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AVIDMLAdvs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AWS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Abbott"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Absolute"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Acronis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AdobeAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Advantech"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Advisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AdvisoryRecord"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AlephResearch"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Alibaba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AlmaLinuxUpdate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AmazonCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AnchoreNVDOverride"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AndroidAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheActiveMQ"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheArchiva"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheArrow"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheCamel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheCommons"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheCouchDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheFlink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheGuacamole"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheHTTP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheHadoop"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheJSPWiki"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheKafka"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheLoggingServices"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheNiFi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheOFBiz"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheOpenMeetings"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheOpenOffice"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApachePulsar"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheShiro"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheSpark"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheStruts"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheSubversion"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheSuperset"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheTomcat"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheZooKeeper"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AppCheck"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Appgate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AppleAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ArchIssue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Arista"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Aruba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AssetNote"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Asterisk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Astra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Asus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AtlassianAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AtlassianVuln"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Atredis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Audiocodes"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AusCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AustinHackersAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AustinHackersAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AustinHackersAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Autodesk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Avaya"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Avigilon"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Axis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Azul"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BBraunAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BDUAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Bandr"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BaxterAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BeckhoffAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BeckmanCoulter"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BectonDickinsonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BeldenAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BeyondTrust"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Binarly"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BitDefender"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BlackBerry"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BoschAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BostonScientificAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Botnet"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CACyberCentreAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CBLMariner"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CERTEUAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CESA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CISAAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CNNVDEntryJSON"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CNVDBulletin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CNVDFlaw"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CVEIdentityMappings-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CVEIdentityMappings-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CVEIdentityMappings"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CanvasExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CarestreamAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Carrier"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertBE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertFRAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertIN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertIRSecurityAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertSE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertUA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ChainGuard"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CheckPoint"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Chrome"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Ciena"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CirclAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CirclAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CirclAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CisaCsafAdv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CiscoAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CiscoCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CiscoKnownGoodValue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CitrixAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ClarotyVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CloudAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CloudBees"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CloudVulnDBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CodesysAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CommVault"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CompassSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ContainerOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CoreImpactExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Crestron"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CrowdSec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Curl"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Cvrf"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DFNCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DNN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Dahua"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Danfoss"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Dassault"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DebianSecurityAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Dell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DeltaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DistroPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Django"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DotCMS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DraegerAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DraegerAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DraegerAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DragosAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Draytek"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Drupal"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EOLAlibaba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EOLMicrosoft"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EOLReleaseData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EUVD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EatonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Elastic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Elspec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EmergingThreatsSnort"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EmersonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EndOfLife"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Endress"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ExodusIntel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ExploitDBExploitv2"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.F5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FSecure"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Fanuc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Fastly"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Festo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FileCloud"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FileZilla"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FlattSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ForgeRock"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FortinetAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FortinetIPS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Foxit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Fresenius"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GCP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GEGas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GEHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GHAdvisoryJSONLean"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GHSA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GMOCyberSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Gallagher"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Gen"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GenericEOL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Genetec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Gigabyte"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GitHubExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GitLabExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GiteeExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GitlabAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Glibc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GnuTLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GoVulnJSON"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Grafana"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GreyNoiseDetection"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HCL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HIKVision"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HKCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HMS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HPE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Hacktivity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HarmonyOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HashiCorp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HaskellSADBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HillromAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Hitachi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HitachiEnergy"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Honeywell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Huawei"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HuaweiEulerOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HuaweiIPS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IAVA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IBM"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IOCBotnetAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IOCBotnetAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IOCBotnetAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IOCRansomwareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IOCRansomwareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IOCRansomwareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IOCThreatActorAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IOCThreatActorAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IOCThreatActorAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ITWExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Idemia"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Igel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IncibeAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Intel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IpIntelRecord"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IsraeliAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IsraeliVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Istio"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Ivanti"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IvantiRSS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JFrog"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JNJAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JVN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JVNAdvisoryItem"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Jenkins"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JetBrains"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JohnsonControls"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Juniper"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.K8S"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.KEVCatalogVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.KRCertAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.KasperskyICSCERTAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.KoreLogic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Kunbus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.LG"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Lantronix"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Lenovo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.LexmarkAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.LibreOffice"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Linux"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.LolAdvs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MACert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MFiles"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MaliciousPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MaliciousVSCodeExts"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ManageEngineAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MbedTLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.McAfee"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mediatek"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MedtronicAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mendix"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MetaAdvisories"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MetaData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MetasploitExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MicrosoftCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MicrosoftCVRF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MicrosoftDriverBlockList"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MicrosoftKb"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mikrotik"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mindray"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MispValue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mitel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MitreCVEListV5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MitsubishiElectricAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MogwaiLabsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MogwaiLabsAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MogwaiLabsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MokshaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MokshaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MokshaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MongoDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MoxaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MozillaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NCSC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NCSCCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NEC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NHS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NTP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NVD20Source"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NVDCPEDictionary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NZAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Naver"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nessus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NetApp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Netatalk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Netgate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Netgear"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Netskope"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nexpose"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NginxAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NodeJS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NodeSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nokia"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NotePadPlusPlus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nozomi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nuclei"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OPCFoundationAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OPCFoundationAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OPCFoundationAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OSV"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OTRS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OctopusDeploy"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Okta"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Omron"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OneE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenBSD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenCVDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenJDK"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenSSH"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenSSLSecAdv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenStack"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Opengear"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OracleCPU"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OracleCPUCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OwnCloud"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PHPMyAdmin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PKCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PTC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PacketstormExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Palantir"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PaloAltoAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Panasonic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PaperCut"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Pega"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PhilipsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PhoenixContactAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PostgresSQL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PowerDNS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Progress"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Proofpoint"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PureStorage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PyPAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.QNAPAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.QQID"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.QSB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Qualcomm"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Qualys"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.QualysQID"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RansomwareExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RedLion"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RedhatCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Renesas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Revive"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RhelCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Roche"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Rockwell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RockyErrata"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Rsync"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Ruckus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RustsecAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SAP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SECConsult"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SSDAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Safran"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SaintExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SalesForce"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Samba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sandisk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SansDshield"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SchneiderElectricAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Schutzwerk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SecurityBulletin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SecurityLab"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SeebugExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SentinelOne"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ServiceNow"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SevenZip"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ShadowServerExploitedVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Shielder"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sick"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SiemensAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SierraWireless"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SigmaRule"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SingCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sitecore"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Slackware"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SolarWindsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Solr"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sonatype"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SonicWallAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SpacelabsHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Splunk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Spring"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Stormshield"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.StrykerAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sudo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SuseSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SwisslogHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Symfony"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Synacktiv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SyncroSoft"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Synology"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Syss"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TPLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TWCertAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Tailscale"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TalosAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TeamViewer"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TenableResearchAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Tencent"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Thales"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TheMissingLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ThermoFisher"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ThreatActorWithExternalObjects"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Tibco"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TraneTechnology"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TrendMicro"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Trustwave"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.USD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.USOMAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Ubiquiti"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.UbuntuCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Unify"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Unisoc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Update"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VCCPEDictionary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VCVulnerableCPEs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VDEAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VLC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VMWareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VYAIREAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VanDyke"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VapidLabsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Veeam"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Veritas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Virtuozzo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VoidSec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnCheck"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnCheckCVEListV5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnCheckConfig"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnCheckKEV"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnerableDebianPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Vulnrichment"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WRT"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WatchGuard"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WhatsApp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Wibu"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Wireshark"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WithSecure"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WolfSSL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Wolfi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Wordfence"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Xen"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Xerox"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Xiaomi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Xylem"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Yamaha"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.YokogawaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Yubico"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zebra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ZeroDayAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ZeroScienceAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zimbra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zoom"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zscaler"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zuso"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zyxel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CWE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CWE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.CWE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.CveItems"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.CveItemsExtended"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.EPSSData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.ExploitChain"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.ExploitV3Result"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.ExploitsChangelog"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.InitialAccess"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.MitreAttackToCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.NVD20CPEMatch"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.NVD20CVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.NVD20CVEExtended"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.OSSPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_TargetIntel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_TargetIntel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.TargetIntel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_TargetIntelCVESummary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_TargetIntelCVESummary-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.TargetIntelCVESummary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_Update-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_Update-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.Update"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.VulnCheckCanary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.VulnerabilityAlias"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_index_CveSearchHit-index_CveSearchMeta":{"description":"render.ResponseWithMetadata-array_index_CveSearchHit-index_CveSearchMeta","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/index.CveSearchMeta"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/index.CveSearchHit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/purls.PurlResponse"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata":{"description":"render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.ResponseMetadata"},"data":{"description":"Data is the data returned by the endpoint","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-search_Responses-search_ResponseMetadata":{"description":"render.ResponseWithMetadata-search_Responses-search_ResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/search.ResponseMetadata"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/search.ResponseDataOut"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.BackupResponseMetadata"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/params.IndexBackup"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.PurlResponseMetadata"},"data":{"$ref":"#/components/schemas/v3controllers.PurlResponseData"}},"type":"object"},"render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.PurlsResponseMetadata"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/purl.BatchVulnFinding"},"type":"array","uniqueItems":false}},"type":"object"},"search.ErrorResponse":{"description":"search.ErrorResponse","properties":{"error":{"type":"boolean"},"errors":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"search.ResponseDataOut":{"description":"search.ResponseDataOut","properties":{"cpe":{"type":"string"},"cpe_struct":{"$ref":"#/components/schemas/api.CPE"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"search.ResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"timestamp":{"type":"string"},"total_documents":{"type":"integer"}},"type":"object"},"search.V4AdvisoryMeta":{"description":"search.V4AdvisoryMeta","properties":{"cursor":{"type":"string"},"filtered":{"type":"integer"},"limit":{"type":"integer"},"next_cursor":{"type":"string"},"page":{"type":"integer"},"pages":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"search.V4AdvisoryReturnValue":{"description":"search.V4AdvisoryReturnValue","properties":{"_meta":{"$ref":"#/components/schemas/search.V4AdvisoryMeta"},"data":{"items":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"type":"array","uniqueItems":false}},"type":"object"},"search.V4FeedItem":{"description":"search.V4FeedItem","properties":{"description":{"type":"string"},"href":{"type":"string"},"name":{"type":"string"}},"type":"object"},"search.V4ListFeedReturnValue":{"description":"search.V4ListFeedReturnValue","properties":{"data":{"items":{"$ref":"#/components/schemas/search.V4FeedItem"},"type":"array","uniqueItems":false}},"type":"object"},"v3controllers.BackupResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"index":{"description":"Index name being queried, corresponding to the VulnCheck data feed.","type":"string"},"timestamp":{"description":"Timestamp when the query was executed in UTC (ISO 8601 format).","type":"string"}},"type":"object"},"v3controllers.PurlResponseData":{"description":"Data is the data returned by the endpoint","properties":{"cves":{"description":"list of associated CVE 's","items":{"type":"string"},"type":"array","uniqueItems":false},"vulnerabilities":{"description":"list of associated vulnerabilities","items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"v3controllers.PurlResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"purl_struct":{"$ref":"#/components/schemas/purl.PackageURLJSON"},"timestamp":{"description":"time of the transaction","type":"string"},"total_documents":{"description":"number of results found","type":"integer"}},"type":"object"},"v3controllers.PurlsResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"timestamp":{"description":"time of the transaction","type":"string"},"total_documents":{"description":"number of results found","type":"integer"}},"type":"object"},"v3controllers.ResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"cpe":{"type":"string"},"cpe_struct":{"$ref":"#/components/schemas/api.CPE"},"timestamp":{"type":"string"},"total_documents":{"type":"integer"}},"type":"object"}},"securitySchemes":{"Bearer":{"in":"header","name":"Authorization","type":"apiKey"}}},"externalDocs":{"description":"","url":""},"info":{"contact":{"email":"support@vulncheck.com","name":"VulnCheck API Support"},"description":"VulnCheck API (v3 + v4)","termsOfService":"https://vulncheck.com/terms","title":"VulnCheck API","version":"latest"},"openapi":"3.1.0","paths":{"/v3/backup":{"get":{"description":"Return a list of indexes with backup and endpoint links that the user has access to","operationId":"backup_get","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.Response-array_params_IndexBackupList"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"oneOf":[{"type":"string"},{"type":"string"}]}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return a list of indexes with backup and endpoint links","tags":["endpoints"]}},"/v3/backup/{index}":{"get":{"description":"Retrieve a list of VulnCheck backups by index","operationId":"backup_index_get","parameters":[{"description":"Name of an exploit, vulnerability, or advisory index","in":"path","name":"index","required":true,"schema":{"enum":["7zip","a10","abb","abbott","absolute","acronis","adobe","advantech","advisories","aix","aleph-research","alibaba-advs","alibabacloud-eol","alma","alpine","alpine-purls","amazon","amazon-cve","amd","ami","anchore-nvd-override","android","apache-activemq","apache-archiva","apache-arrow","apache-camel","apache-commons","apache-couchdb","apache-flink","apache-guacamole","apache-hadoop","apache-http","apache-jspwiki","apache-kafka","apache-loggingservices","apache-nifi","apache-ofbiz","apache-openmeetings","apache-openoffice","apache-pulsar","apache-shiro","apache-spark","apache-struts","apache-subversion","apache-superset","apache-tomcat","apache-zookeeper","appcheck","appgate","apple","arch","arista","aruba","asrg","assetnote","asterisk","astra","asus","atlassian","atlassian-vulns","atredis","audiocodes","auscert","austin-hackers","autodesk","avaya","aveva","avidml-advs","avigilon","aws","aws-rds","axis","azul","bandr","baxter","bbraun","bd","bdu","beckhoff","beckman-coulter","belden","beyond-trust","binarly","bitdefender","blackberry","bls","bosch","boston-scientific","botnets","ca-cyber-centre","canvas","carestream","cargo","carrier","cbl-mariner","centos","cert-be","cert-in","cert-ir-security-alerts","cert-se","cert-ua","certeu","certfr","chainguard","checkpoint","chrome","ciena","circl","cisa-alerts","cisa-csaf","cisa-kev","cisco","cisco-csaf","cisco-known-good-values","cisco-talos","citrix","claroty","cloudbees","cloudvulndb","cnnvd","cnvd-bulletins","cnvd-flaws","cocoapods","codesys","commvault","compass-security","composer","conan","coreimpact","cpe-vulnerable","crestron","crowdsec","curl","cves_identity_mappings","cwe","dahua","danfoss","dassault","debian","debian-dsa","debian-packages","debian-purls","dell","delta","dfn-cert","django","dlink","dnn","dotcms","draeger","dragos","draytek","drupal","eaton","elastic","elspec","emerging-threats-snort","emerson","endoflife","endress","eol","eol-alibaba","eol-microsoft","epss","euvd","exodus-intel","exploit-chains","exploitdb","exploits","exploits-changelog","f-secure","f5","fanuc","fastly","fedora","festo","filecloud","filezilla","flatt-security","forgerock","fortinet","fortinet-ips","foxit","freebsd","fresenius","gallagher","gcp","ge-gas","ge-healthcare","gem","gen","genetec","ghsa","gigabyte","gitee-exploits","github-exploits","github-security-advisories","gitlab-advisories-community","gitlab-exploits","glibc","gmo-cybersecurity","gnutls","go-vulndb","golang","google-0day-itw","google-container-optimized-os","grafana","greynoise-metadata","hackage","hacktivity","harmonyos","hashicorp","haskell-sadb","hcl","hex","hikvision","hillrom","hitachi","hitachi-energy","hkcert","hms","honeywell","hp","hp-eol","hpe","hpe-eol","huawei-euleros","huawei-ips","huawei-psirt","iava","ibm","idemia","igel","il-alerts","il-vulnerabilities","incibe","initial-access","initial-access-git","intel","ioc-botnets","ioc-ransomware","ioc-threat-actors","ipintel-10d","ipintel-30d","ipintel-3d","ipintel-90d","istio","ivanti","ivanti-rss","jenkins","jetbrains","jfrog","jnj","johnson-controls","juniper","jvn","jvndb","kaspersky-ics-cert","korelogic","krcert-security-notices","krcert-vulnerabilities","kubernetes","kunbus","lantronix","lenovo","lexmark","lg","libre-office","linux","lol-advs","m-files","macert","malicious-packages","malicious-vscode-exts","manageengine","maven","mbed-tls","mcafee","mediatek","medtronic","mendix","meta-advisories","metasploit","microsoft-csaf","microsoft-cvrf","microsoft-driver-block-list","microsoft-eol","microsoft-kb","mikrotik","mindray","misp-threat-actors","mitel","mitre-attack-cve","mitre-cvelist-v5","mitsubishi-electric","mogwai-labs","moksha","mongodb","moxa","mozilla","naver","ncsc","ncsc-cves","nec","nessus","netapp","netatalk","netgate","netgear","netskope","nexpose","nginx","nhs","ni","nist-nvd","nist-nvd2","nist-nvd2-cpematch","nist-nvd2-sources","node-security","nodejs","nokia","notepadplusplus","nozomi","npm","ntp","nuclei","nuget","nvd-cpe-dictionary","nvidia","nz-advisories","octopus-deploy","okta","omron","omron-eol","one-e","opam","opc-foundation","open-cvdb","openbsd","opengear","openjdk","openssh","openssl-secadv","openstack","openwrt","oracle","oracle-cpu","oracle-cpu-csaf","osv","otrs","owncloud","packetstorm","palantir","palo-alto","panasonic","papercut","pega","philips","phoenix-contact","php-my-admin","pkcert","postgressql","powerdns","progress","proofpoint","ptc","pub","pure-storage","pypa-advisories","pypi","qnap","qqids","qualcomm","qualys","qualys-qids","qubes-qsb","ransomware","red-lion","redhat","redhat-cves","renesas","revive","roche","rockwell","rocky","rocky-errata","rocky-purls","rsync","ruckus","rustsec-advisories","sacert","safran","saint","salesforce","samba","sandisk","sans-dshield","sap","schneider-electric","schutzwerk","sec-consult","securitylab","seebug","sel","sentinelone","servicenow","shadowserver-exploited","shielder","sick","siemens","sierra-wireless","sigmahq-sigma-rules","singcert","sitecore","slackware","solarwinds","solr","sonatype","sonicwall","spacelabs-healthcare","splunk","spring","ssd","stormshield","stryker","sudo","suse","suse-security","swift","swisslog-healthcare","symfony","synacktiv","syncrosoft","synology","syss","tailscale","target-intel","target-intel-cve-summary","teamviewer","tenable-research-advisories","tencent","thales","themissinglink","thermo-fisher","threat-actors","ti","tibco","tp-link","trane-technology","trendmicro","trustwave","twcert","ubiquiti","ubuntu","ubuntu-purls","unify","unisoc","usd","usom","vandyke","vapidlabs","vc-cpe-dictionary","vde","veeam","veritas","virtuozzo","vlc","vmware","voidsec","vulncheck","vulncheck-canaries","vulncheck-canaries-10d","vulncheck-canaries-30d","vulncheck-canaries-3d","vulncheck-canaries-90d","vulncheck-config","vulncheck-cvelist-v5","vulncheck-kev","vulncheck-nvd","vulncheck-nvd2","vulnerability-aliases","vulnrichment","vyaire","watchguard","whatsapp","wibu","wireshark","with-secure","wolfi","wolfssl","wordfence","xen","xerox","xiaomi","xylem","yamaha","yokogawa","yubico","zdi","zebra","zebra-eol","zeroscience","zimbra","zoom","zscaler","zuso","zyxel"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve a list of backups by index","tags":["endpoints"]}},"/v3/cpe":{"get":{"description":"Based on the specified CPE (Common Platform Enumeration) URI string, this endpoint will return a list of vulnerabilities that are related to the package. We support v2.2 and v2.3","operationId":"cpe_get","parameters":[{"description":"CPE designation to lookup","in":"query","name":"cpe","required":true,"schema":{"type":"string"}},{"description":"Filter by vulnerability status (true/false). Defaults to false if not provided.","in":"query","name":"isVulnerable","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return CVE 's associated with a specific NIST CPE","tags":["endpoints"]}},"/v3/entitlements":{"get":{"description":"Retrieve entitlements for the current user","operationId":"entitlements_get","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Entitlements"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve user entitlements","tags":["endpoints"]}},"/v3/index":{"get":{"description":"Return a list of available indexes with endpoint links that the user has access to","operationId":"index_get","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.Response-array_params_IndexList"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"oneOf":[{"type":"string"},{"type":"string"}]}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return a list of available indexes with endpoint links","tags":["endpoints"]}},"/v3/index/7zip":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the 7zip index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 7Zip Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/7zip?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/7zip?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_7zip_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"7zip\"","tags":["indices"]}},"/v3/index/a10":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the a10 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** A10 Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/a10?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/a10?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_a10_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"a10\"","tags":["indices"]}},"/v3/index/abb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the abb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ABB Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/abb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/abb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_abb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"abb\"","tags":["indices"]}},"/v3/index/abbott":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the abbott index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Abbott Product Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/abbott?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/abbott?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_abbott_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"abbott\"","tags":["indices"]}},"/v3/index/absolute":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the absolute index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Absolute Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/absolute?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/absolute?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_absolute_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"absolute\"","tags":["indices"]}},"/v3/index/acronis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the acronis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Acronis Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/acronis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/acronis?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_acronis_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"acronis\"","tags":["indices"]}},"/v3/index/adobe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the adobe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Adobe Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/adobe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/adobe?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_adobe_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"adobe\"","tags":["indices"]}},"/v3/index/advantech":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the advantech index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Advantech Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/advantech?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/advantech?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_advantech_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"advantech\"","tags":["indices"]}},"/v3/index/advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"advisories\"","tags":["indices"]}},"/v3/index/aix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AIX Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aix?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aix_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aix\"","tags":["indices"]}},"/v3/index/aleph-research":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aleph-research index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Aleph Research Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aleph-research?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aleph-research?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aleph-research_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aleph-research\"","tags":["indices"]}},"/v3/index/alibaba-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alibaba-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alibaba-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alibaba-advs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alibaba-advs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alibaba-advs\"","tags":["indices"]}},"/v3/index/alibabacloud-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alibabacloud-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba Cloud End of Life Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alibabacloud-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alibabacloud-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alibabacloud-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alibabacloud-eol\"","tags":["indices"]}},"/v3/index/alma":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alma index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alma Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alma?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alma?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alma_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alma\"","tags":["indices"]}},"/v3/index/alpine":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alpine index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alpine Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alpine?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alpine?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alpine_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alpine\"","tags":["indices"]}},"/v3/index/alpine-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alpine-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alpine Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alpine-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alpine-purls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alpine-purls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alpine-purls\"","tags":["indices"]}},"/v3/index/amazon":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amazon index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Amazon Linux Security Center\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amazon?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amazon?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_amazon_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"amazon\"","tags":["indices"]}},"/v3/index/amazon-cve":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amazon-cve index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Amazon CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amazon-cve?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amazon-cve?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_amazon-cve_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"amazon-cve\"","tags":["indices"]}},"/v3/index/amd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AMD Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_amd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"amd\"","tags":["indices"]}},"/v3/index/ami":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ami index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AMI Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ami?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ami?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ami_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ami\"","tags":["indices"]}},"/v3/index/anchore-nvd-override":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the anchore-nvd-override index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Anchore NVD Data Overrides\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/anchore-nvd-override?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/anchore-nvd-override?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_anchore-nvd-override_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"anchore-nvd-override\"","tags":["indices"]}},"/v3/index/android":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the android index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Android Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/android?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/android?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_android_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"android\"","tags":["indices"]}},"/v3/index/apache-activemq":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache ActiveMQ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-activemq?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-activemq_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-activemq\"","tags":["indices"]}},"/v3/index/apache-archiva":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Archiva Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-archiva?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-archiva_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-archiva\"","tags":["indices"]}},"/v3/index/apache-arrow":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Arrow Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-arrow?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-arrow_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-arrow\"","tags":["indices"]}},"/v3/index/apache-camel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Camel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-camel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-camel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-camel\"","tags":["indices"]}},"/v3/index/apache-commons":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Commons Known Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-commons?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-commons_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-commons\"","tags":["indices"]}},"/v3/index/apache-couchdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache CouchDB Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-couchdb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-couchdb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-couchdb\"","tags":["indices"]}},"/v3/index/apache-flink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Flink Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-flink?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-flink_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-flink\"","tags":["indices"]}},"/v3/index/apache-guacamole":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Guacamole Security Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-guacamole?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-guacamole_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-guacamole\"","tags":["indices"]}},"/v3/index/apache-hadoop":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Hadoop CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-hadoop?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-hadoop_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-hadoop\"","tags":["indices"]}},"/v3/index/apache-http":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache HTTP Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-http?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-http_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-http\"","tags":["indices"]}},"/v3/index/apache-jspwiki":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache JSPWiki CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-jspwiki?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-jspwiki_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-jspwiki\"","tags":["indices"]}},"/v3/index/apache-kafka":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Kafka Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-kafka?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-kafka_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-kafka\"","tags":["indices"]}},"/v3/index/apache-loggingservices":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Logging Services Known Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-loggingservices?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-loggingservices_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-loggingservices\"","tags":["indices"]}},"/v3/index/apache-nifi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache NiFi Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-nifi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-nifi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-nifi\"","tags":["indices"]}},"/v3/index/apache-ofbiz":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OFBiz Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-ofbiz?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-ofbiz_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-ofbiz\"","tags":["indices"]}},"/v3/index/apache-openmeetings":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OpenMeetings Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-openmeetings?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-openmeetings_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-openmeetings\"","tags":["indices"]}},"/v3/index/apache-openoffice":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OpenOffice Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-openoffice?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-openoffice_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-openoffice\"","tags":["indices"]}},"/v3/index/apache-pulsar":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Pulsar Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-pulsar?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-pulsar_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-pulsar\"","tags":["indices"]}},"/v3/index/apache-shiro":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Shiro Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-shiro?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-shiro_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-shiro\"","tags":["indices"]}},"/v3/index/apache-spark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Spark Known Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-spark?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-spark_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-spark\"","tags":["indices"]}},"/v3/index/apache-struts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Struts Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-struts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-struts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-struts\"","tags":["indices"]}},"/v3/index/apache-subversion":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Subversion Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-subversion?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-subversion_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-subversion\"","tags":["indices"]}},"/v3/index/apache-superset":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Superset CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-superset?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-superset_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-superset\"","tags":["indices"]}},"/v3/index/apache-tomcat":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Tomcat Security Vunlnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-tomcat?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-tomcat_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-tomcat\"","tags":["indices"]}},"/v3/index/apache-zookeeper":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache ZooKeeper Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-zookeeper?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-zookeeper_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-zookeeper\"","tags":["indices"]}},"/v3/index/appcheck":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AppCheck Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/appcheck?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_appcheck_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"appcheck\"","tags":["indices"]}},"/v3/index/appgate":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Appgate SDP Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/appgate?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_appgate_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"appgate\"","tags":["indices"]}},"/v3/index/apple":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apple index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apple Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apple?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apple_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apple\"","tags":["indices"]}},"/v3/index/arch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the arch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Arch Linux\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/arch?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_arch_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"arch\"","tags":["indices"]}},"/v3/index/arista":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the arista index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Arista Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/arista?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_arista_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"arista\"","tags":["indices"]}},"/v3/index/aruba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Aruba Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aruba?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aruba_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aruba\"","tags":["indices"]}},"/v3/index/asrg":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ASRG Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asrg?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_asrg_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"asrg\"","tags":["indices"]}},"/v3/index/assetnote":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AssetNote Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/assetnote?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_assetnote_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"assetnote\"","tags":["indices"]}},"/v3/index/asterisk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Asterisk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asterisk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_asterisk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"asterisk\"","tags":["indices"]}},"/v3/index/astra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the astra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Astra Linux Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/astra?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_astra_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"astra\"","tags":["indices"]}},"/v3/index/asus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ASUSTek Computer Inc.\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_asus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"asus\"","tags":["indices"]}},"/v3/index/atlassian":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atlassian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atlassian?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_atlassian_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"atlassian\"","tags":["indices"]}},"/v3/index/atlassian-vulns":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atlassian Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atlassian-vulns?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_atlassian-vulns_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"atlassian-vulns\"","tags":["indices"]}},"/v3/index/atredis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atredis Partners Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atredis?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_atredis_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"atredis\"","tags":["indices"]}},"/v3/index/audiocodes":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AudioCodes Product Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/audiocodes?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_audiocodes_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"audiocodes\"","tags":["indices"]}},"/v3/index/auscert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AusCERT Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/auscert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_auscert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"auscert\"","tags":["indices"]}},"/v3/index/austin-hackers":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AHA! — Austin Hackers Anonymous\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/austin-hackers?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_austin-hackers_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AustinHackersAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"austin-hackers\"","tags":["indices"]}},"/v3/index/autodesk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Autodesk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/autodesk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_autodesk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"autodesk\"","tags":["indices"]}},"/v3/index/avaya":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Avaya Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avaya?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_avaya_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"avaya\"","tags":["indices"]}},"/v3/index/aveva":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AVEVA Group Limited\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aveva?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aveva_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aveva\"","tags":["indices"]}},"/v3/index/avidml-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AI Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avidml-advs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_avidml-advs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"avidml-advs\"","tags":["indices"]}},"/v3/index/avigilon":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Avigilon Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avigilon?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_avigilon_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"avigilon\"","tags":["indices"]}},"/v3/index/aws":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aws index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AWS Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aws?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aws_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aws\"","tags":["indices"]}},"/v3/index/aws-rds":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AWS Relational Database Service Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aws-rds?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aws-rds_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aws-rds\"","tags":["indices"]}},"/v3/index/axis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the axis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Axis OS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/axis?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_axis_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"axis\"","tags":["indices"]}},"/v3/index/azul":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the azul index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Azul Common Vulnerabilities and Exposures\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/azul?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_azul_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"azul\"","tags":["indices"]}},"/v3/index/bandr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** B\u0026R Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bandr?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bandr_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bandr\"","tags":["indices"]}},"/v3/index/baxter":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Baxter Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/baxter?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_baxter_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"baxter\"","tags":["indices"]}},"/v3/index/bbraun":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** B. Braun Medical Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bbraun?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bbraun_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bbraun\"","tags":["indices"]}},"/v3/index/bd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Becton Dickinson Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bd\"","tags":["indices"]}},"/v3/index/bdu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** BDU Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bdu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bdu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bdu\"","tags":["indices"]}},"/v3/index/beckhoff":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beckhoff Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beckhoff?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_beckhoff_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"beckhoff\"","tags":["indices"]}},"/v3/index/beckman-coulter":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beckman Coulter Product Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beckman-coulter?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_beckman-coulter_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"beckman-coulter\"","tags":["indices"]}},"/v3/index/belden":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the belden index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Belden Security Bulletins Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/belden?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_belden_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"belden\"","tags":["indices"]}},"/v3/index/beyond-trust":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beyond Trust Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beyond-trust?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_beyond-trust_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"beyond-trust\"","tags":["indices"]}},"/v3/index/binarly":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Binarly Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/binarly?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_binarly_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"binarly\"","tags":["indices"]}},"/v3/index/bitdefender":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Bitdefender Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bitdefender?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bitdefender_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bitdefender\"","tags":["indices"]}},"/v3/index/blackberry":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** BlackBerry Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/blackberry?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_blackberry_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"blackberry\"","tags":["indices"]}},"/v3/index/bls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Black Lantern Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bls\"","tags":["indices"]}},"/v3/index/bosch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Bosch Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bosch?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bosch_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bosch\"","tags":["indices"]}},"/v3/index/boston-scientific":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Boston Scientific Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/boston-scientific?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_boston-scientific_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"boston-scientific\"","tags":["indices"]}},"/v3/index/botnets":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Botnets\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/botnets?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_botnets_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"botnets\"","tags":["indices"]}},"/v3/index/ca-cyber-centre":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Canadian Centre for Cyber Security Alerts and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ca-cyber-centre?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ca-cyber-centre_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ca-cyber-centre\"","tags":["indices"]}},"/v3/index/canvas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CANVAS Exploit Packs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/canvas?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_canvas_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"canvas\"","tags":["indices"]}},"/v3/index/carestream":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Carestream Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/carestream?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_carestream_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"carestream\"","tags":["indices"]}},"/v3/index/cargo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cargo (Rust) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cargo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cargo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cargo\"","tags":["indices"]}},"/v3/index/carrier":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Carrier Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/carrier?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_carrier_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"carrier\"","tags":["indices"]}},"/v3/index/cbl-mariner":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CBL-Mariner Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cbl-mariner?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cbl-mariner_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cbl-mariner\"","tags":["indices"]}},"/v3/index/centos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the centos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CentOS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/centos?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_centos_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"centos\"","tags":["indices"]}},"/v3/index/cert-be":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert BE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-be?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-be_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-be\"","tags":["indices"]}},"/v3/index/cert-in":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT IN Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-in?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-in_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-in\"","tags":["indices"]}},"/v3/index/cert-ir-security-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert IR Security Warnings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-ir-security-alerts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-ir-security-alerts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-ir-security-alerts\"","tags":["indices"]}},"/v3/index/cert-se":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert SE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-se?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-se_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-se\"","tags":["indices"]}},"/v3/index/cert-ua":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert UA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-ua?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-ua_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-ua\"","tags":["indices"]}},"/v3/index/certeu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/certeu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_certeu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"certeu\"","tags":["indices"]}},"/v3/index/certfr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert FR Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/certfr?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_certfr_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"certfr\"","tags":["indices"]}},"/v3/index/chainguard":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ChainGuard Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/chainguard?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_chainguard_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"chainguard\"","tags":["indices"]}},"/v3/index/checkpoint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CheckPoint Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/checkpoint?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_checkpoint_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"checkpoint\"","tags":["indices"]}},"/v3/index/chrome":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Google Chrome Release Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/chrome?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_chrome_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"chrome\"","tags":["indices"]}},"/v3/index/ciena":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ciena\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ciena?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ciena_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ciena\"","tags":["indices"]}},"/v3/index/circl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the circl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Computer Incident Response Center Luxembourg (CIRCL)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/circl?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_circl_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CirclAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"circl\"","tags":["indices"]}},"/v3/index/cisa-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-alerts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisa-alerts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisa-alerts\"","tags":["indices"]}},"/v3/index/cisa-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Security Advisories - CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-csaf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisa-csaf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisa-csaf\"","tags":["indices"]}},"/v3/index/cisa-kev":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA KEV (Known Exploited Vulnerabilities)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-kev?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisa-kev_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisa-kev\"","tags":["indices"]}},"/v3/index/cisco":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisco_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisco\"","tags":["indices"]}},"/v3/index/cisco-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-csaf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisco-csaf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisco-csaf\"","tags":["indices"]}},"/v3/index/cisco-known-good-values":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Known Good Values\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-known-good-values?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisco-known-good-values_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisco-known-good-values\"","tags":["indices"]}},"/v3/index/cisco-talos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Talos Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-talos?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisco-talos_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisco-talos\"","tags":["indices"]}},"/v3/index/citrix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Citrix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/citrix?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_citrix_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"citrix\"","tags":["indices"]}},"/v3/index/claroty":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Team 82: The Claroty Research Team\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/claroty?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_claroty_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"claroty\"","tags":["indices"]}},"/v3/index/cloudbees":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CloudBees Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cloudbees?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cloudbees_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cloudbees\"","tags":["indices"]}},"/v3/index/cloudvulndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CloudVulnDB\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cloudvulndb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cloudvulndb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cloudvulndb\"","tags":["indices"]}},"/v3/index/cnnvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Chinese National Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnnvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cnnvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cnnvd\"","tags":["indices"]}},"/v3/index/cnvd-bulletins":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CNVD Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnvd-bulletins?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cnvd-bulletins_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cnvd-bulletins\"","tags":["indices"]}},"/v3/index/cnvd-flaws":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CNVD Flaws\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnvd-flaws?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cnvd-flaws_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cnvd-flaws\"","tags":["indices"]}},"/v3/index/cocoapods":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CocoaPods packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cocoapods?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cocoapods_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cocoapods\"","tags":["indices"]}},"/v3/index/codesys":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Codesys Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/codesys?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_codesys_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"codesys\"","tags":["indices"]}},"/v3/index/commvault":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Commvault Cloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/commvault?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_commvault_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"commvault\"","tags":["indices"]}},"/v3/index/compass-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Compass Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/compass-security?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_compass-security_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"compass-security\"","tags":["indices"]}},"/v3/index/composer":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the composer index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PHP Composer packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/composer?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_composer_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"composer\"","tags":["indices"]}},"/v3/index/conan":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the conan index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** C/C++ packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/conan?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_conan_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"conan\"","tags":["indices"]}},"/v3/index/coreimpact":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Core Impact\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/coreimpact?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_coreimpact_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"coreimpact\"","tags":["indices"]}},"/v3/index/cpe-vulnerable":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Unrolled VulnCheck CPEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cpe-vulnerable?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cpe-vulnerable_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cpe-vulnerable\"","tags":["indices"]}},"/v3/index/crestron":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Crestron Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/crestron?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_crestron_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"crestron\"","tags":["indices"]}},"/v3/index/crowdsec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CrowdSec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/crowdsec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_crowdsec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"crowdsec\"","tags":["indices"]}},"/v3/index/curl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the curl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Curl CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/curl?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_curl_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"curl\"","tags":["indices"]}},"/v3/index/cves_identity_mappings":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cves_identity_mappings?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cves_identity_mappings_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CVEIdentityMappings-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cves_identity_mappings\"","tags":["indices"]}},"/v3/index/cwe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Common Weakness Enumeration Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cwe?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cwe_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CWE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cwe\"","tags":["indices"]}},"/v3/index/dahua":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dahua Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dahua?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dahua_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dahua\"","tags":["indices"]}},"/v3/index/danfoss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Danfoss Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/danfoss?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_danfoss_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"danfoss\"","tags":["indices"]}},"/v3/index/dassault":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dassault Systèmes Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dassault?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dassault_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dassault\"","tags":["indices"]}},"/v3/index/debian":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_debian_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"debian\"","tags":["indices"]}},"/v3/index/debian-dsa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-dsa?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_debian-dsa_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"debian-dsa\"","tags":["indices"]}},"/v3/index/debian-packages":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Packages\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-packages?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_debian-packages_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"debian-packages\"","tags":["indices"]}},"/v3/index/debian-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian PURLs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-purls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_debian-purls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"debian-purls\"","tags":["indices"]}},"/v3/index/dell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dell Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dell?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dell_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dell\"","tags":["indices"]}},"/v3/index/delta":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the delta index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Delta Controls Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/delta?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_delta_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"delta\"","tags":["indices"]}},"/v3/index/dfn-cert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DFN-CERT Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dfn-cert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dfn-cert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dfn-cert\"","tags":["indices"]}},"/v3/index/django":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the django index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Django Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/django?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_django_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"django\"","tags":["indices"]}},"/v3/index/dlink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DLink Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dlink?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dlink_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dlink\"","tags":["indices"]}},"/v3/index/dnn":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DNN Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dnn?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dnn_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dnn\"","tags":["indices"]}},"/v3/index/dotcms":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DotCMS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dotcms?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dotcms_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dotcms\"","tags":["indices"]}},"/v3/index/draeger":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Draeger Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/draeger?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_draeger_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DraegerAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"draeger\"","tags":["indices"]}},"/v3/index/dragos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dragos Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dragos?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dragos_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dragos\"","tags":["indices"]}},"/v3/index/draytek":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DrayTek Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/draytek?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_draytek_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"draytek\"","tags":["indices"]}},"/v3/index/drupal":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Drupal Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/drupal?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_drupal_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"drupal\"","tags":["indices"]}},"/v3/index/eaton":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Eaton Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eaton?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_eaton_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"eaton\"","tags":["indices"]}},"/v3/index/elastic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Elastic Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/elastic?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_elastic_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"elastic\"","tags":["indices"]}},"/v3/index/elspec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Elspec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/elspec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_elspec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"elspec\"","tags":["indices"]}},"/v3/index/emerging-threats-snort":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Emerging Threats Snort\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/emerging-threats-snort?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_emerging-threats-snort_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"emerging-threats-snort\"","tags":["indices"]}},"/v3/index/emerson":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Emerson Cyber Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/emerson?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_emerson_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"emerson\"","tags":["indices"]}},"/v3/index/endoflife":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** End Of Life\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/endoflife?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_endoflife_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"endoflife\"","tags":["indices"]}},"/v3/index/endress":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the endress index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Endress \u0026 Hauser Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/endress?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_endress_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"endress\"","tags":["indices"]}},"/v3/index/eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck EOL Coverage\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"eol\"","tags":["indices"]}},"/v3/index/eol-alibaba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba EOL\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol-alibaba?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_eol-alibaba_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"eol-alibaba\"","tags":["indices"]}},"/v3/index/eol-microsoft":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft EOL\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol-microsoft?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_eol-microsoft_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"eol-microsoft\"","tags":["indices"]}},"/v3/index/epss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the epss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** EPSS Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/epss?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_epss_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"epss\"","tags":["indices"]}},"/v3/index/euvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** European Union Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/euvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_euvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"euvd\"","tags":["indices"]}},"/v3/index/exodus-intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Exodus Intelligence Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exodus-intel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exodus-intel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exodus-intel\"","tags":["indices"]}},"/v3/index/exploit-chains":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Exploit Chains\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploit-chains?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exploit-chains_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exploit-chains\"","tags":["indices"]}},"/v3/index/exploitdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Exploit Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploitdb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exploitdb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exploitdb\"","tags":["indices"]}},"/v3/index/exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Exploit Intelligence Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploits?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exploits_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exploits\"","tags":["indices"]}},"/v3/index/exploits-changelog":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Changelog for VC Exploits Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploits-changelog?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exploits-changelog_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exploits-changelog\"","tags":["indices"]}},"/v3/index/f-secure":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** F-Secure Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/f-secure?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_f-secure_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"f-secure\"","tags":["indices"]}},"/v3/index/f5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** F5 Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/f5?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_f5_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"f5\"","tags":["indices"]}},"/v3/index/fanuc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fanuc Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fanuc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fanuc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fanuc\"","tags":["indices"]}},"/v3/index/fastly":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fastly Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fastly?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fastly_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fastly\"","tags":["indices"]}},"/v3/index/fedora":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fedora Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fedora?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fedora_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fedora\"","tags":["indices"]}},"/v3/index/festo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the festo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Festo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/festo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_festo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"festo\"","tags":["indices"]}},"/v3/index/filecloud":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FileCloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/filecloud?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_filecloud_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"filecloud\"","tags":["indices"]}},"/v3/index/filezilla":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FileZilla Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/filezilla?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_filezilla_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"filezilla\"","tags":["indices"]}},"/v3/index/flatt-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Flatt Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/flatt-security?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_flatt-security_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"flatt-security\"","tags":["indices"]}},"/v3/index/forgerock":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ForgeRock Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/forgerock?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_forgerock_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"forgerock\"","tags":["indices"]}},"/v3/index/fortinet":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FortiGuard Fortinet\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fortinet?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fortinet_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fortinet\"","tags":["indices"]}},"/v3/index/fortinet-ips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fortinet Labs Threat Encyclopedia\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fortinet-ips?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fortinet-ips_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fortinet-ips\"","tags":["indices"]}},"/v3/index/foxit":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Foxit Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/foxit?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_foxit_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"foxit\"","tags":["indices"]}},"/v3/index/freebsd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FreeBSD Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/freebsd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_freebsd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"freebsd\"","tags":["indices"]}},"/v3/index/fresenius":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fresenius Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fresenius?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fresenius_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fresenius\"","tags":["indices"]}},"/v3/index/gallagher":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gallagher Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gallagher?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gallagher_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gallagher\"","tags":["indices"]}},"/v3/index/gcp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GCP Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gcp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gcp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gcp\"","tags":["indices"]}},"/v3/index/ge-gas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GE Gas Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ge-gas?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ge-gas_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ge-gas\"","tags":["indices"]}},"/v3/index/ge-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GE Healthcare Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ge-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ge-healthcare_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ge-healthcare\"","tags":["indices"]}},"/v3/index/gem":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gem index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ruby (gem) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gem?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gem_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gem\"","tags":["indices"]}},"/v3/index/gen":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gen index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gen Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gen?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gen_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gen\"","tags":["indices"]}},"/v3/index/genetec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Genetec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/genetec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_genetec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"genetec\"","tags":["indices"]}},"/v3/index/ghsa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GHSA\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ghsa?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ghsa_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ghsa\"","tags":["indices"]}},"/v3/index/gigabyte":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GIGABYTE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gigabyte?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gigabyte_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gigabyte\"","tags":["indices"]}},"/v3/index/gitee-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gitee Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitee-exploits?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gitee-exploits_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gitee-exploits\"","tags":["indices"]}},"/v3/index/github-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitHub Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/github-exploits?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_github-exploits_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"github-exploits\"","tags":["indices"]}},"/v3/index/github-security-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Github Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/github-security-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_github-security-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"github-security-advisories\"","tags":["indices"]}},"/v3/index/gitlab-advisories-community":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitLab Advisory Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitlab-advisories-community?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gitlab-advisories-community_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gitlab-advisories-community\"","tags":["indices"]}},"/v3/index/gitlab-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitLab Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitlab-exploits?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gitlab-exploits_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gitlab-exploits\"","tags":["indices"]}},"/v3/index/glibc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Glibc Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/glibc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_glibc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"glibc\"","tags":["indices"]}},"/v3/index/gmo-cybersecurity":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GMO Cybersecurity Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gmo-cybersecurity?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gmo-cybersecurity_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gmo-cybersecurity\"","tags":["indices"]}},"/v3/index/gnutls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GnuTLS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gnutls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gnutls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gnutls\"","tags":["indices"]}},"/v3/index/go-vulndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Go Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/go-vulndb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_go-vulndb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"go-vulndb\"","tags":["indices"]}},"/v3/index/golang":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the golang index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Golang packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/golang?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_golang_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"golang\"","tags":["indices"]}},"/v3/index/google-0day-itw":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Project Zero In the Wild Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/google-0day-itw?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_google-0day-itw_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"google-0day-itw\"","tags":["indices"]}},"/v3/index/google-container-optimized-os":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Container OS Release Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/google-container-optimized-os?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_google-container-optimized-os_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"google-container-optimized-os\"","tags":["indices"]}},"/v3/index/grafana":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Grafana Labs Security Fixes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/grafana?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_grafana_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"grafana\"","tags":["indices"]}},"/v3/index/greynoise-metadata":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GreyNoise Metadata\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/greynoise-metadata?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_greynoise-metadata_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"greynoise-metadata\"","tags":["indices"]}},"/v3/index/hackage":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hackage (Haskell) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hackage?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hackage_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hackage\"","tags":["indices"]}},"/v3/index/hacktivity":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hackerone Hacktivity\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hacktivity?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hacktivity_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hacktivity\"","tags":["indices"]}},"/v3/index/harmonyos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HarmonyOS Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/harmonyos?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_harmonyos_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"harmonyos\"","tags":["indices"]}},"/v3/index/hashicorp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HashiCorp Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hashicorp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hashicorp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hashicorp\"","tags":["indices"]}},"/v3/index/haskell-sadb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Haskell Security Advisory DB\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/haskell-sadb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_haskell-sadb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"haskell-sadb\"","tags":["indices"]}},"/v3/index/hcl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HCLSoftware Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hcl?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hcl_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hcl\"","tags":["indices"]}},"/v3/index/hex":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hex index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hex (Erlang) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hex?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hex_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hex\"","tags":["indices"]}},"/v3/index/hikvision":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hikvision Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hikvision?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hikvision_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hikvision\"","tags":["indices"]}},"/v3/index/hillrom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hillrom Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hillrom?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hillrom_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hillrom\"","tags":["indices"]}},"/v3/index/hitachi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hitachi Software Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hitachi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hitachi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hitachi\"","tags":["indices"]}},"/v3/index/hitachi-energy":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hitachi-energy?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hitachi-energy_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hitachi-energy\"","tags":["indices"]}},"/v3/index/hkcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hong Kong CERT Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hkcert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hkcert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hkcert\"","tags":["indices"]}},"/v3/index/hms":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hms index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HMS (Hardware Meets Software) Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hms?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hms_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hms\"","tags":["indices"]}},"/v3/index/honeywell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Honeywell Cyber Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/honeywell?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_honeywell_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"honeywell\"","tags":["indices"]}},"/v3/index/hp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HP Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hp\"","tags":["indices"]}},"/v3/index/hp-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** End of Life Data for Hewlett-Packard Products\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hp-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hp-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hp-eol\"","tags":["indices"]}},"/v3/index/hpe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HPE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hpe?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hpe_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hpe\"","tags":["indices"]}},"/v3/index/hpe-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hewlett-Packard Enterprise End of Life Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hpe-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hpe-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hpe-eol\"","tags":["indices"]}},"/v3/index/huawei-euleros":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenEuler Operating System Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-euleros?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_huawei-euleros_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"huawei-euleros\"","tags":["indices"]}},"/v3/index/huawei-ips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Huawei IPS Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-ips?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_huawei-ips_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"huawei-ips\"","tags":["indices"]}},"/v3/index/huawei-psirt":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Huawei Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-psirt?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_huawei-psirt_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"huawei-psirt\"","tags":["indices"]}},"/v3/index/iava":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the iava index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Information Assurance Vulnerability Alerts (IAVA)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/iava?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_iava_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"iava\"","tags":["indices"]}},"/v3/index/ibm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** IBM Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ibm?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ibm_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ibm\"","tags":["indices"]}},"/v3/index/idemia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Idemia Product Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/idemia?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_idemia_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"idemia\"","tags":["indices"]}},"/v3/index/igel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the igel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** IGEL Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/igel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_igel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"igel\"","tags":["indices"]}},"/v3/index/il-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gov.il Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/il-alerts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_il-alerts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"il-alerts\"","tags":["indices"]}},"/v3/index/il-vulnerabilities":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gov.il CVE Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/il-vulnerabilities?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_il-vulnerabilities_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"il-vulnerabilities\"","tags":["indices"]}},"/v3/index/incibe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Incibe CERT Early Warnings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/incibe?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_incibe_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"incibe\"","tags":["indices"]}},"/v3/index/initial-access":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Initial Access Intelligence\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/initial-access?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_initial-access_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"initial-access\"","tags":["indices"]}},"/v3/index/initial-access-git":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/initial-access-git?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_initial-access-git_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"initial-access-git\"","tags":["indices"]}},"/v3/index/intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Intel® Product Security Center Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/intel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_intel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"intel\"","tags":["indices"]}},"/v3/index/ioc-botnets":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck IOC Botnets\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ioc-botnets?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ioc-botnets_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IOCBotnetAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ioc-botnets\"","tags":["indices"]}},"/v3/index/ioc-ransomware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vulncheck IOC Ransomware\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ioc-ransomware?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ioc-ransomware_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IOCRansomwareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ioc-ransomware\"","tags":["indices"]}},"/v3/index/ioc-threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vulncheck IOC Threat Actors\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ioc-threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ioc-threat-actors_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IOCThreatActorAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ioc-threat-actors\"","tags":["indices"]}},"/v3/index/ipintel-10d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-10d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ipintel-10d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ipintel-10d\"","tags":["indices"]}},"/v3/index/ipintel-30d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-30d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ipintel-30d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ipintel-30d\"","tags":["indices"]}},"/v3/index/ipintel-3d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-3d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ipintel-3d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ipintel-3d\"","tags":["indices"]}},"/v3/index/ipintel-90d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-90d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ipintel-90d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ipintel-90d\"","tags":["indices"]}},"/v3/index/istio":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the istio index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Istio Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/istio?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_istio_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"istio\"","tags":["indices"]}},"/v3/index/ivanti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ivanti Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ivanti?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ivanti_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ivanti\"","tags":["indices"]}},"/v3/index/ivanti-rss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ivanti Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ivanti-rss?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ivanti-rss_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ivanti-rss\"","tags":["indices"]}},"/v3/index/jenkins":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Jenkins Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jenkins?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jenkins_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jenkins\"","tags":["indices"]}},"/v3/index/jetbrains":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** JetBrains Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jetbrains?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jetbrains_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jetbrains\"","tags":["indices"]}},"/v3/index/jfrog":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** JFrog Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jfrog?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jfrog_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jfrog\"","tags":["indices"]}},"/v3/index/jnj":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Johnson \u0026 Johnson Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jnj?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jnj_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jnj\"","tags":["indices"]}},"/v3/index/johnson-controls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Security Advisories - Johnson Controls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/johnson-controls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_johnson-controls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"johnson-controls\"","tags":["indices"]}},"/v3/index/juniper":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Juniper Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/juniper?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_juniper_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"juniper\"","tags":["indices"]}},"/v3/index/jvn":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Japan Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jvn?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jvn_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jvn\"","tags":["indices"]}},"/v3/index/jvndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Japan Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jvndb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jvndb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jvndb\"","tags":["indices"]}},"/v3/index/kaspersky-ics-cert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Kaspersky ICS CERT\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kaspersky-ics-cert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_kaspersky-ics-cert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"kaspersky-ics-cert\"","tags":["indices"]}},"/v3/index/korelogic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KoreLogic Vulnerability Research and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/korelogic?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_korelogic_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"korelogic\"","tags":["indices"]}},"/v3/index/krcert-security-notices":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KR-CERT Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/krcert-security-notices?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_krcert-security-notices_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"krcert-security-notices\"","tags":["indices"]}},"/v3/index/krcert-vulnerabilities":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KR-CERT Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/krcert-vulnerabilities?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_krcert-vulnerabilities_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"krcert-vulnerabilities\"","tags":["indices"]}},"/v3/index/kubernetes":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Kubernetes Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kubernetes?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_kubernetes_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"kubernetes\"","tags":["indices"]}},"/v3/index/kunbus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KunBus Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kunbus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_kunbus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"kunbus\"","tags":["indices"]}},"/v3/index/lantronix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lantronix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lantronix?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lantronix_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lantronix\"","tags":["indices"]}},"/v3/index/lenovo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lenovo Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lenovo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lenovo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lenovo\"","tags":["indices"]}},"/v3/index/lexmark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lexmark Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lexmark?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lexmark_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lexmark\"","tags":["indices"]}},"/v3/index/lg":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lg index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** LG Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lg?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lg_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lg\"","tags":["indices"]}},"/v3/index/libre-office":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Libre Office Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/libre-office?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_libre-office_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"libre-office\"","tags":["indices"]}},"/v3/index/linux":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the linux index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Linux Kernel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/linux?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_linux_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"linux\"","tags":["indices"]}},"/v3/index/lol-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Living Off the Land Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lol-advs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lol-advs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lol-advs\"","tags":["indices"]}},"/v3/index/m-files":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** M-Files Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/m-files?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_m-files_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"m-files\"","tags":["indices"]}},"/v3/index/macert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the macert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moroccan CERT Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/macert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_macert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"macert\"","tags":["indices"]}},"/v3/index/malicious-packages":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Malicious Packages\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/malicious-packages?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_malicious-packages_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"malicious-packages\"","tags":["indices"]}},"/v3/index/malicious-vscode-exts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Malicious Visual Studio Code Extensions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/malicious-vscode-exts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_malicious-vscode-exts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"malicious-vscode-exts\"","tags":["indices"]}},"/v3/index/manageengine":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ManageEngine Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/manageengine?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_manageengine_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"manageengine\"","tags":["indices"]}},"/v3/index/maven":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the maven index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Maven (Java) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/maven?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_maven_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"maven\"","tags":["indices"]}},"/v3/index/mbed-tls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mbed TLS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mbed-tls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mbed-tls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mbed-tls\"","tags":["indices"]}},"/v3/index/mcafee":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** McAfee Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mcafee?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mcafee_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mcafee\"","tags":["indices"]}},"/v3/index/mediatek":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MediaTek Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mediatek?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mediatek_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mediatek\"","tags":["indices"]}},"/v3/index/medtronic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Medtronic Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/medtronic?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_medtronic_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"medtronic\"","tags":["indices"]}},"/v3/index/mendix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mendix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mendix?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mendix_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mendix\"","tags":["indices"]}},"/v3/index/meta-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Meta Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/meta-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_meta-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"meta-advisories\"","tags":["indices"]}},"/v3/index/metasploit":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Metasploit Modules\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/metasploit?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_metasploit_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"metasploit\"","tags":["indices"]}},"/v3/index/microsoft-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-csaf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-csaf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-csaf\"","tags":["indices"]}},"/v3/index/microsoft-cvrf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-cvrf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-cvrf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-cvrf\"","tags":["indices"]}},"/v3/index/microsoft-driver-block-list":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft's Vulnerable Drivers Blocklist\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-driver-block-list?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-driver-block-list_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-driver-block-list\"","tags":["indices"]}},"/v3/index/microsoft-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft End of Life Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-eol\"","tags":["indices"]}},"/v3/index/microsoft-kb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft KB list by CVE\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-kb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-kb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-kb\"","tags":["indices"]}},"/v3/index/mikrotik":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MikroTik Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mikrotik?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mikrotik_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mikrotik\"","tags":["indices"]}},"/v3/index/mindray":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mindray Cybersecurity Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mindray?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mindray_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mindray\"","tags":["indices"]}},"/v3/index/misp-threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MISP Threat Actors\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/misp-threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_misp-threat-actors_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"misp-threat-actors\"","tags":["indices"]}},"/v3/index/mitel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mitel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mitel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mitel\"","tags":["indices"]}},"/v3/index/mitre-attack-cve":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MITRE ATT\u0026CK Technique ID to CVE List\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitre-attack-cve?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mitre-attack-cve_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mitre-attack-cve\"","tags":["indices"]}},"/v3/index/mitre-cvelist-v5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MITRE CVEList V5\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitre-cvelist-v5?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mitre-cvelist-v5_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mitre-cvelist-v5\"","tags":["indices"]}},"/v3/index/mitsubishi-electric":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mitsubishi Electric Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitsubishi-electric?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mitsubishi-electric_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mitsubishi-electric\"","tags":["indices"]}},"/v3/index/mogwai-labs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MOGWAI LABS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mogwai-labs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mogwai-labs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MogwaiLabsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mogwai-labs\"","tags":["indices"]}},"/v3/index/moksha":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moksha Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/moksha?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_moksha_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MokshaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"moksha\"","tags":["indices"]}},"/v3/index/mongodb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MongoDB Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mongodb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mongodb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mongodb\"","tags":["indices"]}},"/v3/index/moxa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moxa Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/moxa?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_moxa_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"moxa\"","tags":["indices"]}},"/v3/index/mozilla":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mozilla Foundation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mozilla?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mozilla_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mozilla\"","tags":["indices"]}},"/v3/index/naver":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the naver index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Naver Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/naver?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_naver_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"naver\"","tags":["indices"]}},"/v3/index/ncsc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NCSC Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ncsc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ncsc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ncsc\"","tags":["indices"]}},"/v3/index/ncsc-cves":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NCSC CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ncsc-cves?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ncsc-cves_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ncsc-cves\"","tags":["indices"]}},"/v3/index/nec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NEC Security Information Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nec\"","tags":["indices"]}},"/v3/index/nessus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nessus Plugins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nessus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nessus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nessus\"","tags":["indices"]}},"/v3/index/netapp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NetApp Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netapp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netapp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netapp\"","tags":["indices"]}},"/v3/index/netatalk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netatalk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netatalk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netatalk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netatalk\"","tags":["indices"]}},"/v3/index/netgate":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netgate Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netgate?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netgate_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netgate\"","tags":["indices"]}},"/v3/index/netgear":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NETGEAR Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netgear?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netgear_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netgear\"","tags":["indices"]}},"/v3/index/netskope":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netskope Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netskope?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netskope_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netskope\"","tags":["indices"]}},"/v3/index/nexpose":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nexpose Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nexpose?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nexpose_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nexpose\"","tags":["indices"]}},"/v3/index/nginx":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nginx Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nginx?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nginx_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nginx\"","tags":["indices"]}},"/v3/index/nhs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NHS Cyber Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nhs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nhs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nhs\"","tags":["indices"]}},"/v3/index/ni":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ni index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** National Instruments Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ni?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ni_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ni\"","tags":["indices"]}},"/v3/index/nist-nvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nist-nvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nist-nvd\"","tags":["indices"]}},"/v3/index/nist-nvd2":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nist-nvd2_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nist-nvd2\"","tags":["indices"]}},"/v3/index/nist-nvd2-cpematch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0 CPE Match\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2-cpematch?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nist-nvd2-cpematch_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nist-nvd2-cpematch\"","tags":["indices"]}},"/v3/index/nist-nvd2-sources":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0 Source Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2-sources?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nist-nvd2-sources_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nist-nvd2-sources\"","tags":["indices"]}},"/v3/index/node-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Node.js Security Working Group Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/node-security?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_node-security_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"node-security\"","tags":["indices"]}},"/v3/index/nodejs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NodeJS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nodejs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nodejs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nodejs\"","tags":["indices"]}},"/v3/index/nokia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nokia Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nokia?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nokia_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nokia\"","tags":["indices"]}},"/v3/index/notepadplusplus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Notepad++ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/notepadplusplus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_notepadplusplus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"notepadplusplus\"","tags":["indices"]}},"/v3/index/nozomi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nozomi Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nozomi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nozomi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nozomi\"","tags":["indices"]}},"/v3/index/npm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the npm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NPM (JS/TS) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/npm?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_npm_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"npm\"","tags":["indices"]}},"/v3/index/ntp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NTP Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ntp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ntp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ntp\"","tags":["indices"]}},"/v3/index/nuclei":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nuclei Templates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nuclei?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nuclei_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nuclei\"","tags":["indices"]}},"/v3/index/nuget":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nuget (C#/F#) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nuget?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nuget_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nuget\"","tags":["indices"]}},"/v3/index/nvd-cpe-dictionary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NVD's CPE Dictionary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nvd-cpe-dictionary?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nvd-cpe-dictionary_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nvd-cpe-dictionary\"","tags":["indices"]}},"/v3/index/nvidia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NVIDIA Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nvidia?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nvidia_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nvidia\"","tags":["indices"]}},"/v3/index/nz-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT NZ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nz-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nz-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nz-advisories\"","tags":["indices"]}},"/v3/index/octopus-deploy":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Octopus Deploy Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/octopus-deploy?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_octopus-deploy_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"octopus-deploy\"","tags":["indices"]}},"/v3/index/okta":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the okta index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Okta Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/okta?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_okta_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"okta\"","tags":["indices"]}},"/v3/index/omron":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the omron index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Omron Vulnerability Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/omron?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_omron_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"omron\"","tags":["indices"]}},"/v3/index/omron-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Omron End of Life Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/omron-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_omron-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"omron-eol\"","tags":["indices"]}},"/v3/index/one-e":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 1E Published Product Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/one-e?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_one-e_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"one-e\"","tags":["indices"]}},"/v3/index/opam":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opam index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** opam (OCaml) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opam?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_opam_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"opam\"","tags":["indices"]}},"/v3/index/opc-foundation":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OPC Foundation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opc-foundation?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_opc-foundation_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OPCFoundationAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"opc-foundation\"","tags":["indices"]}},"/v3/index/open-cvdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Open Cloud Vulnerability \u0026 Security Issue Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/open-cvdb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_open-cvdb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"open-cvdb\"","tags":["indices"]}},"/v3/index/openbsd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenBSD Security Fixes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openbsd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openbsd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openbsd\"","tags":["indices"]}},"/v3/index/opengear":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Opengear Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opengear?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_opengear_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"opengear\"","tags":["indices"]}},"/v3/index/openjdk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenJDK Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openjdk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openjdk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openjdk\"","tags":["indices"]}},"/v3/index/openssh":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenSSH Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openssh?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openssh_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openssh\"","tags":["indices"]}},"/v3/index/openssl-secadv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenSSL Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openssl-secadv?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openssl-secadv_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openssl-secadv\"","tags":["indices"]}},"/v3/index/openstack":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenStack Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openstack?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openstack_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openstack\"","tags":["indices"]}},"/v3/index/openwrt":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenWrt Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openwrt?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openwrt_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openwrt\"","tags":["indices"]}},"/v3/index/oracle":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_oracle_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"oracle\"","tags":["indices"]}},"/v3/index/oracle-cpu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Critical Patch Update Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle-cpu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_oracle-cpu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"oracle-cpu\"","tags":["indices"]}},"/v3/index/oracle-cpu-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Critical Patch Updates CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle-cpu-csaf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_oracle-cpu-csaf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"oracle-cpu-csaf\"","tags":["indices"]}},"/v3/index/osv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the osv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Open Source Vulnerabilities Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/osv?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_osv_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"osv\"","tags":["indices"]}},"/v3/index/otrs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OTRS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/otrs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_otrs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"otrs\"","tags":["indices"]}},"/v3/index/owncloud":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OwnCloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/owncloud?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_owncloud_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"owncloud\"","tags":["indices"]}},"/v3/index/packetstorm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PacketStorm\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/packetstorm?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_packetstorm_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"packetstorm\"","tags":["indices"]}},"/v3/index/palantir":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Palantir Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/palantir?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_palantir_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"palantir\"","tags":["indices"]}},"/v3/index/palo-alto":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Palo Alto Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/palo-alto?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_palo-alto_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"palo-alto\"","tags":["indices"]}},"/v3/index/panasonic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Panasonic Vulnerability Advisory List\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/panasonic?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_panasonic_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"panasonic\"","tags":["indices"]}},"/v3/index/papercut":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PaperCut Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/papercut?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_papercut_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"papercut\"","tags":["indices"]}},"/v3/index/pega":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pega index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pega Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pega?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pega_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pega\"","tags":["indices"]}},"/v3/index/philips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the philips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Philips Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/philips?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_philips_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"philips\"","tags":["indices"]}},"/v3/index/phoenix-contact":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Phoenix Contact Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/phoenix-contact?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_phoenix-contact_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"phoenix-contact\"","tags":["indices"]}},"/v3/index/php-my-admin":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** phpMyAdmin Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/php-my-admin?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_php-my-admin_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"php-my-admin\"","tags":["indices"]}},"/v3/index/pkcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PK CERT Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pkcert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pkcert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pkcert\"","tags":["indices"]}},"/v3/index/postgressql":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PostgresSQL Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/postgressql?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_postgressql_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"postgressql\"","tags":["indices"]}},"/v3/index/powerdns":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PowerDNS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/powerdns?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_powerdns_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"powerdns\"","tags":["indices"]}},"/v3/index/progress":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the progress index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Progress Product Alert Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/progress?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_progress_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"progress\"","tags":["indices"]}},"/v3/index/proofpoint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Proofpoint Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/proofpoint?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_proofpoint_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"proofpoint\"","tags":["indices"]}},"/v3/index/ptc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PTC Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ptc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ptc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ptc\"","tags":["indices"]}},"/v3/index/pub":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pub index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pub (Dart/Flutter) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pub?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pub_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pub\"","tags":["indices"]}},"/v3/index/pure-storage":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pure Storage Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pure-storage?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pure-storage_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pure-storage\"","tags":["indices"]}},"/v3/index/pypa-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PyPA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pypa-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pypa-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pypa-advisories\"","tags":["indices"]}},"/v3/index/pypi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PyPi (Python) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pypi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pypi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pypi\"","tags":["indices"]}},"/v3/index/qnap":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** QNAP Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qnap?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qnap_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qnap\"","tags":["indices"]}},"/v3/index/qqids":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys QIDs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qqids?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qqids_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qqids\"","tags":["indices"]}},"/v3/index/qualcomm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualcomm Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualcomm?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qualcomm_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qualcomm\"","tags":["indices"]}},"/v3/index/qualys":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualys?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qualys_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qualys\"","tags":["indices"]}},"/v3/index/qualys-qids":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys QID\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualys-qids?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qualys-qids_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qualys-qids\"","tags":["indices"]}},"/v3/index/qubes-qsb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qubes Security Bulletin\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qubes-qsb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qubes-qsb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qubes-qsb\"","tags":["indices"]}},"/v3/index/ransomware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Ransomware\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ransomware?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ransomware_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ransomware\"","tags":["indices"]}},"/v3/index/red-lion":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Red-Lion Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/red-lion?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_red-lion_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"red-lion\"","tags":["indices"]}},"/v3/index/redhat":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Red Hat Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/redhat?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_redhat_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"redhat\"","tags":["indices"]}},"/v3/index/redhat-cves":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CSAF data for redhat\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/redhat-cves?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_redhat-cves_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"redhat-cves\"","tags":["indices"]}},"/v3/index/renesas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Renesas Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/renesas?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_renesas_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"renesas\"","tags":["indices"]}},"/v3/index/revive":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the revive index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Revive Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/revive?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_revive_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"revive\"","tags":["indices"]}},"/v3/index/roche":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the roche index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Roche Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/roche?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_roche_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"roche\"","tags":["indices"]}},"/v3/index/rockwell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rockwell Automation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rockwell?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rockwell_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rockwell\"","tags":["indices"]}},"/v3/index/rocky":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rocky_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rocky\"","tags":["indices"]}},"/v3/index/rocky-errata":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Errata\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky-errata?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rocky-errata_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rocky-errata\"","tags":["indices"]}},"/v3/index/rocky-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky-purls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rocky-purls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rocky-purls\"","tags":["indices"]}},"/v3/index/rsync":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rsync Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rsync?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rsync_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rsync\"","tags":["indices"]}},"/v3/index/ruckus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ruckus Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ruckus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ruckus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ruckus\"","tags":["indices"]}},"/v3/index/rustsec-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** RustSec Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rustsec-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rustsec-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rustsec-advisories\"","tags":["indices"]}},"/v3/index/sacert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Saudi CERT\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sacert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sacert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sacert\"","tags":["indices"]}},"/v3/index/safran":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the safran index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Safran Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/safran?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_safran_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"safran\"","tags":["indices"]}},"/v3/index/saint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the saint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SAINT Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/saint?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_saint_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"saint\"","tags":["indices"]}},"/v3/index/salesforce":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SalesForce Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/salesforce?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_salesforce_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"salesforce\"","tags":["indices"]}},"/v3/index/samba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the samba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Samba Security Releases\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/samba?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_samba_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"samba\"","tags":["indices"]}},"/v3/index/sandisk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sandisk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sandisk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sandisk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sandisk\"","tags":["indices"]}},"/v3/index/sans-dshield":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SANS DShield Honeypot Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sans-dshield?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sans-dshield_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sans-dshield\"","tags":["indices"]}},"/v3/index/sap":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sap index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SAP Security Patch Days\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sap?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sap_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sap\"","tags":["indices"]}},"/v3/index/schneider-electric":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schneider Electric Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/schneider-electric?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_schneider-electric_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"schneider-electric\"","tags":["indices"]}},"/v3/index/schutzwerk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schutzwerk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/schutzwerk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_schutzwerk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"schutzwerk\"","tags":["indices"]}},"/v3/index/sec-consult":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SEC Consult Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sec-consult?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sec-consult_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sec-consult\"","tags":["indices"]}},"/v3/index/securitylab":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Security Lab Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/securitylab?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_securitylab_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"securitylab\"","tags":["indices"]}},"/v3/index/seebug":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Seebug Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/seebug?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_seebug_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"seebug\"","tags":["indices"]}},"/v3/index/sel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schweitzer Engineering Laboratories Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sel\"","tags":["indices"]}},"/v3/index/sentinelone":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SentinelOne Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sentinelone?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sentinelone_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sentinelone\"","tags":["indices"]}},"/v3/index/servicenow":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ServiceNow CVE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/servicenow?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_servicenow_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"servicenow\"","tags":["indices"]}},"/v3/index/shadowserver-exploited":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Shadowserver Foundation Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/shadowserver-exploited?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_shadowserver-exploited_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"shadowserver-exploited\"","tags":["indices"]}},"/v3/index/shielder":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Shielder Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/shielder?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_shielder_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"shielder\"","tags":["indices"]}},"/v3/index/sick":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sick index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SICK Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sick?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sick_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sick\"","tags":["indices"]}},"/v3/index/siemens":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Siemens Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/siemens?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_siemens_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"siemens\"","tags":["indices"]}},"/v3/index/sierra-wireless":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sierra Wireless Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sierra-wireless?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sierra-wireless_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sierra-wireless\"","tags":["indices"]}},"/v3/index/sigmahq-sigma-rules":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sigma Rules\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sigmahq-sigma-rules?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sigmahq-sigma-rules_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sigmahq-sigma-rules\"","tags":["indices"]}},"/v3/index/singcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CSA Alerts and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/singcert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_singcert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"singcert\"","tags":["indices"]}},"/v3/index/sitecore":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sitecore Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sitecore?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sitecore_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sitecore\"","tags":["indices"]}},"/v3/index/slackware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Slackware Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/slackware?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_slackware_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"slackware\"","tags":["indices"]}},"/v3/index/solarwinds":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SolarWinds Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/solarwinds?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_solarwinds_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"solarwinds\"","tags":["indices"]}},"/v3/index/solr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the solr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Solr CVE Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/solr?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_solr_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"solr\"","tags":["indices"]}},"/v3/index/sonatype":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sonatype Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sonatype?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sonatype_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sonatype\"","tags":["indices"]}},"/v3/index/sonicwall":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SonicWall Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sonicwall?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sonicwall_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sonicwall\"","tags":["indices"]}},"/v3/index/spacelabs-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Spacelabs Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/spacelabs-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_spacelabs-healthcare_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"spacelabs-healthcare\"","tags":["indices"]}},"/v3/index/splunk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Splunk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/splunk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_splunk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"splunk\"","tags":["indices"]}},"/v3/index/spring":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the spring index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Spring Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/spring?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_spring_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"spring\"","tags":["indices"]}},"/v3/index/ssd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SSD Secure Disclosure Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ssd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ssd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ssd\"","tags":["indices"]}},"/v3/index/stormshield":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Stormshield Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/stormshield?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_stormshield_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"stormshield\"","tags":["indices"]}},"/v3/index/stryker":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Stryker Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/stryker?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_stryker_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"stryker\"","tags":["indices"]}},"/v3/index/sudo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sudo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sudo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sudo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sudo\"","tags":["indices"]}},"/v3/index/suse":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the suse index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SUSE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/suse?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_suse_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"suse\"","tags":["indices"]}},"/v3/index/suse-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Suse Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/suse-security?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_suse-security_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"suse-security\"","tags":["indices"]}},"/v3/index/swift":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the swift index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Swift packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/swift?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_swift_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"swift\"","tags":["indices"]}},"/v3/index/swisslog-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Swisslog Healthcare CVE Disclosures\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/swisslog-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_swisslog-healthcare_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"swisslog-healthcare\"","tags":["indices"]}},"/v3/index/symfony":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Symfony Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/symfony?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_symfony_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"symfony\"","tags":["indices"]}},"/v3/index/synacktiv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Synacktiv Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/synacktiv?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_synacktiv_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"synacktiv\"","tags":["indices"]}},"/v3/index/syncrosoft":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SyncroSoft Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/syncrosoft?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_syncrosoft_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"syncrosoft\"","tags":["indices"]}},"/v3/index/synology":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the synology index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Synology Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/synology?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_synology_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"synology\"","tags":["indices"]}},"/v3/index/syss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the syss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Syss Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/syss?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_syss_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"syss\"","tags":["indices"]}},"/v3/index/tailscale":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tailscale Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tailscale?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tailscale_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tailscale\"","tags":["indices"]}},"/v3/index/target-intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the target-intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Target Intelligence\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/target-intel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_target-intel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"CPE string","in":"query","name":"cpe","schema":{"type":"string"}},{"description":"Vendor name","in":"query","name":"vendor","schema":{"type":"string"}},{"description":"Product name","in":"query","name":"product","schema":{"type":"string"}},{"description":"Product version","in":"query","name":"version","schema":{"type":"string"}},{"description":"Protocol","in":"query","name":"protocol","schema":{"type":"string"}},{"description":"Port number","in":"query","name":"port","schema":{"type":"string"}},{"description":"Filter to records that have (true) or do not have (false) an associated CVE","in":"query","name":"contains_cve","schema":{"type":"boolean"}},{"description":"Match one or more classification values","in":"query","name":"classifications","schema":{"type":"string"}},{"description":"Match a string in the hostname","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_TargetIntel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"target-intel\"","tags":["indices"]}},"/v3/index/target-intel-cve-summary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the target-intel-cve-summary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Target Intelligence CVE Summary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel-cve-summary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/target-intel-cve-summary?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_target-intel-cve-summary_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_TargetIntelCVESummary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"target-intel-cve-summary\"","tags":["indices"]}},"/v3/index/teamviewer":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the teamviewer index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TeamViewer Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/teamviewer?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/teamviewer?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_teamviewer_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"teamviewer\"","tags":["indices"]}},"/v3/index/tenable-research-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tenable-research-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tenable Research Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tenable-research-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tenable-research-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tenable-research-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tenable-research-advisories\"","tags":["indices"]}},"/v3/index/tencent":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tencent index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tencent Vulnerability Risk Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tencent?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tencent?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tencent_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tencent\"","tags":["indices"]}},"/v3/index/thales":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the thales index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Thales Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/thales?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/thales?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_thales_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"thales\"","tags":["indices"]}},"/v3/index/themissinglink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the themissinglink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** the missing link Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/themissinglink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/themissinglink?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_themissinglink_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"themissinglink\"","tags":["indices"]}},"/v3/index/thermo-fisher":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the thermo-fisher index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Thermo Fisher Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/thermo-fisher?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/thermo-fisher?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_thermo-fisher_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"thermo-fisher\"","tags":["indices"]}},"/v3/index/threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Threat Actors Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_threat-actors_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"threat-actors\"","tags":["indices"]}},"/v3/index/ti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Texas Instruments Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ti?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ti_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ti\"","tags":["indices"]}},"/v3/index/tibco":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tibco index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TIBCO Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tibco?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tibco?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tibco_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tibco\"","tags":["indices"]}},"/v3/index/tp-link":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tp-link index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TP-Link Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tp-link?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tp-link?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tp-link_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tp-link\"","tags":["indices"]}},"/v3/index/trane-technology":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trane-technology index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trane Technology Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trane-technology?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trane-technology?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_trane-technology_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"trane-technology\"","tags":["indices"]}},"/v3/index/trendmicro":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trendmicro index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trend Micro Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trendmicro?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trendmicro?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_trendmicro_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"trendmicro\"","tags":["indices"]}},"/v3/index/trustwave":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trustwave index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trustwave Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trustwave?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trustwave?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_trustwave_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"trustwave\"","tags":["indices"]}},"/v3/index/twcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the twcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Taiwan CERT Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/twcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/twcert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_twcert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"twcert\"","tags":["indices"]}},"/v3/index/ubiquiti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubiquiti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubiquiti Security Advisory Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubiquiti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubiquiti?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ubiquiti_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ubiquiti\"","tags":["indices"]}},"/v3/index/ubuntu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubuntu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubuntu Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubuntu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubuntu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ubuntu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ubuntu\"","tags":["indices"]}},"/v3/index/ubuntu-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubuntu-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubuntu Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubuntu-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubuntu-purls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ubuntu-purls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ubuntu-purls\"","tags":["indices"]}},"/v3/index/unify":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the unify index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Unify Product Security Advisories and Security Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/unify?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/unify?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_unify_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"unify\"","tags":["indices"]}},"/v3/index/unisoc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the unisoc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** UNISOC Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/unisoc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/unisoc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_unisoc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"unisoc\"","tags":["indices"]}},"/v3/index/usd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the usd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** usd Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/usd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/usd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_usd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"usd\"","tags":["indices"]}},"/v3/index/usom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the usom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** USOM Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/usom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/usom?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_usom_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"usom\"","tags":["indices"]}},"/v3/index/vandyke":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vandyke index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VanDyke Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vandyke?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vandyke?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vandyke_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vandyke\"","tags":["indices"]}},"/v3/index/vapidlabs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vapidlabs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VapidLabs Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vapidlabs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vapidlabs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vapidlabs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vapidlabs\"","tags":["indices"]}},"/v3/index/vc-cpe-dictionary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vc-cpe-dictionary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck CPE Dictionary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vc-cpe-dictionary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vc-cpe-dictionary?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vc-cpe-dictionary_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vc-cpe-dictionary\"","tags":["indices"]}},"/v3/index/vde":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vde index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VDE CERT Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vde?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vde?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vde_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vde\"","tags":["indices"]}},"/v3/index/veeam":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the veeam index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Veeam Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/veeam?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/veeam?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_veeam_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"veeam\"","tags":["indices"]}},"/v3/index/veritas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the veritas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Veritas Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/veritas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/veritas?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_veritas_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"veritas\"","tags":["indices"]}},"/v3/index/virtuozzo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the virtuozzo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Virtuozzo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/virtuozzo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/virtuozzo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_virtuozzo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"virtuozzo\"","tags":["indices"]}},"/v3/index/vlc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vlc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VLC Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vlc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vlc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vlc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vlc\"","tags":["indices"]}},"/v3/index/vmware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vmware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VMWare Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vmware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vmware?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vmware_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vmware\"","tags":["indices"]}},"/v3/index/voidsec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the voidsec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VoidSec Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/voidsec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/voidsec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_voidsec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"voidsec\"","tags":["indices"]}},"/v3/index/vulncheck":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck\"","tags":["indices"]}},"/v3/index/vulncheck-canaries":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries\"","tags":["indices"]}},"/v3/index/vulncheck-canaries-10d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-10d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (10 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-10d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-10d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries-10d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-10d\"","tags":["indices"]}},"/v3/index/vulncheck-canaries-30d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-30d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (30 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-30d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-30d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries-30d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-30d\"","tags":["indices"]}},"/v3/index/vulncheck-canaries-3d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-3d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (3 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-3d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-3d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries-3d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-3d\"","tags":["indices"]}},"/v3/index/vulncheck-canaries-90d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-90d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (90 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-90d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-90d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries-90d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-90d\"","tags":["indices"]}},"/v3/index/vulncheck-config":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-config index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Configurations\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-config?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-config?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-config_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-config\"","tags":["indices"]}},"/v3/index/vulncheck-cvelist-v5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-cvelist-v5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck CVEList V5\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-cvelist-v5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-cvelist-v5?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-cvelist-v5_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-cvelist-v5\"","tags":["indices"]}},"/v3/index/vulncheck-kev":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-kev index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck KEV\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-kev?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-kev?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-kev_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-kev\"","tags":["indices"]}},"/v3/index/vulncheck-nvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-nvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck NVD\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-nvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-nvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-nvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-nvd\"","tags":["indices"]}},"/v3/index/vulncheck-nvd2":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-nvd2 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck NVD V2\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-nvd2?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-nvd2?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-nvd2_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-nvd2\"","tags":["indices"]}},"/v3/index/vulnerability-aliases":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulnerability-aliases index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vulnerability Aliases\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulnerability-aliases?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulnerability-aliases?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulnerability-aliases_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulnerability-aliases\"","tags":["indices"]}},"/v3/index/vulnrichment":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulnrichment index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Vulnrichment\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulnrichment?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulnrichment?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulnrichment_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulnrichment\"","tags":["indices"]}},"/v3/index/vyaire":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vyaire index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vyaire Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vyaire?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vyaire?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vyaire_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vyaire\"","tags":["indices"]}},"/v3/index/watchguard":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the watchguard index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Watchguard Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/watchguard?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/watchguard?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_watchguard_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"watchguard\"","tags":["indices"]}},"/v3/index/whatsapp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the whatsapp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** WhatsApp Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/whatsapp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/whatsapp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_whatsapp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"whatsapp\"","tags":["indices"]}},"/v3/index/wibu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wibu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wibu Systems Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wibu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wibu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wibu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wibu\"","tags":["indices"]}},"/v3/index/wireshark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wireshark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wireshark Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wireshark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wireshark?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wireshark_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wireshark\"","tags":["indices"]}},"/v3/index/with-secure":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the with-secure index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** With Secure Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/with-secure?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/with-secure?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_with-secure_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"with-secure\"","tags":["indices"]}},"/v3/index/wolfi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wolfi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wolfi Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wolfi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wolfi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wolfi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wolfi\"","tags":["indices"]}},"/v3/index/wolfssl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wolfssl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** WolfSSL Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wolfssl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wolfssl?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wolfssl_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wolfssl\"","tags":["indices"]}},"/v3/index/wordfence":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wordfence index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wordfence Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wordfence?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wordfence?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wordfence_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wordfence\"","tags":["indices"]}},"/v3/index/xen":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xen index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xen Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xen?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xen?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_xen_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"xen\"","tags":["indices"]}},"/v3/index/xerox":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xerox index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xerox Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xerox?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xerox?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_xerox_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"xerox\"","tags":["indices"]}},"/v3/index/xiaomi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xiaomi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xiaomi Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xiaomi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xiaomi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_xiaomi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"xiaomi\"","tags":["indices"]}},"/v3/index/xylem":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xylem index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xylem Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xylem?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xylem?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_xylem_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"xylem\"","tags":["indices"]}},"/v3/index/yamaha":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yamaha index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yamaha Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yamaha?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yamaha?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_yamaha_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"yamaha\"","tags":["indices"]}},"/v3/index/yokogawa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yokogawa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yokogawa Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yokogawa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yokogawa?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_yokogawa_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"yokogawa\"","tags":["indices"]}},"/v3/index/yubico":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yubico index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yubico Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yubico?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yubico?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_yubico_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"yubico\"","tags":["indices"]}},"/v3/index/zdi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zdi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zero Day Initiative Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zdi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zdi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zdi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zdi\"","tags":["indices"]}},"/v3/index/zebra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zebra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zebra Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zebra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zebra?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zebra_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zebra\"","tags":["indices"]}},"/v3/index/zebra-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zebra-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zebra End of Life Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zebra-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zebra-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zebra-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zebra-eol\"","tags":["indices"]}},"/v3/index/zeroscience":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zeroscience index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ZeroScience Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zeroscience?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zeroscience?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zeroscience_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zeroscience\"","tags":["indices"]}},"/v3/index/zimbra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zimbra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zimbra Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zimbra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zimbra?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zimbra_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zimbra\"","tags":["indices"]}},"/v3/index/zoom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zoom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zoom Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zoom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zoom?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zoom_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zoom\"","tags":["indices"]}},"/v3/index/zscaler":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zscaler index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zscaler Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zscaler?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zscaler?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zscaler_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zscaler\"","tags":["indices"]}},"/v3/index/zuso":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zuso index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ZUSO Vulnerability Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zuso?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zuso?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zuso_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zuso\"","tags":["indices"]}},"/v3/index/zyxel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zyxel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zyxel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zyxel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zyxel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zyxel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zyxel\"","tags":["indices"]}},"/v3/openapi":{"get":{"description":"Return the VulnCheck API (v3) OpenAPI specification","operationId":"openapi_get","responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return OpenAPI specification","tags":["endpoints"]}},"/v3/pdns/vulncheck-c2":{"get":{"description":"Retrieve a list of hostnames, identified as running Command \u0026 Control infrastructure.","operationId":"pdns_vulncheck-c2_get","parameters":[{"description":"Format of the Hostnames in the response (Defaults To: text)","in":"query","name":"format","schema":{"enum":["txt","json","text"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve a list of C2 Hostnames","tags":["endpoints"]}},"/v3/purl":{"get":{"description":"Based on the specified PURL, this endpoint will return a list of vulnerabilities that are related to the package. We currently support hex, golang, hackage, npm, and pypi","operationId":"purl_get","parameters":[{"description":"URL string used to identify and locate a software package","in":"query","name":"purl","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Request vulnerabilities related to a PURL","tags":["endpoints"]}},"/v3/purls":{"post":{"description":"Accepts a JSON array of PURLs in the request body and returns a list of vulnerabilities","operationId":"purls_post","requestBody":{"content":{"application/json":{"schema":{"items":{"type":"string"},"title":"purls","type":"array"}}},"description":"PURL strings used to identify and locate software packages","required":true},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Request vulnerabilities related to a list of PURLs","tags":["endpoints"]}},"/v3/rules/initial-access/{type}":{"get":{"description":"Retrieve set of initial-access detection rules by type","operationId":"rules_initial-access_type_get","parameters":[{"description":"Type of ruleset to retrieve","in":"path","name":"type","required":true,"schema":{"enum":["snort","suricata"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve set of initial-access detection rules","tags":["endpoints"]}},"/v3/search/cpe":{"get":{"description":"Based on the specified CPE (Common Platform Enumeration) fields, this endpoint will return a list of matching CPEs and the related CVE vulnerabilities.","operationId":"search_cpe_get","parameters":[{"description":"CPE part to lookup","example":"[a]pplication, [o]perating system, [h]ardware","in":"query","name":"part","schema":{"type":"string"}},{"description":"CPE vendor to lookup","in":"query","name":"vendor","schema":{"type":"string"}},{"description":"CPE product to lookup","in":"query","name":"product","schema":{"type":"string"}},{"description":"CPE version to lookup","in":"query","name":"version","schema":{"type":"string"}},{"description":"Filter by vulnerability status (true/false). Defaults to false if not provided.","in":"query","name":"isVulnerable","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-search_Responses-search_ResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return CPEs and associated CPEs by searching CPE fields","tags":["endpoints"]}},"/v3/search/cve":{"get":{"description":"Returns all records referencing the specified CVE across all accessible indices. Results are aggregated\nfrom multiple data sources including advisories, exploits, threat intelligence, and vulnerability databases.\nMetadata is returned in the _meta field.","operationId":"search_cve_get","parameters":[{"description":"CVE ID to search for (e.g. CVE-2024-1234)","in":"query","name":"cve","required":true,"schema":{"type":"string"}},{"description":"Page number (default: 1, page mode only)","in":"query","name":"page","schema":{"type":"integer"}},{"description":"Maximum number of results per page (default: 500, max: 1000)","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"Continue cursor paging, or use an empty value to start cursor paging","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"Start cursor paging","in":"query","name":"start_cursor","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_index_CveSearchHit-index_CveSearchMeta"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Unauthorized"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Search all indices for a CVE","tags":["endpoints"]}},"/v3/tags/vulncheck-c2":{"get":{"description":"Retrieve a list of IP addresses, identified as running Command \u0026 Control infrastructure","operationId":"tags_vulncheck-c2_get","parameters":[{"description":"Format of the IP Addresses in the response (Defaults To: text)","in":"query","name":"format","schema":{"enum":["txt","json","text"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve a list of C2 IP addresses","tags":["endpoints"]}},"/v4/advisory":{"get":{"description":"Query the VulnCheck v4 advisory index","operationId":"v4QueryAdvisories","parameters":[{"description":"Filter by advisory feed name (e.g. 'vulncheck')","in":"query","name":"name","schema":{"type":"string"}},{"description":"Filter by CVE ID (e.g. 'CVE-2024-1234')","in":"query","name":"cve_id","schema":{"type":"string"}},{"description":"Filter by vendor name","in":"query","name":"vendor","schema":{"type":"string"}},{"description":"Filter by product name","in":"query","name":"product","schema":{"type":"string"}},{"description":"Filter by OS/platform","in":"query","name":"platform","schema":{"type":"string"}},{"description":"Filter by product version (semver-aware)","in":"query","name":"version","schema":{"type":"string"}},{"description":"Filter by CPE (e.g. 'cpe:2.3:a:vendor:product:*')","in":"query","name":"cpe","schema":{"type":"string"}},{"description":"Filter by package name","in":"query","name":"package_name","schema":{"type":"string"}},{"description":"Filter by package URL (PURL)","in":"query","name":"purl","schema":{"type":"string"}},{"description":"Filter by reference URL","in":"query","name":"reference_url","schema":{"type":"string"}},{"description":"Filter by reference tag (e.g. 'patch', 'advisory')","in":"query","name":"reference_tag","schema":{"type":"string"}},{"description":"Filter by description language (e.g. 'en')","in":"query","name":"description_lang","schema":{"type":"string"}},{"description":"Return advisories updated after this date (RFC3339 or date-math e.g. 'now-30d')","in":"query","name":"updatedAfter","schema":{"type":"string"}},{"description":"Return advisories updated before this date (RFC3339 or date-math)","in":"query","name":"updatedBefore","schema":{"type":"string"}},{"description":"Page number (default: 1)","in":"query","name":"page","schema":{"type":"integer"}},{"description":"Results per page, max 100 (default: 10)","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"Presence activates cursor mode from the first page (value is ignored; cannot be combined with page)","in":"query","name":"start_cursor","schema":{"type":"string"}},{"description":"Cursor from previous response _meta.next_cursor to fetch the next page","in":"query","name":"cursor","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.V4AdvisoryReturnValue"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Unauthorized"},"402":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Payment Required"},"503":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Query advisories","tags":["advisory"]}},"/v4/advisory/list":{"get":{"description":"Return a list of available advisory feed names","operationId":"v4ListAdvisoryFeeds","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.V4ListFeedReturnValue"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Unauthorized"},"402":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Payment Required"},"503":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"List advisory feeds","tags":["advisory"]}},"/v4/backup":{"get":{"description":"Returns the list of advisory feeds for which a backup can be requested","operationId":"v4ListBackups","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/backup.ListBackupsResponse"}}},"description":"OK"},"401":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Unauthorized"},"503":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"List available backups","tags":["backup"]}},"/v4/backup/{index}":{"get":{"description":"Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL","operationId":"v4GetBackupByName","parameters":[{"description":"Feed name (e.g. 'vulncheck')","in":"path","name":"index","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/backup.BackupResponse"}}},"description":"OK"},"401":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Unauthorized"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"503":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Get backup by feed name","tags":["backup"]}}},"servers":[{"url":"https://api.vulncheck.com"}]} \ No newline at end of file +{"components":{"schemas":{"advisory.A10":{"description":"advisory.A10","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"reference":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ABBAdvisory":{"description":"advisory.ABBAdvisory","properties":{"abb_vulnerability_id":{"items":{"type":"string"},"type":"array","uniqueItems":false},"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"document_id":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ADP":{"description":"advisory.ADP","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.VulnrichmentMetric"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"}},"type":"object"},"advisory.ADPContainer":{"description":"advisory.ADPContainer","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"configurations":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"cpeApplicability":{"items":{"$ref":"#/components/schemas/advisory.CustomCPE"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.Credit"},"type":"array","uniqueItems":false},"datePublic":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"exploits":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"solutions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"source":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"taxonomyMappings":{"items":{"$ref":"#/components/schemas/advisory.TaxonomyMapping"},"type":"array","uniqueItems":false},"timeline":{"items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"title":{"type":"string"},"workarounds":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AIX":{"description":"advisory.AIX","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AMD":{"description":"advisory.AMD","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AMI":{"description":"advisory.AMI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ASRG":{"description":"advisory.ASRG","properties":{"affected_products":{"type":"string"},"capec":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"problem_type":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AVEVAAdvisory":{"description":"advisory.AVEVAAdvisory","properties":{"aveva_vulnerability_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"published_by":{"type":"string"},"rating":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AVIDMLAdvs":{"description":"advisory.AVIDMLAdvs","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AWS":{"description":"advisory.AWS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Abbott":{"description":"advisory.Abbott","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Absolute":{"description":"advisory.Absolute","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Acknowledgement":{"description":"advisory.Acknowledgement","properties":{"name":{"items":{"$ref":"#/components/schemas/advisory.IVal"},"type":"array","uniqueItems":false},"url":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Acronis":{"description":"advisory.Acronis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AdobeAdvisory":{"description":"advisory.AdobeAdvisory","properties":{"adobe_cves":{"items":{"$ref":"#/components/schemas/advisory.AdobeCVE"},"type":"array","uniqueItems":false},"affected":{"items":{"$ref":"#/components/schemas/advisory.AdobeAffected"},"type":"array"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"solutions":{"items":{"$ref":"#/components/schemas/advisory.AdobeSolution"},"type":"array"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AdobeAffected":{"description":"advisory.AdobeAffected","properties":{"platform":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AdobeCVE":{"description":"advisory.AdobeCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.AdobeSolution":{"description":"advisory.AdobeSolution","properties":{"platform":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Advantech":{"description":"advisory.Advantech","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Advisory":{"description":"advisory.Advisory","properties":{"affects":{"type":"string"},"announced":{"type":"string"},"category":{"type":"string"},"corrections":{"items":{"$ref":"#/components/schemas/advisory.Correction"},"type":"array"},"credits":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"module":{"type":"string"},"name":{"type":"string"},"topic":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AdvisoryDetails":{"description":"advisory.AdvisoryDetails","properties":{"bugzilla":{"$ref":"#/components/schemas/advisory.Bugzilla"},"cve":{"$ref":"#/components/schemas/advisory.OvalCVE"},"issued":{"$ref":"#/components/schemas/advisory.Issued"},"severity":{"type":"string"},"updated":{"$ref":"#/components/schemas/advisory.Updated"}},"type":"object"},"advisory.AdvisoryRecord":{"description":"advisory.AdvisoryRecord","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"external_id":{"items":{"type":"string"},"type":"array","uniqueItems":false},"lang":{"type":"string"},"name":{"type":"string"},"refsource":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.Affected":{"description":"advisory.Affected","properties":{"database_specific":{"description":"The meaning of the values within the object is entirely defined by the database"},"ecosystem_specific":{"description":"The meaning of the values within the object is entirely defined by the ecosystem"},"package":{"$ref":"#/components/schemas/advisory.OSVPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.Range"},"type":"array","uniqueItems":false},"severity":{"items":{"$ref":"#/components/schemas/advisory.Severity"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AffectedChrome":{"description":"advisory.AffectedChrome","properties":{"fixed_version":{"type":"string"},"product":{"type":"string"}},"type":"object"},"advisory.AffectedDebianPackage":{"description":"advisory.AffectedDebianPackage","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AffectedDebianRelease":{"description":"advisory.AffectedDebianRelease","properties":{"fixed_version":{"type":"string"},"nodsa":{"type":"string"},"nodsa_reason":{"type":"string"},"release_name":{"type":"string"},"repositories":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianRepository"},"type":"array","uniqueItems":false},"status":{"type":"string"},"urgency":{"type":"string"}},"type":"object"},"advisory.AffectedDebianRepository":{"description":"advisory.AffectedDebianRepository","properties":{"repository_name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AffectedFile":{"description":"advisory.AffectedFile","properties":{"file_last_modified":{"type":"string"},"file_name":{"type":"string"}},"type":"object"},"advisory.AffectedProduct":{"description":"advisory.AffectedProduct","properties":{"affectedReleases":{"type":"string"},"fixedReleases":{"type":"string"},"lexmarkModels":{"type":"string"}},"type":"object"},"advisory.AffectedRel":{"description":"advisory.AffectedRel","properties":{"advisory":{"type":"string"},"cpe":{"type":"string"},"package":{"type":"string"},"product_name":{"type":"string"},"release_date":{"type":"string"}},"type":"object"},"advisory.AffectedUbuntuPackage":{"description":"advisory.AffectedUbuntuPackage","properties":{"break_commit_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fix_commit_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package_name":{"type":"string"},"package_release_status":{"items":{"$ref":"#/components/schemas/advisory.UbuntuPackageReleaseStatus"},"type":"array","uniqueItems":false},"upstream_fix_url":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AlephResearch":{"description":"advisory.AlephResearch","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Alibaba":{"description":"advisory.Alibaba","properties":{"cnnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"mitigation_cn":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_cn":{"type":"string"},"title_cn":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AlmaDate":{"description":"advisory.AlmaDate","properties":{"$date":{"type":"integer"}},"type":"object"},"advisory.AlmaLinuxUpdate":{"description":"advisory.AlmaLinuxUpdate","properties":{"bs_repo_id":{"$ref":"#/components/schemas/advisory.AlmaObjectID"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fromstr":{"type":"string"},"id":{"$ref":"#/components/schemas/advisory.AlmaObjectID"},"issued_date":{"$ref":"#/components/schemas/advisory.AlmaDate"},"pkglist":{"$ref":"#/components/schemas/advisory.AlmaPackageList"},"pushcount":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.AlmaReference"},"type":"array","uniqueItems":false},"release":{"type":"string"},"rights":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"update_url":{"type":"string"},"updated_date":{"$ref":"#/components/schemas/advisory.AlmaDate"},"updateinfo_id":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AlmaObjectID":{"description":"advisory.AlmaObjectID","properties":{"$oid":{"type":"string"}},"type":"object"},"advisory.AlmaPackage":{"description":"advisory.AlmaPackage","properties":{"arch":{"type":"string"},"epoch":{"type":"string"},"filename":{"type":"string"},"name":{"type":"string"},"reboot_suggested":{"type":"integer"},"release":{"type":"string"},"source":{"type":"string"},"sum":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.AlmaPackageList":{"description":"advisory.AlmaPackageList","properties":{"name":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.AlmaPackage"},"type":"array","uniqueItems":false},"shortname":{"type":"string"}},"type":"object"},"advisory.AlmaReference":{"description":"advisory.AlmaReference","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.AlpineLinuxSecDB":{"description":"advisory.AlpineLinuxSecDB","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"distroversion":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecDBPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.AlpineLinuxSecDBPackage":{"description":"advisory.AlpineLinuxSecDBPackage","properties":{"package_name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecurityFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AlpineLinuxSecurityFix":{"description":"advisory.AlpineLinuxSecurityFix","properties":{"cve":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"advisory.AmazonAffectedPackage":{"description":"advisory.AmazonAffectedPackage","properties":{"advisory":{"type":"string"},"package":{"type":"string"},"platform":{"type":"string"},"releaseDate":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.AmazonCVE":{"description":"advisory.AmazonCVE","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AmazonAffectedPackage"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AnchoreNVDOverride":{"description":"advisory.AnchoreNVDOverride","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"override":{"$ref":"#/components/schemas/advisory.Override"},"url":{"type":"string"}},"type":"object"},"advisory.AndroidAdvisory":{"description":"advisory.AndroidAdvisory","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AndroidAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.AndroidReference"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AndroidAffected":{"description":"advisory.AndroidAffected","properties":{"ecosystem_specific":{"$ref":"#/components/schemas/advisory.EcoSystem"},"package":{"$ref":"#/components/schemas/advisory.AndroidPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.AndroidRange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.AndroidEvent":{"description":"advisory.AndroidEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.AndroidPackage":{"description":"advisory.AndroidPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.AndroidRange":{"description":"advisory.AndroidRange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.AndroidEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.AndroidReference":{"description":"advisory.AndroidReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AnthropicCVD":{"description":"advisory.AnthropicCVD","properties":{"attribution":{"$ref":"#/components/schemas/advisory.Credit"},"bug_class":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_committed":{"type":"string"},"entry":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"hash":{"type":"string"},"project":{"type":"string"},"raw_preimage":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"severities":{"$ref":"#/components/schemas/advisory.CVDSeverityCompare"},"snapshot":{"$ref":"#/components/schemas/advisory.CVDSnapshot"},"status":{"type":"string"},"timeline":{"description":"Timeline / Attribution / Severities come from the detail-page HTML\n(parsed at ingest, not from any JSON document). Revealed-only.","items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheActiveMQ":{"description":"advisory.ApacheActiveMQ","properties":{"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheArchiva":{"description":"advisory.ApacheArchiva","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheArrow":{"description":"advisory.ApacheArrow","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCamel":{"description":"advisory.ApacheCamel","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCommons":{"description":"advisory.ApacheCommons","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheCouchDB":{"description":"advisory.ApacheCouchDB","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheFlink":{"description":"advisory.ApacheFlink","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.ApacheGuacamole":{"description":"advisory.ApacheGuacamole","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheHTTP":{"description":"advisory.ApacheHTTP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheHadoop":{"description":"advisory.ApacheHadoop","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheJSPWiki":{"description":"advisory.ApacheJSPWiki","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheKafka":{"description":"advisory.ApacheKafka","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheLoggingServices":{"description":"advisory.ApacheLoggingServices","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheNiFi":{"description":"advisory.ApacheNiFi","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed_versions":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOFBiz":{"description":"advisory.ApacheOFBiz","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOpenMeetings":{"description":"advisory.ApacheOpenMeetings","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheOpenOffice":{"description":"advisory.ApacheOpenOffice","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApachePulsar":{"description":"advisory.ApachePulsar","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheShiro":{"description":"advisory.ApacheShiro","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheSpark":{"description":"advisory.ApacheSpark","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheStruts":{"description":"advisory.ApacheStruts","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"rating":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vulnerable_version":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ApacheSubversion":{"description":"advisory.ApacheSubversion","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheSuperset":{"description":"advisory.ApacheSuperset","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheTomcat":{"description":"advisory.ApacheTomcat","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ApacheZooKeeper":{"description":"advisory.ApacheZooKeeper","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppCheck":{"description":"advisory.AppCheck","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Appgate":{"description":"advisory.Appgate","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppleAdvisory":{"description":"advisory.AppleAdvisory","properties":{"components":{"items":{"$ref":"#/components/schemas/advisory.AppleComponent"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AppleComponent":{"description":"advisory.AppleComponent","properties":{"available_for":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"impact":{"type":"string"},"itw_exploit":{"type":"boolean"},"name":{"type":"string"}},"type":"object"},"advisory.ArchIssue":{"description":"advisory.ArchIssue","properties":{"advisories":{"items":{"type":"string"},"type":"array"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"issues":{"description":"cves","items":{"type":"string"},"type":"array"},"name":{"type":"string"},"packages":{"items":{"type":"string"},"type":"array"},"references":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"status":{"type":"string"},"ticket":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Arista":{"description":"advisory.Arista","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Aruba":{"description":"advisory.Aruba","properties":{"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AssetNote":{"description":"advisory.AssetNote","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Asterisk":{"description":"advisory.Asterisk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Astra":{"description":"advisory.Astra","properties":{"bdu":{"items":{"type":"string"},"type":"array","uniqueItems":false},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_ru":{"type":"string"},"title_ru":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Asus":{"description":"advisory.Asus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AtlassianAdvisory":{"description":"advisory.AtlassianAdvisory","properties":{"affected_version":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"detailed_summary":{"description":"overloading in places with 'RiskAssessment' and other places with\n'Description'","type":"string"},"fixed_version":{"type":"string"},"link":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.AtlassianProducts":{"description":"advisory.AtlassianProducts","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"}},"type":"object"},"advisory.AtlassianVuln":{"description":"advisory.AtlassianVuln","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"$ref":"#/components/schemas/advisory.AtlassianProducts"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Atredis":{"description":"advisory.Atredis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendors":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Audiocodes":{"description":"advisory.Audiocodes","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.AusCert":{"description":"advisory.AusCert","properties":{"body":{"type":"string"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"link":{"type":"string"},"operatingSystem":{"type":"string"},"product":{"type":"string"},"publisher":{"type":"string"},"resolution":{"type":"string"}},"type":"object"},"advisory.AustinHackersAdvisory":{"description":"advisory.AustinHackersAdvisory","properties":{"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"description":"From detail page (omitted for external-linked CVEs)","type":"number"},"cvss_vector":{"type":"string"},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"gcve":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"description":"From index table","type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Autodesk":{"description":"advisory.Autodesk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Avaya":{"description":"advisory.Avaya","properties":{"advisory_number":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"last_revised":{"type":"string"},"overview":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Avigilon":{"description":"advisory.Avigilon","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Award":{"description":"advisory.Award","properties":{"amount":{"type":"string"},"currency":{"type":"string"}},"type":"object"},"advisory.Axis":{"description":"advisory.Axis","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Azul":{"description":"advisory.Azul","properties":{"base_score":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"prime_version":{"items":{"$ref":"#/components/schemas/advisory.PrimeVersion"},"type":"array","uniqueItems":false},"release":{"type":"string"},"url":{"type":"string"},"zulu_version":{"items":{"$ref":"#/components/schemas/advisory.ZuluVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BBraunAdvisory":{"description":"advisory.BBraunAdvisory","properties":{"attention":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"equipment":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"},"vulnerabilities":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BDUAdvisory":{"description":"advisory.BDUAdvisory","properties":{"bdu_id":{"description":"BDU:2022-03833","type":"string"},"cve":{"description":"[]string{\"CVE-2022-28194\"}","items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"$ref":"#/components/schemas/advisory.BDUCvss"},"cvss3":{"$ref":"#/components/schemas/advisory.BDUCvss3"},"cwe":{"description":"CWE-119","type":"string"},"date_added":{"type":"string"},"description_ru":{"description":"Библиотека libxml2 до версии 2.9.12 не корректно обрабатывает XML-документы, содержащие определенные сущности. В результате могут быть выполнены произвольные команды.","type":"string"},"environment":{"$ref":"#/components/schemas/advisory.BDUEnvironment"},"exploit_status_en":{"description":"Exploited","type":"string"},"exploit_status_ru":{"description":"Exploited","type":"string"},"fix_status_en":{"description":"Fixed","type":"string"},"fix_status_ru":{"description":"Fixed","type":"string"},"identify_date":{"description":"2022-09-01","type":"string"},"name_ru":{"description":"BDU:2022-03833: Уязвимость модуля Cboot (tegrabl_cbo.c) пакета драйверов микропрограммного обеспечения вычислительных плат NVIDIA Jetson, позволяющая нарушителю выполнить произвольный код или вызвать частичный отказ в обслуживании","type":"string"},"severity_ru":{"description":"High","type":"string"},"solution_ru":{"description":"Обновите драйверы микропрограммного обеспечения вычислительных плат NVIDIA Jetson до версии 32.6.1 или более поздней","type":"string"},"sources":{"description":"https://nvd.nist.gov/vuln/detail/CVE-2022-28194","items":{"type":"string"},"type":"array","uniqueItems":false},"text_ru":{"description":"Библиотека libxml2 до версии 2.9.12 не корректно обрабатывает XML-документы, содержащие определенные сущности. В результате могут быть выполнены произвольные команды.","type":"string"},"url":{"description":"https://bdu.fstec.ru/vul/2022-03833","type":"string"},"vul_status_en":{"description":"Exploitable","type":"string"},"vul_status_ru":{"description":"Exploitable","type":"string"},"vulnerable_software":{"$ref":"#/components/schemas/advisory.BDUVulnerableSoftware"}},"type":"object"},"advisory.BDUCvss":{"description":"advisory.BDUCvss","properties":{"vector":{"$ref":"#/components/schemas/advisory.BDUVector"}},"type":"object"},"advisory.BDUCvss3":{"description":"advisory.BDUCvss3","properties":{"vector":{"$ref":"#/components/schemas/advisory.BDUVector"}},"type":"object"},"advisory.BDUEnvironment":{"description":"advisory.BDUEnvironment","properties":{"os":{"$ref":"#/components/schemas/advisory.BDUOs"}},"type":"object"},"advisory.BDUOs":{"description":"advisory.BDUOs","properties":{"name":{"type":"string"},"platform":{"type":"string"},"text":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BDUSoft":{"description":"advisory.BDUSoft","properties":{"name":{"type":"string"},"platform":{"type":"string"},"text":{"type":"string"},"types":{"$ref":"#/components/schemas/advisory.BDUTypes"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BDUTypes":{"description":"advisory.BDUTypes","properties":{"text":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.BDUVector":{"description":"advisory.BDUVector","properties":{"score":{"type":"string"},"text":{"type":"string"}},"type":"object"},"advisory.BDUVulnerableSoftware":{"description":"advisory.BDUVulnerableSoftware","properties":{"soft":{"$ref":"#/components/schemas/advisory.BDUSoft"}},"type":"object"},"advisory.BLS":{"description":"advisory.BLS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"prodcut":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.Bandr":{"description":"advisory.Bandr","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"document_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BaxterAdvisory":{"description":"advisory.BaxterAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BeckhoffAdvisory":{"description":"advisory.BeckhoffAdvisory","properties":{"beckhoff_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"description":"if in the future we can delete this great - it's just a dupe to\nnormalize the field names","type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.BeckmanCoulter":{"description":"advisory.BeckmanCoulter","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BectonDickinsonAdvisory":{"description":"advisory.BectonDickinsonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products_affected":{"items":{"$ref":"#/components/schemas/advisory.ProductsAffected"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BeldenAdvisory":{"description":"advisory.BeldenAdvisory","properties":{"belden_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.BeyondTrust":{"description":"advisory.BeyondTrust","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Binarly":{"description":"advisory.Binarly","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BitDefender":{"description":"advisory.BitDefender","properties":{"additional_details":{"type":"string"},"affected_products":{"type":"string"},"affected_vendors":{"type":"string"},"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"details":{"type":"string"},"timeline":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BlackBerry":{"description":"advisory.BlackBerry","properties":{"bsrt":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BoschAdvisory":{"description":"advisory.BoschAdvisory","properties":{"bosch_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.BostonScientificAdvisory":{"description":"advisory.BostonScientificAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Botnet":{"description":"advisory.Botnet","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"botnet_name":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Bugzilla":{"description":"advisory.Bugzilla","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CACyberCentreAdvisory":{"description":"advisory.CACyberCentreAdvisory","properties":{"control_systems":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"html_url":{"type":"string"},"serial_number":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CBLMariner":{"description":"advisory.CBLMariner","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"package":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CERTEUAdvisory":{"description":"advisory.CERTEUAdvisory","properties":{"advisoryId":{"type":"string"},"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"history":{"items":{"type":"string"},"type":"array"},"link":{"type":"string"},"recommendations":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"technicalDetails":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CESA":{"description":"advisory.CESA","properties":{"arch":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"issueDate":{"type":"string"},"osRelease":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.CentosPackage"},"type":"array"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"}},"type":"object"},"advisory.CISAAlert":{"description":"advisory.CISAAlert","properties":{"AffectedProducts":{"type":"string"},"AlertID":{"type":"string"},"Archived":{"type":"boolean"},"CVEExploitedITW":{"type":"boolean"},"CVSS":{"type":"string"},"ICSA":{"type":"boolean"},"ICSMA":{"type":"boolean"},"Mitigations":{"type":"string"},"ReleaseDate":{"type":"string"},"Title":{"type":"string"},"Url":{"type":"string"},"Vendor":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CISControl":{"description":"advisory.CISControl","properties":{"cis_control_description":{"type":"string"},"cis_control_id":{"type":"string"},"cis_control_name":{"type":"string"}},"type":"object"},"advisory.CNNVDEntryJSON":{"description":"advisory.CNNVDEntryJSON","properties":{"bugtraq-id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"modified-date":{"type":"string"},"name_cn":{"type":"string"},"published-date":{"type":"string"},"severity_cn":{"type":"string"},"severity_en":{"type":"string"},"source":{"type":"string"},"url":{"type":"string"},"vuln-description_cn":{"type":"string"},"vuln-solution":{"type":"string"},"vuln-type_cn":{"type":"string"},"vuln-type_en":{"type":"string"}},"type":"object"},"advisory.CNVDBulletin":{"description":"advisory.CNVDBulletin","properties":{"cnta":{"type":"string"},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"reference_urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CNVDFlaw":{"description":"advisory.CNVDFlaw","properties":{"affected_products_cn":{"type":"string"},"bugtraq_id":{"type":"string"},"cnvd":{"type":"string"},"collection_time":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"harm_level":{"type":"string"},"id":{"type":"string"},"public_date":{"type":"string"},"reference_urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"submission_time":{"type":"string"},"title_cn":{"type":"string"},"update_time":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"validation_info_cn":{"type":"string"},"validation_info_en":{"type":"string"},"vendor_patch_cn":{"type":"string"},"vuln_attachments":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vuln_description_cn":{"type":"string"},"vuln_solution_cn":{"type":"string"},"vuln_type_cn":{"type":"string"}},"type":"object"},"advisory.COSUpdate":{"description":"advisory.COSUpdate","properties":{"changed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"featured":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"reference":{"type":"string"},"security":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated":{"type":"string"}},"type":"object"},"advisory.CPEMatch":{"description":"advisory.CPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.CPENode":{"description":"advisory.CPENode","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.CPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.CSAF":{"description":"advisory.CSAF","properties":{"document":{"$ref":"#/components/schemas/advisory.DocumentMetadata"},"notes":{"description":"Notes holds notes associated with the whole document.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3217-document-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_tree":{"$ref":"#/components/schemas/advisory.ProductBranch"},"vulnerabilities":{"description":"Vulnerabilities contains information about the vulnerabilities,\n(i.e. CVEs), associated threats, and product status.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#323-vulnerabilities-property","items":{"$ref":"#/components/schemas/advisory.CSAFVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CSAFDistribution":{"description":"advisory.CSAFDistribution","type":"object"},"advisory.CSAFNote":{"description":"advisory.CSAFNote","properties":{"audience":{"type":"string"},"category":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CSAFReference":{"description":"advisory.CSAFReference","properties":{"category":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CSAFRelationship":{"description":"advisory.CSAFRelationship","properties":{"category":{"type":"string"},"full_product_name":{"$ref":"#/components/schemas/advisory.Product"},"product_reference":{"type":"string"},"relates_to_product_reference":{"type":"string"}},"type":"object"},"advisory.CSAFScore":{"description":"advisory.CSAFScore","properties":{"cvss_v2":{"$ref":"#/components/schemas/advisory.CVSSV2"},"cvss_v3":{"$ref":"#/components/schemas/advisory.CVSSV3"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CSAFVulnerability":{"description":"advisory.CSAFVulnerability","properties":{"cve":{"description":"MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3232-vulnerabilities-property---cve","type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.Cwe"},"flags":{"description":"Machine readable flags for products related to vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3235-vulnerabilities-property---flags","items":{"$ref":"#/components/schemas/advisory.Flag"},"type":"array","uniqueItems":false},"ids":{"description":"List of IDs represents a list of unique labels or tracking IDs for the vulnerability (if such information exists).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3236-vulnerabilities-property---ids","items":{"$ref":"#/components/schemas/advisory.TrackingID"},"type":"array","uniqueItems":false},"notes":{"description":"Notes holds notes associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3238-vulnerabilities-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_status":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Provide details on the status of the referenced product related to the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3239-vulnerabilities-property---product-status","type":"object"},"references":{"description":"Vulnerability references holds a list of references associated with this vulnerability item.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32310-vulnerabilities-property---references","items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"remediations":{"description":"Provide details of remediations associated with a Vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32312-vulnerabilities-property---remediations","items":{"$ref":"#/components/schemas/advisory.RemediationData"},"type":"array","uniqueItems":false},"scores":{"description":"Scores holds the scores associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32313-vulnerabilities-property---scores\nCurrently only CVSS v3 is supported.","items":{"$ref":"#/components/schemas/advisory.CSAFScore"},"type":"array","uniqueItems":false},"threats":{"description":"Provide details of threats associated with a vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32314-vulnerabilities-property---threats","items":{"$ref":"#/components/schemas/advisory.ThreatData"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CVDSeverityCompare":{"description":"advisory.CVDSeverityCompare","properties":{"claude":{"type":"string"},"maintainer":{"type":"string"},"security_research_firm":{"type":"string"}},"type":"object"},"advisory.CVDSnapshot":{"description":"Snapshot provenance — which payload.json snapshot this record came\nfrom. ManifestSHA3 + Revision + AsOf are stable per-snapshot.","properties":{"as_of":{"type":"string"},"fetched_at":{"type":"string"},"manifest_sha3":{"type":"string"},"revision":{"type":"integer"}},"type":"object"},"advisory.CVEDetail":{"description":"advisory.CVEDetail","properties":{"baseScore":{"type":"string"},"cveid":{"type":"string"},"description":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.CVEDetailsLink":{"description":"advisory.CVEDetailsLink","properties":{"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.CVEIdentityMappings":{"description":"advisory.CVEIdentityMappings","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"mappings":{"items":{"$ref":"#/components/schemas/advisory.CVEMapping"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CVEMapping":{"description":"advisory.CVEMapping","properties":{"id":{"type":"string"},"source":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CVEReference":{"description":"advisory.CVEReference","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CVSS":{"description":"advisory.CVSS","properties":{"score":{"type":"string"},"severity":{"type":"string"},"type":{"type":"string"},"vector":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CVSSV2":{"description":"advisory.CVSSV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"collateralDamagePotential":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"exploitability":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"targetDistribution":{"type":"string"},"temporalScore":{"type":"number"}},"type":"object"},"advisory.CVSSV3":{"description":"advisory.CVSSV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CVSSV40":{"description":"this isn't called baseMetric, because it can contain other metrics -- typically supplemental metrics","properties":{"Automatable":{"type":"string"},"Recovery":{"type":"string"},"Safety":{"type":"string"},"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityRequirement":{"type":"string"},"exploitMaturity":{"type":"string"},"integrityRequirement":{"type":"string"},"modifiedAttackComplexity":{"type":"string"},"modifiedAttackRequirements":{"type":"string"},"modifiedAttackVector":{"type":"string"},"modifiedPrivilegesRequired":{"type":"string"},"modifiedSubAvailabilityImpact":{"type":"string"},"modifiedSubConfidentialityImpact":{"type":"string"},"modifiedSubIntegrityImpact":{"type":"string"},"modifiedUserInteraction":{"type":"string"},"modifiedVulnAvailabilityImpact":{"type":"string"},"modifiedVulnConfidentialityImpact":{"type":"string"},"modifiedVulnIntegrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"providerUrgency":{"type":"string"},"subAvailabilityImpact":{"type":"string"},"subConfidentialityImpact":{"type":"string"},"subIntegrityImpact":{"type":"string"},"userInteraction":{"type":"string"},"valueDensity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"},"vulnAvailabilityImpact":{"type":"string"},"vulnConfidentialityImpact":{"type":"string"},"vulnIntegrityImpact":{"type":"string"},"vulnerabilityResponseEffort":{"type":"string"}},"type":"object"},"advisory.CVSSV40Threat":{"description":"advisory.CVSSV40Threat","properties":{"baseThreatScore":{"type":"number"},"baseThreatSeverity":{"type":"string"},"exploitMaturity":{"type":"string"}},"type":"object"},"advisory.CWENode":{"description":"advisory.CWENode","type":"object"},"advisory.CanvasExploit":{"description":"advisory.CanvasExploit","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"exploit_pack":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Capec":{"description":"advisory.Capec","properties":{"capec_id":{"type":"string"},"capec_name":{"type":"string"},"capec_url":{"type":"string"},"lang":{"type":"string"}},"type":"object"},"advisory.CarestreamAdvisory":{"description":"advisory.CarestreamAdvisory","properties":{"carestream_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Carrier":{"description":"advisory.Carrier","properties":{"advisory_id":{"type":"string"},"affected_product":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CentosPackage":{"description":"advisory.CentosPackage","properties":{"filename":{"type":"string"},"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.CertBE":{"description":"advisory.CertBE","properties":{"affected_software":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerability_type":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CertFRAdvisory":{"description":"advisory.CertFRAdvisory","properties":{"affected_systems_fr":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"resume_fr":{"type":"string"},"risks_fr":{"type":"string"},"solution_fr":{"type":"string"},"source_fr":{"type":"string"},"title_fr":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertIN":{"description":"advisory.CertIN","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertIRSecurityAlert":{"description":"advisory.CertIRSecurityAlert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_fa":{"type":"string"},"title_fa":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertSE":{"description":"advisory.CertSE","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_sv":{"type":"string"},"title_sv":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CertUA":{"description":"advisory.CertUA","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_ua":{"type":"string"},"title_ua":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ChainGuard":{"description":"advisory.ChainGuard","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"un-used","type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.ChainGuardPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.ChainGuardPackage":{"description":"advisory.ChainGuardPackage","properties":{"name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.ChainGuardSecFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ChainGuardSecFix":{"description":"advisory.ChainGuardSecFix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"}},"type":"object"},"advisory.CheckPoint":{"description":"advisory.CheckPoint","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Chrome":{"description":"advisory.Chrome","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.AffectedChrome"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ciena":{"description":"advisory.Ciena","properties":{"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issue_no":{"type":"integer"},"security_advisory_number":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vulnerable_products":{"items":{"$ref":"#/components/schemas/advisory.VulnerableProduct"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CirclAdvisory":{"description":"advisory.CirclAdvisory","properties":{"circl_ref":{"$ref":"#/components/schemas/advisory.CirclRef"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"gcve":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CirclCna":{"description":"advisory.CirclCna","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"configurations":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"cpeApplicability":{"items":{"$ref":"#/components/schemas/advisory.CustomCPE"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.Credit"},"type":"array","uniqueItems":false},"dateAssigned":{"type":"string"},"datePublic":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"exploits":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"rejectedReasons":{"description":"Fields below appear only on rejected records (cveMetadata.state == \"REJECTED\").","items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"replacedBy":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solutions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"source":{"$ref":"#/components/schemas/advisory.CirclSource"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"taxonomyMappings":{"items":{"$ref":"#/components/schemas/advisory.TaxonomyMapping"},"type":"array","uniqueItems":false},"timeline":{"items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"title":{"type":"string"},"workarounds":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"x_gcve":{"items":{"$ref":"#/components/schemas/advisory.CirclXGcve"},"type":"array","uniqueItems":false},"x_generator":{"$ref":"#/components/schemas/advisory.CirclXGenerator"}},"type":"object"},"advisory.CirclContainers":{"description":"advisory.CirclContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADPContainer"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.CirclCna"}},"type":"object"},"advisory.CirclCveMetadata":{"description":"advisory.CirclCveMetadata","properties":{"assignerOrgId":{"type":"string"},"assignerShortName":{"type":"string"},"cveId":{"type":"string"},"datePublished":{"type":"string"},"dateRejected":{"type":"string"},"dateReserved":{"type":"string"},"dateUpdated":{"type":"string"},"requesterUserId":{"type":"string"},"serial":{"type":"integer"},"state":{"type":"string"},"vulnId":{"type":"string"},"vulnerabilitylookup_history":{"items":{"items":{"type":"string"},"type":"array"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CirclRef":{"description":"advisory.CirclRef","properties":{"containers":{"$ref":"#/components/schemas/advisory.CirclContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.CirclCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.CirclSource":{"description":"advisory.CirclSource","properties":{"discovery":{"type":"string"}},"type":"object"},"advisory.CirclXGcve":{"description":"advisory.CirclXGcve","properties":{"recordType":{"type":"string"},"vulnId":{"type":"string"}},"type":"object"},"advisory.CirclXGenerator":{"description":"advisory.CirclXGenerator","properties":{"engine":{"type":"string"}},"type":"object"},"advisory.CisaCsafAdv":{"description":"advisory.CisaCsafAdv","properties":{"csaf_json":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CiscoAdvisory":{"description":"advisory.CiscoAdvisory","properties":{"ciscoBugId":{"description":"multiple","type":"string"},"csaf":{"type":"string"},"cve":{"description":"multiple","items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf":{"type":"string"},"cwe":{"description":"multiple","type":"string"},"date_added":{"type":"string"},"id":{"type":"integer"},"identifier":{"type":"string"},"name":{"type":"string"},"related_resources":{"type":"string"},"severity":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"totalCount":{"type":"integer"},"updated_at":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"},"workarounds":{"type":"string"},"workflowStatus":{"type":"string"}},"type":"object"},"advisory.CiscoCSAF":{"description":"advisory.CiscoCSAF","properties":{"csaf":{},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"identifier":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CiscoKnownGoodValue":{"description":"advisory.CiscoKnownGoodValue","properties":{"biv_category":{"type":"string"},"biv_hash":{"type":"string"},"date_added":{"type":"string"},"dtype":{"type":"string"},"filename":{"type":"string"},"md5":{"type":"string"},"platform":{"type":"string"},"published":{"type":"string"},"sha1":{"type":"string"},"sha256":{"type":"string"},"sha512":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.CitrixAdvisory":{"description":"advisory.CitrixAdvisory","properties":{"citrixId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"products":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.ClarotyVulnerability":{"description":"advisory.ClarotyVulnerability","properties":{"advisory_url":{"type":"string"},"claroty_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v3":{"type":"number"},"cwe":{"type":"string"},"date_added":{"type":"string"},"product":{"type":"string"},"target":{"type":"string"},"vendor":{"type":"string"},"vendor_advisory_url":{"type":"string"}},"type":"object"},"advisory.CloudAdvisory":{"description":"advisory.CloudAdvisory","properties":{"affected_versions":{"items":{"$ref":"#/components/schemas/advisory.CloudAdvisoryVersionRange"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"service":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.CloudAdvisoryVersionRange":{"description":"advisory.CloudAdvisoryVersionRange","properties":{"branch":{"type":"string"},"version_end_excluding":{"type":"string"},"version_end_including":{"type":"string"},"version_start_excluding":{"type":"string"},"version_start_including":{"type":"string"}},"type":"object"},"advisory.CloudBees":{"description":"advisory.CloudBees","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CloudVulnDBAdvisory":{"description":"advisory.CloudVulnDBAdvisory","properties":{"affectedServices":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"}},"type":"object"},"advisory.CodesysAdvisory":{"description":"advisory.CodesysAdvisory","properties":{"codesys_id":{"type":"string"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CommVault":{"description":"advisory.CommVault","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultCVEDetails"},"type":"array","uniqueItems":false},"cvss_range":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"impacted_product":{"$ref":"#/components/schemas/advisory.CommVaultImpactedProduct"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"resolution":{"$ref":"#/components/schemas/advisory.CommVaultResolution"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.CommVaultCVEDetails":{"description":"advisory.CommVaultCVEDetails","properties":{"cve_id":{"type":"string"},"cvss":{"type":"string"},"description":{"type":"string"},"external_links":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultImpactedProduct":{"description":"advisory.CommVaultImpactedProduct","properties":{"description":{"type":"string"},"impacted_product_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultImpactedProductDetails"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultImpactedProductDetails":{"description":"advisory.CommVaultImpactedProductDetails","properties":{"affected_versions":{"type":"string"},"platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product_name":{"type":"string"},"resolved_versions":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.CommVaultResolution":{"description":"advisory.CommVaultResolution","properties":{"description":{"type":"string"},"resolution_details":{"items":{"$ref":"#/components/schemas/advisory.CommVaultResolutionDetails"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CommVaultResolutionDetails":{"description":"advisory.CommVaultResolutionDetails","properties":{"feature_release":{"type":"string"},"maintenance_release":{"type":"string"}},"type":"object"},"advisory.CompassSecurity":{"description":"advisory.CompassSecurity","properties":{"csnc_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"effect":{"type":"string"},"introduction":{"type":"string"},"product":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"risk":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.ContainerOS":{"description":"advisory.ContainerOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updates":{"items":{"$ref":"#/components/schemas/advisory.COSUpdate"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.CoreImpactExploit":{"description":"advisory.CoreImpactExploit","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploit_type":{"type":"string"},"platform":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Correction":{"description":"advisory.Correction","properties":{"correctedAt":{"type":"string"},"orelease":{"type":"string"},"release":{"type":"string"}},"type":"object"},"advisory.Credit":{"description":"advisory.Credit","properties":{"lang":{"type":"string"},"type":{"type":"string"},"user":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Crestron":{"description":"advisory.Crestron","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"threat":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.CrowdSec":{"description":"advisory.CrowdSec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"eitw":{"type":"boolean"},"first_seen":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Curl":{"description":"advisory.Curl","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"info":{"$ref":"#/components/schemas/advisory.OCurl"},"url":{"type":"string"}},"type":"object"},"advisory.CurlAffected":{"description":"advisory.CurlAffected","properties":{"ranges":{"items":{"$ref":"#/components/schemas/advisory.CurlRange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CurlCWE":{"description":"advisory.CurlCWE","properties":{"desc":{"type":"string"},"id":{"type":"string"}},"type":"object"},"advisory.CurlCredit":{"description":"advisory.CurlCredit","properties":{"name":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.CurlRange":{"description":"advisory.CurlRange","properties":{"events":{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.CustomCPE":{"description":"advisory.CustomCPE","properties":{"mcpeapplicability":{"$ref":"#/components/schemas/advisory.MCPEApplicability"},"stringValue":{"type":"string"}},"type":"object"},"advisory.Cvrf":{"description":"advisory.Cvrf","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.CvsssV2_3":{"description":"advisory.CvsssV2_3","properties":{"basescore":{"type":"string"},"temporalscore":{"type":"string"}},"type":"object"},"advisory.Cwe":{"description":"advisory.Cwe","properties":{"id":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.CweAcceptanceLevel":{"description":"advisory.CweAcceptanceLevel","properties":{"description":{"type":"string"},"lastModified":{"type":"string"}},"type":"object"},"advisory.CweData":{"description":"advisory.CweData","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Cwes":{"description":"advisory.Cwes","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.CWENode"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Cycle":{"description":"advisory.Cycle","properties":{"codename":{"type":"string"},"cycle":{"type":"string"},"discontinued":{},"eol":{"description":"this Eol field is typically assigned either a boolean value, when the\ndate is not known, or a date string when it is."},"eolDate":{"type":"string"},"extendedSupport":{"description":"these interface fields are likewise assigned either true, false, or\na datestring in the format \"2006-01-02\""},"isEol":{"type":"boolean"},"latest":{"type":"string"},"latestReleaseDate":{"type":"string"},"link":{"type":"string"},"lts":{},"releaseDate":{"type":"string"},"releaseLabel":{"type":"string"},"support":{}},"type":"object"},"advisory.DBSpecific":{"description":"advisory.DBSpecific","properties":{"CWE":{"$ref":"#/components/schemas/advisory.CurlCWE"},"award":{"$ref":"#/components/schemas/advisory.Award"},"last_affected":{"type":"string"},"package":{"type":"string"},"severity":{"type":"string"},"url":{"type":"string"},"www":{"type":"string"}},"type":"object"},"advisory.DFNCert":{"description":"advisory.DFNCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_de":{"type":"string"},"title_de":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DLink":{"description":"advisory.DLink","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DNN":{"description":"advisory.DNN","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dahua":{"description":"advisory.Dahua","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DanFossCVEDetails":{"description":"advisory.DanFossCVEDetails","properties":{"base_score":{"type":"string"},"cve":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Danfoss":{"description":"advisory.Danfoss","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_details":{"items":{"$ref":"#/components/schemas/advisory.DanFossCVEDetails"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dassault":{"description":"advisory.Dassault","properties":{"affected_products":{"type":"string"},"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DateTime":{"description":"advisory.DateTime","type":"object"},"advisory.DebianCVE":{"description":"advisory.DebianCVE","properties":{"cve":{"type":"string"},"debianbug":{"type":"integer"},"description":{"type":"string"},"releases":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianRelease"},"type":"array","uniqueItems":false},"scope":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DebianSecurityAdvisory":{"description":"advisory.DebianSecurityAdvisory","properties":{"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.AffectedDebianPackage"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dsa":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Dell":{"description":"advisory.Dell","properties":{"articleNumber":{"type":"string"},"combinedProductList":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dell_cves":{"items":{"$ref":"#/components/schemas/advisory.DellCVE"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DellCVE":{"description":"advisory.DellCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.DeltaAdvisory":{"description":"advisory.DeltaAdvisory","properties":{"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"recommendedAction":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.DistroPackage":{"description":"advisory.DistroPackage","properties":{"binary":{"type":"boolean"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"license":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"secFixes":{"items":{"$ref":"#/components/schemas/advisory.SecFix"},"type":"array"},"versions":{"items":{"$ref":"#/components/schemas/advisory.DistroVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.DistroVersion":{"description":"advisory.DistroVersion","properties":{"arch":{"type":"string"},"published_date":{"type":"string"},"release":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Django":{"description":"advisory.Django","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DocumentMetadata":{"description":"Document contains metadata about the CSAF document itself.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#321-document-property","properties":{"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.CSAFDistribution"},"lang":{"type":"string"},"notes":{"description":"used by ncsc","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.Publisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"title":{"description":"Aggregate severity is a vehicle that is provided by the document producer to convey the urgency and\ncriticality with which the one or more vulnerabilities reported should be addressed.","type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.Tracking"}},"type":"object"},"advisory.DocumentPublisher":{"description":"advisory.DocumentPublisher","properties":{"contact_details":{"type":"string"},"issuing_authority":{"type":"string"},"type":{"description":"the json for this is missing/broke","type":"integer"}},"type":"object"},"advisory.DotCMS":{"description":"advisory.DotCMS","properties":{"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"issue_id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.DraegerAdvisory":{"description":"advisory.DraegerAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vendor_id":{"type":"string"}},"type":"object"},"advisory.DragosAdvisory":{"description":"advisory.DragosAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.Draytek":{"description":"advisory.Draytek","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Drupal":{"description":"advisory.Drupal","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"project":{"type":"string"},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EOLAlibaba":{"description":"advisory.EOLAlibaba","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"eol_date":{"type":"string"},"eol_name":{"type":"string"},"product":{"type":"string"},"release_date":{"type":"string"},"url":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.EOLMicrosoft":{"description":"advisory.EOLMicrosoft","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"edition":{"type":"string"},"extended_end_date":{"type":"string"},"mainstream_date":{"type":"string"},"product":{"type":"string"},"release":{"type":"string"},"release_end_date":{"type":"string"},"release_start_date":{"type":"string"},"retirement_date":{"type":"string"},"start_date":{"type":"string"},"support_policy":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EOLReleaseData":{"description":"advisory.EOLReleaseData","properties":{"already_eol":{"type":"boolean"},"branch":{"description":"Alpine Linux","type":"string"},"branch_url":{"description":"Alpine Linux","type":"string"},"codename":{"type":"string"},"cpe":{"type":"string"},"eol_date":{"type":"string"},"eol_date_extended_support":{"description":"Oracle Linux, Solaris","type":"string"},"eol_date_premier_support":{"description":"Oracle Linux, Solaris","type":"string"},"eol_elts_date":{"type":"string"},"eol_lts_date":{"type":"string"},"git_branch":{"description":"Alpine Linux","type":"string"},"git_branch_url":{"description":"Alpine Linux","type":"string"},"lts":{"description":"Ubuntu","type":"boolean"},"minor_releases":{"description":"Alpine Linux","items":{"type":"string"},"type":"array","uniqueItems":false},"product":{"type":"string"},"release_date":{"type":"string"},"release_name":{"type":"string"},"source_url":{"type":"string"},"technology_level":{"description":"AIX","type":"string"},"vendor":{"type":"string"},"version":{"type":"string"},"version_api":{"description":"Android","type":"string"},"version_darwin":{"description":"macOS","type":"string"},"version_sunos":{"description":"Solaris","type":"string"},"windows_current_build":{"description":"Microsoft Windows","type":"string"},"windows_display_version":{"description":"Microsoft Windows","type":"string"},"windows_edition_id":{"description":"Microsoft Windows","type":"string"},"windows_insider_preview":{"description":"Microsoft Windows","type":"boolean"}},"type":"object"},"advisory.EUVD":{"description":"advisory.EUVD","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"assigner":{"type":"string"},"base_score":{"type":"number"},"base_score_vector":{"type":"string"},"base_score_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"description":{"type":"string"},"enisa_id_product":{"items":{"$ref":"#/components/schemas/advisory.EnisaIDProduct"},"type":"array","uniqueItems":false},"enisa_id_vendor":{"items":{"$ref":"#/components/schemas/advisory.EnisaIDVendor"},"type":"array","uniqueItems":false},"epss":{"type":"number"},"exploited":{"description":"This field is exploited field from endpoint /api/vulnerabilities.\napidocs : https://euvd.enisa.europa.eu/apidoc\nNote: There are records where exploited_since is populated with a valid date,\nbut it still shows up under non_exploitable data set","type":"boolean"},"exploited_since":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.EatonAdvisory":{"description":"advisory.EatonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"eaton_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EcoSystem":{"description":"advisory.EcoSystem","properties":{"severity":{"type":"string"},"spl":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Elastic":{"description":"advisory.Elastic","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"esaid":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Elspec":{"description":"advisory.Elspec","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EmergingThreatsSnort":{"description":"advisory.EmergingThreatsSnort","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rev":{"type":"string"},"rule_disabled":{"type":"boolean"},"rule_name":{"type":"string"},"sid":{"type":"integer"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EmersonAdvisory":{"description":"advisory.EmersonAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"emerson_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EndOfLife":{"description":"advisory.EndOfLife","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cycles":{"items":{"$ref":"#/components/schemas/advisory.Cycle"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Endress":{"description":"advisory.Endress","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.EnisaIDProduct":{"description":"advisory.EnisaIDProduct","properties":{"id":{"type":"string"},"product_name":{"type":"string"},"product_version":{"type":"string"}},"type":"object"},"advisory.EnisaIDVendor":{"description":"advisory.EnisaIDVendor","properties":{"id":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.Event":{"description":"advisory.Event","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"},"last_affected":{"type":"string"},"limit":{"type":"string"}},"type":"object"},"advisory.ExodusIntel":{"description":"advisory.ExodusIntel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"disclosed_public":{"type":"string"},"disclosed_vendor":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ExploitDBExploitv2":{"description":"advisory.ExploitDBExploitv2","properties":{"author":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"edb_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ExternalReferences":{"description":"advisory.ExternalReferences","properties":{"description":{"type":"string"},"external_id":{"type":"string"},"source_name":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.F5":{"description":"advisory.F5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FSecure":{"description":"advisory.FSecure","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Fanuc":{"description":"advisory.Fanuc","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Fastly":{"description":"advisory.Fastly","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Festo":{"description":"advisory.Festo","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FileCloud":{"description":"advisory.FileCloud","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FileZilla":{"description":"advisory.FileZilla","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FixAff":{"description":"advisory.FixAff","properties":{"affected_since":{"type":"string"},"fixed_version":{"type":"string"},"patch_url":{"type":"string"}},"type":"object"},"advisory.Flag":{"description":"advisory.Flag","properties":{"date":{"type":"string"},"group_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"label":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.FlattSecurity":{"description":"advisory.FlattSecurity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ForgeRock":{"description":"advisory.ForgeRock","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FortinetAdvisory":{"description":"advisory.FortinetAdvisory","properties":{"acknowledgement":{"type":"string"},"affectedProducts":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvssv3":{"type":"string"},"date_added":{"type":"string"},"irnumber":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solutions":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.FortinetIPS":{"description":"advisory.FortinetIPS","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"epss":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Foxit":{"description":"advisory.Foxit","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.FoxitAffected"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.FoxitAffected":{"description":"advisory.FoxitAffected","properties":{"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Fresenius":{"description":"advisory.Fresenius","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GCP":{"description":"advisory.GCP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GEGas":{"description":"advisory.GEGas","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GEHealthcareAdvisory":{"description":"advisory.GEHealthcareAdvisory","properties":{"base_score":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GHAdvisoryJSONLean":{"description":"advisory.GHAdvisoryJSONLean","properties":{"classification":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"$ref":"#/components/schemas/advisory.GHCvss"},"cwes":{"$ref":"#/components/schemas/advisory.Cwes"},"databaseId":{"type":"integer"},"date_added":{"type":"string"},"description":{"type":"string"},"ghsaId":{"type":"string"},"id":{"type":"string"},"identifiers":{"items":{"$ref":"#/components/schemas/advisory.GHIdentifier"},"type":"array","uniqueItems":false},"notificationsPermalink":{"type":"string"},"origin":{"type":"string"},"permalink":{"type":"string"},"publishedAt":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GHReference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"vulnerabilities":{"$ref":"#/components/schemas/advisory.GHVulnerabilities"},"withdrawnAt":{"type":"string"}},"type":"object"},"advisory.GHCvss":{"description":"advisory.GHCvss","properties":{"score":{"type":"number"},"vectorString":{"type":"string"}},"type":"object"},"advisory.GHIdentifier":{"description":"advisory.GHIdentifier","properties":{"type":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.GHNode":{"description":"advisory.GHNode","properties":{"package":{"$ref":"#/components/schemas/advisory.GHPackage"},"severity":{"type":"string"},"updatedAt":{"type":"string"},"vulnerableVersionRange":{"type":"string"}},"type":"object"},"advisory.GHPackage":{"description":"advisory.GHPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GHReference":{"description":"advisory.GHReference","properties":{"url":{"type":"string"}},"type":"object"},"advisory.GHSA":{"description":"advisory.GHSA","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"ghsa":{"$ref":"#/components/schemas/advisory.OriginalGHSA"},"url":{"type":"string"}},"type":"object"},"advisory.GHSAAffected":{"description":"advisory.GHSAAffected","properties":{"ecosystem_specific":{"$ref":"#/components/schemas/advisory.GHSAEcoSystemSpecific"},"package":{"$ref":"#/components/schemas/advisory.GHSAPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.GHSARange"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GHSADatabaseSpecific":{"description":"advisory.GHSADatabaseSpecific","properties":{"cwe_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"github_reviewed":{"type":"boolean"},"github_reviewed_at":{"type":"string"},"nvd_published_at":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.GHSAEcoSystemSpecific":{"description":"advisory.GHSAEcoSystemSpecific","properties":{"affected_functions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GHSAEvent":{"description":"advisory.GHSAEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.GHSAPackage":{"description":"advisory.GHSAPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GHSARange":{"description":"advisory.GHSARange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.GHSAEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.GHSAReference":{"description":"advisory.GHSAReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GHSASeverity":{"description":"advisory.GHSASeverity","properties":{"score":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.GHVulnerabilities":{"description":"advisory.GHVulnerabilities","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.GHNode"},"type":"array","uniqueItems":false},"totalCount":{"type":"integer"}},"type":"object"},"advisory.GMOCyberSecurity":{"description":"advisory.GMOCyberSecurity","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_ja":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gallagher":{"description":"advisory.Gallagher","properties":{"activeExploitation":{"type":"boolean"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixes":{"type":"string"},"reportedBy":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gen":{"description":"advisory.Gen","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"description":"not all of them have this","type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GenericEOL":{"description":"advisory.GenericEOL","properties":{"core":{"$ref":"#/components/schemas/advisory.GenericEOLCore"},"product":{"$ref":"#/components/schemas/advisory.GenericEOLProduct"},"vcInfo":{"$ref":"#/components/schemas/advisory.GenericEOLVCInfo"}},"type":"object"},"advisory.GenericEOLCore":{"description":"advisory.GenericEOLCore","properties":{"end_of_life":{"type":"string"},"end_of_sales":{"type":"string"},"end_of_security_support":{"type":"string"},"last_updated":{"type":"string"}},"type":"object"},"advisory.GenericEOLProduct":{"description":"advisory.GenericEOLProduct","properties":{"product_name":{"type":"string"},"product_version":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.GenericEOLReference":{"description":"advisory.GenericEOLReference","properties":{"description":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GenericEOLVCInfo":{"description":"advisory.GenericEOLVCInfo","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GenericEOLReference"},"type":"array","uniqueItems":false},"replacement":{"$ref":"#/components/schemas/advisory.GenericEOLProduct"},"updated_at":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Genetec":{"description":"advisory.Genetec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Gigabyte":{"description":"advisory.Gigabyte","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.GitHubExploit":{"description":"advisory.GitHubExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"currently_trending":{"type":"boolean"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"id":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GitLabExploit":{"description":"advisory.GitLabExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GiteeExploit":{"description":"advisory.GiteeExploit","properties":{"clone_https_url":{"type":"string"},"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"cve":{"type":"string"},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"exploit_type":{"type":"string"},"forks":{"type":"integer"},"html_url":{"type":"string"},"language":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_full_path":{"type":"string"},"repo_id":{"type":"string"},"repo_name":{"type":"string"},"repo_owner":{"type":"string"},"stars":{"type":"integer"}},"type":"object"},"advisory.GitlabAdvisory":{"description":"advisory.GitlabAdvisory","properties":{"affected_range":{"type":"string"},"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v2":{"type":"string"},"cvss_v3":{"type":"string"},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"filename":{"type":"string"},"fixed_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"gitlab_url":{"type":"string"},"identifier":{"type":"string"},"identifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"not_impacted":{"type":"string"},"package_manager":{"type":"string"},"package_name":{"type":"string"},"package_slug":{"type":"string"},"pubdate":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"urls":{"items":{"type":"string"},"type":"array","uniqueItems":false},"uuid":{"type":"string"}},"type":"object"},"advisory.Glibc":{"description":"advisory.Glibc","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GnuTLS":{"description":"advisory.GnuTLS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GoCredits":{"description":"advisory.GoCredits","properties":{"name":{"type":"string"}},"type":"object"},"advisory.GoEvent":{"description":"advisory.GoEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.GoVulnAffected":{"description":"advisory.GoVulnAffected","properties":{"database_specific":{"$ref":"#/components/schemas/advisory.GoVulnDatabaseSpecific"},"ecosystem_specific":{"$ref":"#/components/schemas/advisory.GoVulnEcosystemSpecific"},"package":{"$ref":"#/components/schemas/advisory.GoVulnPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.GoVulnRanges"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnDatabaseSpecific":{"description":"advisory.GoVulnDatabaseSpecific","properties":{"url":{"type":"string"}},"type":"object"},"advisory.GoVulnEcosystemSpecific":{"description":"advisory.GoVulnEcosystemSpecific","properties":{"imports":{"items":{"$ref":"#/components/schemas/advisory.GoVulnImport"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnImport":{"description":"advisory.GoVulnImport","properties":{"path":{"type":"string"},"symbols":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnJSON":{"description":"advisory.GoVulnJSON","properties":{"advisory_url":{"type":"string"},"affected":{"items":{"$ref":"#/components/schemas/advisory.GoVulnAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.GoCredits"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"ghsa":{"items":{"type":"string"},"type":"array","uniqueItems":false},"go_advisory_id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GoVulnReference"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.GoVulnPackage":{"description":"advisory.GoVulnPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.GoVulnRanges":{"description":"advisory.GoVulnRanges","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.GoEvent"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.GoVulnReference":{"description":"advisory.GoVulnReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Grafana":{"description":"advisory.Grafana","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GreyNoiseDetection":{"description":"advisory.GreyNoiseDetection","properties":{"category":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"intention":{"type":"string"},"label":{"type":"string"},"name":{"type":"string"},"recommend_block":{"type":"boolean"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"related_tags":{"items":{"$ref":"#/components/schemas/advisory.GreyNoiseTags"},"type":"array","uniqueItems":false},"slug":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.GreyNoiseTags":{"description":"advisory.GreyNoiseTags","properties":{"category":{"type":"string"},"id":{"type":"string"},"intention":{"type":"string"},"name":{"type":"string"},"slug":{"type":"string"}},"type":"object"},"advisory.HCL":{"description":"advisory.HCL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HIKVision":{"description":"advisory.HIKVision","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.HKCert":{"description":"advisory.HKCert","properties":{"affected":{"items":{"type":"string"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact":{"type":"string"},"link":{"type":"string"},"relatedLinks":{"items":{"type":"string"},"type":"array"},"risk":{"type":"string"},"solutions":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.HMS":{"description":"advisory.HMS","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"mitigation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HP":{"description":"advisory.HP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.HPE":{"description":"advisory.HPE","properties":{"csaf":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Hacktivity":{"description":"advisory.Hacktivity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"float64":{"type":"number"},"rank":{"type":"integer"},"reports_submitted":{"type":"integer"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HardwareUpdate":{"description":"advisory.HardwareUpdate","properties":{"affectedVersions":{"type":"string"},"cves":{"items":{"type":"string"},"type":"array"},"hardwarePlatform":{"type":"string"},"system":{"type":"string"},"updatedVersion":{"type":"string"}},"type":"object"},"advisory.HarmonyOS":{"description":"advisory.HarmonyOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HashiCorp":{"description":"advisory.HashiCorp","properties":{"affected_products":{"type":"string"},"background":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"remediation":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HaskellAffected":{"description":"advisory.HaskellAffected","properties":{"affected_constraint":{"type":"string"},"affected_versions":{"items":{"$ref":"#/components/schemas/advisory.HaskellVersion"},"type":"array","uniqueItems":false},"arch":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"os":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package":{"type":"string"}},"type":"object"},"advisory.HaskellSADBAdvisory":{"description":"advisory.HaskellSADBAdvisory","properties":{"advisory_id":{"type":"string"},"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.HaskellAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"keywords":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"type":"object"},"related_vulns":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"}},"type":"object"},"advisory.HaskellVersion":{"description":"advisory.HaskellVersion","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.HillromAdvisory":{"description":"advisory.HillromAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Hitachi":{"description":"advisory.Hitachi","properties":{"affectedProducts":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixedProducts":{"type":"string"},"hitachiId":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HitachiEnergy":{"description":"advisory.HitachiEnergy","properties":{"advisory_id":{"type":"string"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploited":{"type":"boolean"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Honeywell":{"description":"advisory.Honeywell","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Huawei":{"description":"advisory.Huawei","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"sa_number":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HuaweiEulerOS":{"description":"advisory.HuaweiEulerOS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer"},"packages":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"synopsis":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.HuaweiIPS":{"description":"advisory.HuaweiIPS","properties":{"cnnvd":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"name":{"type":"string"},"severity":{"type":"string"},"threat_id":{"type":"integer"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.IAVA":{"description":"advisory.IAVA","properties":{"IAVA":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.IBM":{"description":"advisory.IBM","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IOCBotnetAdvisory":{"description":"advisory.IOCBotnetAdvisory","properties":{"botnet_name":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malicious_domains":{"items":{"type":"string"},"type":"array","uniqueItems":false},"malicious_files":{"items":{"$ref":"#/components/schemas/advisory.IOCFile"},"type":"array","uniqueItems":false},"malicious_ip":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IOCFile":{"description":"advisory.IOCFile","properties":{"name":{"type":"string"},"sha256":{"type":"string"}},"type":"object"},"advisory.IOCRansomwareAdvisory":{"description":"advisory.IOCRansomwareAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malicious_domains":{"items":{"type":"string"},"type":"array","uniqueItems":false},"malicious_files":{"items":{"$ref":"#/components/schemas/advisory.IOCFile"},"type":"array","uniqueItems":false},"malicious_ip":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ransomware_name":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IOCThreatActorAdvisory":{"description":"advisory.IOCThreatActorAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malicious_domains":{"items":{"type":"string"},"type":"array","uniqueItems":false},"malicious_files":{"items":{"$ref":"#/components/schemas/advisory.IOCFile"},"type":"array","uniqueItems":false},"malicious_ip":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"threat_actor_name":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ITW":{"description":"advisory.ITW","properties":{"cve":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.ITWExploit":{"description":"advisory.ITWExploit","properties":{"advisory":{"type":"string"},"affected_versions":{"type":"string"},"analysis_url":{"type":"string"},"bug_introducing_change_list_url":{"type":"string"},"claimed_attribution":{"type":"string"},"claimed_attribution_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_discovered":{"type":"string"},"date_patched":{"type":"string"},"description":{"type":"string"},"first_patched_version":{"type":"string"},"patch_change_list_url":{"type":"string"},"product":{"type":"string"},"reported_by":{"type":"string"},"root_cause_analysis_url":{"type":"string"},"vendor":{"type":"string"},"vulnerability_type":{"type":"string"}},"type":"object"},"advisory.IVal":{"description":"advisory.IVal","properties":{"Value":{"type":"string"}},"type":"object"},"advisory.Idemia":{"description":"advisory.Idemia","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"sbid":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IdentificationHelper":{"additionalProperties":{},"description":"advisory.IdentificationHelper","type":"object"},"advisory.Igel":{"description":"advisory.Igel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Impact":{"description":"advisory.Impact","properties":{"capecId":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.IncibeAdvisory":{"description":"advisory.IncibeAdvisory","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"detail":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Intel":{"description":"advisory.Intel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"link":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.IpIntelRecord":{"description":"advisory.IpIntelRecord","properties":{"asn":{"type":"string"},"city":{"type":"string"},"country":{"type":"string"},"country_code":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"feed_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"hostnames":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ip":{"type":"string"},"lastSeen":{"type":"string"},"matches":{"items":{"type":"string"},"type":"array","uniqueItems":false},"port":{"type":"integer"},"ssl":{"type":"boolean"},"type":{"$ref":"#/components/schemas/advisory.RecordType"}},"type":"object"},"advisory.IsraeliAlert":{"description":"advisory.IsraeliAlert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details_he":{"type":"string"},"handling_he":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary_he":{"type":"string"},"title_he":{"type":"string"}},"type":"object"},"advisory.IsraeliVulnerability":{"description":"advisory.IsraeliVulnerability","properties":{"ILVNId":{"type":"string"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Issued":{"description":"advisory.Issued","type":"object"},"advisory.Istio":{"description":"advisory.Istio","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ivanti":{"description":"advisory.Ivanti","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.IvantiRSS":{"description":"advisory.IvantiRSS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JFrog":{"description":"advisory.JFrog","properties":{"cpes":{"items":{"$ref":"#/components/schemas/advisory.NVD20CVECPEMatch"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.JNJAdvisory":{"description":"advisory.JNJAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JVN":{"description":"advisory.JVN","properties":{"affected_en":{"type":"string"},"affected_ja":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_en":{"type":"string"},"description_ja":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution_en":{"type":"string"},"solution_ja":{"type":"string"},"summary_en":{"type":"string"},"summary_ja":{"type":"string"},"title_en":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JVNAdvisoryItem":{"description":"advisory.JVNAdvisoryItem","properties":{"cpe":{"items":{"$ref":"#/components/schemas/advisory.JVNCPE"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"items":{"$ref":"#/components/schemas/advisory.CVSS"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"description_en":{"type":"string"},"identifier":{"type":"string"},"issued":{"type":"string"},"modified":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.JVNReference"},"type":"array","uniqueItems":false},"title":{"type":"string"},"title_en":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"url_en":{"type":"string"}},"type":"object"},"advisory.JVNCPE":{"description":"advisory.JVNCPE","properties":{"cpe":{"type":"string"},"product":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.JVNReference":{"description":"advisory.JVNReference","properties":{"id":{"type":"string"},"source":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Jenkins":{"description":"advisory.Jenkins","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fix":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.JetBrains":{"description":"advisory.JetBrains","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"product":{"type":"string"},"resolved_in":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.JohnsonControls":{"description":"advisory.JohnsonControls","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Juniper":{"description":"advisory.Juniper","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss3_score":{"type":"string"},"cvss3_vector":{"type":"string"},"cvss4_score":{"type":"string"},"cvss4_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.K8S":{"description":"advisory.K8S","properties":{"content":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issue_id":{"type":"integer"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.KEVCatalogVulnerability":{"description":"advisory.KEVCatalogVulnerability","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dueDate":{"type":"string"},"knownRansomwareCampaignUse":{"type":"string"},"notes":{"type":"string"},"product":{"type":"string"},"requiredAction":{"type":"string"},"shortDescription":{"type":"string"},"vendorProject":{"type":"string"},"vulnerabilityName":{"type":"string"}},"type":"object"},"advisory.KRCertAdvisory":{"description":"advisory.KRCertAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_ko":{"type":"string"},"link":{"type":"string"},"overview_ko":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title_ko":{"type":"string"}},"type":"object"},"advisory.KasperskyICSCERTAdvisory":{"description":"advisory.KasperskyICSCERTAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"klcert_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Kb":{"description":"advisory.Kb","properties":{"kb_url":{"type":"string"},"ms_date_added":{"type":"string"},"status":{"type":"string"},"supercedence":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.KbThreatDescription":{"description":"advisory.KbThreatDescription","properties":{"dos":{"type":"string"},"exploited":{"type":"string"},"latest_software_release":{"type":"string"},"level":{"items":{"type":"string"},"type":"array","uniqueItems":false},"older_software_release":{"type":"string"},"publicly_disclosed":{"type":"string"},"type":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.KoreLogic":{"description":"advisory.KoreLogic","properties":{"affected_product":{"type":"string"},"affected_vendor":{"type":"string"},"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Kunbus":{"description":"advisory.Kunbus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LG":{"description":"advisory.LG","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Lantronix":{"description":"advisory.Lantronix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Lenovo":{"description":"advisory.Lenovo","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"industry_identifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"last_updated":{"type":"string"},"lenovo_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LexmarkAdvisory":{"description":"advisory.LexmarkAdvisory","properties":{"affectedProducts":{"items":{"$ref":"#/components/schemas/advisory.AffectedProduct"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"impact":{"type":"string"},"lastUpdate":{"type":"string"},"link":{"type":"string"},"publicReleaseDate":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"revision":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"workarounds":{"type":"string"}},"type":"object"},"advisory.LibreOffice":{"description":"advisory.LibreOffice","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Linux":{"description":"advisory.Linux","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.LogSource":{"description":"advisory.LogSource","properties":{"category":{"type":"string"},"definition":{"type":"string"},"product":{"type":"string"},"service":{"type":"string"}},"type":"object"},"advisory.LolAdvs":{"description":"advisory.LolAdvs","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"lol_json":{"additionalProperties":{},"type":"object"},"mitre_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MACert":{"description":"advisory.MACert","properties":{"affected_systems_fr":{"type":"string"},"assessment_fr":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact_fr":{"type":"string"},"reference":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"risk_fr":{"type":"string"},"risks_fr":{"type":"string"},"solution_fr":{"type":"string"},"title_fr":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MAffected":{"description":"advisory.MAffected","properties":{"collectionURL":{"type":"string"},"cpes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"defaultStatus":{"type":"string"},"modules":{"items":{"type":"string"},"type":"array","uniqueItems":false},"packageName":{"type":"string"},"packageURL":{"type":"string"},"platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product":{"type":"string"},"programFiles":{"items":{"type":"string"},"type":"array","uniqueItems":false},"programRoutines":{"items":{"$ref":"#/components/schemas/advisory.ProgramRoutine"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"vendor":{"type":"string"},"versions":{"items":{"$ref":"#/components/schemas/advisory.MVersion"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MBranch":{"description":"advisory.MBranch","properties":{"Branch":{"items":{"$ref":"#/components/schemas/advisory.MBranch"},"type":"array","uniqueItems":false},"FullProductName":{"items":{"$ref":"#/components/schemas/advisory.MFullProductName"},"type":"array","uniqueItems":false},"Items":{"items":{"$ref":"#/components/schemas/advisory.MItem"},"type":"array","uniqueItems":false},"name":{"type":"string"},"type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.MCPEApplicability":{"description":"advisory.MCPEApplicability","properties":{"negate":{"type":"boolean"},"nodes":{"items":{"$ref":"#/components/schemas/advisory.MNodes"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"advisory.MCPEMatch":{"description":"advisory.MCPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.MCna":{"description":"advisory.MCna","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"configurations":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"cpeApplicability":{"items":{"$ref":"#/components/schemas/advisory.CustomCPE"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.Credit"},"type":"array","uniqueItems":false},"dateAssigned":{"type":"string"},"datePublic":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"exploits":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"impacts":{"items":{"$ref":"#/components/schemas/advisory.Impact"},"type":"array","uniqueItems":false},"metrics":{"items":{"$ref":"#/components/schemas/advisory.Metric"},"type":"array","uniqueItems":false},"problemTypes":{"items":{"$ref":"#/components/schemas/advisory.MProblemTypes"},"type":"array","uniqueItems":false},"providerMetadata":{"$ref":"#/components/schemas/advisory.MProviderMetadata"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"rejectedReasons":{"description":"Fields below appear only on rejected records (cveMetadata.state == \"REJECTED\").","items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"replacedBy":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solutions":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false},"source":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"taxonomyMappings":{"items":{"$ref":"#/components/schemas/advisory.TaxonomyMapping"},"type":"array","uniqueItems":false},"timeline":{"items":{"$ref":"#/components/schemas/advisory.Timeline"},"type":"array","uniqueItems":false},"title":{"type":"string"},"workarounds":{"items":{"$ref":"#/components/schemas/advisory.MDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MContainers":{"description":"advisory.MContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADPContainer"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.MCna"}},"type":"object"},"advisory.MCveMetadata":{"description":"advisory.MCveMetadata","properties":{"assignerOrgId":{"type":"string"},"assignerShortName":{"type":"string"},"cveId":{"type":"string"},"datePublished":{"type":"string"},"dateRejected":{"type":"string"},"dateReserved":{"type":"string"},"dateUpdated":{"type":"string"},"requesterUserId":{"type":"string"},"serial":{"type":"integer"},"state":{"type":"string"}},"type":"object"},"advisory.MCvssV20":{"description":"advisory.MCvssV20","properties":{"accessVector":{"type":"string"},"attackComplexity":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV30":{"description":"advisory.MCvssV30","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV31":{"description":"advisory.MCvssV31","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.MCvssV40":{"description":"advisory.MCvssV40","properties":{"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"automatable":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"privilegesRequired":{"type":"string"},"providerUrgency":{"type":"string"},"recovery":{"type":"string"},"safety":{"type":"string"},"subAvailabilityImpact":{"type":"string"},"subConfidentialityImpact":{"type":"string"},"subIntegrityImpact":{"type":"string"},"userInteraction":{"type":"string"},"valueDensity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"},"vulnAvailabilityImpact":{"type":"string"},"vulnConfidentialityImpact":{"type":"string"},"vulnIntegrityImpact":{"type":"string"},"vulnerabilityResponseEffort":{"type":"string"}},"type":"object"},"advisory.MDescriptions":{"description":"advisory.MDescriptions","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.MDocumentTracking":{"description":"advisory.MDocumentTracking","properties":{"CurrentReleaseDate":{"type":"string"},"InitialReleaseDate":{"type":"string"},"identification":{"$ref":"#/components/schemas/advisory.MIdentification"},"revisionhistory":{"description":"diff in xml/json","items":{"$ref":"#/components/schemas/advisory.RRevision"},"type":"array","uniqueItems":false},"status":{"description":"again - change in json/xml","type":"integer"},"version":{"type":"string"}},"type":"object"},"advisory.MEProduct":{"description":"advisory.MEProduct","properties":{"ID":{"type":"string"},"display_value":{"type":"string"}},"type":"object"},"advisory.MFiles":{"description":"advisory.MFiles","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MFullProductName":{"description":"advisory.MFullProductName","properties":{"CPE":{"type":"string"},"ProductID":{"type":"string"},"Value":{"type":"string"}},"type":"object"},"advisory.MISPValueNoID":{"description":"advisory.MISPValueNoID","properties":{"description":{"type":"string"},"meta":{"$ref":"#/components/schemas/advisory.MispMeta"},"related":{"items":{"$ref":"#/components/schemas/advisory.MispRelatedItem"},"type":"array","uniqueItems":false},"value":{"type":"string"}},"type":"object"},"advisory.MITREAttackGroupNoID":{"description":"advisory.MITREAttackGroupNoID","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"name":{"type":"string"},"techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechnique"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MIdentification":{"description":"advisory.MIdentification","properties":{"alias":{"$ref":"#/components/schemas/advisory.IVal"},"id":{"$ref":"#/components/schemas/advisory.IVal"}},"type":"object"},"advisory.MItem":{"description":"advisory.MItem","properties":{"Items":{"items":{"$ref":"#/components/schemas/advisory.MItem"},"type":"array","uniqueItems":false},"Name":{"type":"string"},"ProductID":{"type":"string"},"Type":{"description":"diff","type":"integer"},"Value":{"type":"string"}},"type":"object"},"advisory.MNodes":{"description":"advisory.MNodes","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.MCPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.MProblemTypes":{"description":"advisory.MProblemTypes","properties":{"descriptions":{"items":{"$ref":"#/components/schemas/advisory.PTMDescriptions"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MProductStatus":{"description":"advisory.MProductStatus","properties":{"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.MProductTree":{"description":"advisory.MProductTree","properties":{"Branch":{"items":{"$ref":"#/components/schemas/advisory.MBranch"},"type":"array","uniqueItems":false},"FullProductName":{"items":{"$ref":"#/components/schemas/advisory.MFullProductName"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MProviderMetadata":{"description":"advisory.MProviderMetadata","properties":{"dateUpdated":{"description":"FIXME: flip to time","type":"string"},"orgId":{"type":"string"},"shortName":{"type":"string"}},"type":"object"},"advisory.MReference":{"description":"advisory.MReference","properties":{"name":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.MRemediation":{"description":"advisory.MRemediation","properties":{"AffectedFiles":{"items":{"$ref":"#/components/schemas/advisory.AffectedFile"},"type":"array","uniqueItems":false},"Date":{"type":"string"},"DateSpecified":{"type":"boolean"},"Description":{"$ref":"#/components/schemas/advisory.IVal"},"FixedBuild":{"type":"string"},"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"RestartRequired":{"$ref":"#/components/schemas/advisory.IVal"},"SubType":{"type":"string"},"Type":{"description":"diff","type":"integer"},"Url":{"type":"string"},"supercedence":{"type":"string"}},"type":"object"},"advisory.MSCVRF":{"description":"advisory.MSCVRF","properties":{"DocumentTitle":{"$ref":"#/components/schemas/advisory.MSDocumentTitle"},"DocumentTracking":{"$ref":"#/components/schemas/advisory.MDocumentTracking"},"ProductTree":{"$ref":"#/components/schemas/advisory.MProductTree"},"document_type":{"type":"string"},"documentnotes":{"description":"diff","items":{"$ref":"#/components/schemas/advisory.RNote"},"type":"array","uniqueItems":false},"documentpublisher":{"$ref":"#/components/schemas/advisory.DocumentPublisher"},"vulnerability":{"items":{"$ref":"#/components/schemas/advisory.MVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MSDocumentTitle":{"description":"advisory.MSDocumentTitle","properties":{"Value":{"type":"string"}},"type":"object"},"advisory.MVersion":{"description":"advisory.MVersion","properties":{"changes":{"items":{"$ref":"#/components/schemas/advisory.VersionChange"},"type":"array","uniqueItems":false},"lessThan":{"type":"string"},"lessThanOrEqual":{"type":"string"},"status":{"type":"string"},"version":{"type":"string"},"versionType":{"type":"string"}},"type":"object"},"advisory.MVulnerability":{"description":"advisory.MVulnerability","properties":{"ProductStatuses":{"items":{"$ref":"#/components/schemas/advisory.MProductStatus"},"type":"array","uniqueItems":false},"Remediations":{"items":{"$ref":"#/components/schemas/advisory.MRemediation"},"type":"array","uniqueItems":false},"Threats":{"items":{"$ref":"#/components/schemas/advisory.RThreat"},"type":"array","uniqueItems":false},"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.Acknowledgement"},"type":"array","uniqueItems":false},"cve":{"type":"string"},"cvssscoresets":{"items":{"$ref":"#/components/schemas/advisory.RScoreSet"},"type":"array","uniqueItems":false},"notes":{"items":{"$ref":"#/components/schemas/advisory.Note"},"type":"array","uniqueItems":false},"ordinal":{"type":"string"},"revisionhistory":{"description":"diff in xml/json","items":{"$ref":"#/components/schemas/advisory.RRevision"},"type":"array","uniqueItems":false},"title":{"$ref":"#/components/schemas/advisory.IVal"}},"type":"object"},"advisory.MaliciousPackage":{"description":"advisory.MaliciousPackage","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"malware":{"$ref":"#/components/schemas/advisory.OSVObj"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MaliciousVSCodeDiscovery":{"description":"advisory.MaliciousVSCodeDiscovery","properties":{"date":{"description":"Date the timestamp when the discovery was published (via the \"reference\")","type":"string"},"marketplace":{"description":"Marketplace list of names of the marketplaces where the extension versions are available","items":{"type":"string"},"type":"array","uniqueItems":false},"reference":{"description":"Reference location where the initial public release of the vulnerability was pulled","type":"string"},"type":{"description":"Type VulnCheck vulnerability classification","type":"string"},"versions":{"description":"Versions list of vulnerable versions","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MaliciousVSCodeExts":{"description":"advisory.MaliciousVSCodeExts","properties":{"discoveries":{"description":"Discoveries list of individual vulnerability reports, sorted chronologically by discovery date","items":{"$ref":"#/components/schemas/advisory.MaliciousVSCodeDiscovery"},"type":"array","uniqueItems":false},"first_seen":{"description":"FirstSeen the earliest date the vulnerability was observed or created in our system","type":"string"},"last_updated":{"description":"LastUpdated the most recent date when any discovery was added for this extension","type":"string"},"marketplace":{"description":"Marketplace list of names of the marketplaces where the extension versions are available","items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"description":"Name is the name of the extension","type":"string"},"publisher":{"description":"Publisher name of the publisher of the extension","type":"string"},"references":{"description":"Reference list of locations where the public releases about the vulnerabilities were pulled","items":{"type":"string"},"type":"array","uniqueItems":false},"types":{"description":"Types VulnCheck vulnerability classifications found for this extension","items":{"type":"string"},"type":"array","uniqueItems":false},"versions":{"description":"Versions list of vulnerable versions","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ManageEngine":{"description":"advisory.ManageEngine","properties":{"ADVISORY":{"type":"string"},"Added_Time":{"type":"string"},"CVE_Details_Link":{"$ref":"#/components/schemas/advisory.CVEDetailsLink"},"CVE_ID":{"type":"string"},"CVSS_Severity_Rating":{"type":"string"},"Fixed":{"type":"string"},"For_product_search":{"type":"string"},"ID":{"type":"string"},"Product":{"$ref":"#/components/schemas/advisory.MEProduct"},"Product_list":{"items":{"$ref":"#/components/schemas/advisory.MEProduct"},"type":"array","uniqueItems":false},"Product_specific_details":{"items":{"$ref":"#/components/schemas/advisory.ProductSpecificDetail"},"type":"array","uniqueItems":false},"Summary":{"type":"string"},"Version":{"type":"string"},"index_field":{"type":"string"}},"type":"object"},"advisory.ManageEngineAdvisory":{"description":"advisory.ManageEngineAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"manage_engine":{"$ref":"#/components/schemas/advisory.ManageEngine"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MbedTLS":{"description":"advisory.MbedTLS","properties":{"affects":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.McAfee":{"description":"advisory.McAfee","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mcafee_score":{"items":{"$ref":"#/components/schemas/advisory.McAfeeScore"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.McAfeeScore":{"description":"advisory.McAfeeScore","properties":{"base":{"type":"string"},"cve":{"type":"string"},"temporal":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.Mediatek":{"description":"advisory.Mediatek","properties":{"affected_chipsets":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_software":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"severity":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MedtronicAdvisory":{"description":"advisory.MedtronicAdvisory","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Mendix":{"description":"advisory.Mendix","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"mendix_id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MetaAdvisories":{"description":"advisory.MetaAdvisories","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.MAffected"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MetaData":{"description":"advisory.MetaData","properties":{"advisory":{"$ref":"#/components/schemas/advisory.AdvisoryDetails"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.VulnCheckPackage"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.OvalReference"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.MetasploitExploit":{"description":"advisory.MetasploitExploit","properties":{"author":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Metric":{"description":"advisory.Metric","properties":{"cvssV2_0":{"$ref":"#/components/schemas/advisory.MCvssV20"},"cvssV3_0":{"$ref":"#/components/schemas/advisory.MCvssV30"},"cvssV3_1":{"$ref":"#/components/schemas/advisory.MCvssV31"},"cvssV4_0":{"$ref":"#/components/schemas/advisory.MCvssV40"},"format":{"type":"string"},"other":{"$ref":"#/components/schemas/advisory.MetricsOther"},"scenarios":{"items":{"$ref":"#/components/schemas/advisory.MetricScenario"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MetricScenario":{"description":"advisory.MetricScenario","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.MetricsOther":{"description":"advisory.MetricsOther","properties":{"content":{"type":"object"},"type":{"type":"string"}},"type":"object"},"advisory.MicrosoftCSAF":{"description":"advisory.MicrosoftCSAF","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MicrosoftCVRF":{"description":"advisory.MicrosoftCVRF","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf":{"$ref":"#/components/schemas/advisory.MSCVRF"},"date_added":{"type":"string"},"exploited_list":{"items":{"$ref":"#/components/schemas/advisory.ITW"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MicrosoftDriverBlockList":{"description":"advisory.MicrosoftDriverBlockList","properties":{"date_added":{"type":"string"},"file_id":{"description":"From FileAttrib or Deny","type":"string"},"file_metadata":{"$ref":"#/components/schemas/advisory.MicrosoftFileMetadata"}},"type":"object"},"advisory.MicrosoftFileMetadata":{"description":"File-level metadata","properties":{"file_name":{"description":"Full path (FilePath + FileName or FriendlyName)","type":"string"},"maximum_file_version":{"type":"string"},"minimum_file_version":{"type":"string"},"product_name":{"type":"string"},"sha1_hash":{"type":"string"},"sha256_hash":{"type":"string"}},"type":"object"},"advisory.MicrosoftKb":{"description":"advisory.MicrosoftKb","properties":{"cve":{"type":"string"},"date_added":{"type":"string"},"kbs":{"items":{"$ref":"#/components/schemas/advisory.Kb"},"type":"array","uniqueItems":false},"threat":{"$ref":"#/components/schemas/advisory.KbThreatDescription"},"title":{"type":"string"}},"type":"object"},"advisory.Mikrotik":{"description":"advisory.Mikrotik","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Mindray":{"description":"advisory.Mindray","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MispMeta":{"description":"advisory.MispMeta","properties":{"attribution-confidence":{"type":"string"},"cfr-suspected-state-sponsor":{"type":"string"},"cfr-suspected-victims":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cfr-target-category":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cfr-type-of-incident":{"items":{"type":"string"},"type":"array","uniqueItems":false},"country":{"type":"string"},"refs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"synonyms":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MispRelatedItem":{"description":"advisory.MispRelatedItem","properties":{"dest-uuid":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.MispValue":{"description":"advisory.MispValue","properties":{"description":{"type":"string"},"meta":{"$ref":"#/components/schemas/advisory.MispMeta"},"related":{"items":{"$ref":"#/components/schemas/advisory.MispRelatedItem"},"type":"array","uniqueItems":false},"uuid":{"type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Mitel":{"description":"advisory.Mitel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackRef":{"description":"advisory.MitreAttackRef","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackTechWithRefs":{"description":"advisory.MitreAttackTechWithRefs","properties":{"domain":{"type":"string"},"id":{"type":"string"},"name":{"type":"string"},"nist_controls":{"items":{"$ref":"#/components/schemas/advisory.NISTControl"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackRef"},"type":"array","uniqueItems":false},"subtechnique":{"type":"boolean"},"tactics":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.MitreAttackTechnique":{"description":"advisory.MitreAttackTechnique","properties":{"sub_technique":{"type":"string"},"sub_technique_name":{"type":"string"},"tactic":{"items":{"type":"string"},"type":"array","uniqueItems":false},"technique_id":{"type":"string"},"technique_name":{"type":"string"}},"type":"object"},"advisory.MitreCVEListV5":{"description":"advisory.MitreCVEListV5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MitreCVEListV5Ref":{"description":"advisory.MitreCVEListV5Ref","properties":{"containers":{"$ref":"#/components/schemas/advisory.MContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.MCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.MitreGroupCTI":{"description":"advisory.MitreGroupCTI","properties":{"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"id":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.ExternalReferences"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.MitsubishiElectricAdvisory":{"description":"advisory.MitsubishiElectricAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"description":"could nuke this at some pt in the future as it's a dupe","type":"string"},"mitsubishi_electric_id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MogwaiLabsAdvisory":{"description":"advisory.MogwaiLabsAdvisory","properties":{"affected_version":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"gcve":{"description":"From detail page","type":"string"},"id":{"description":"From index table","type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MokshaAdvisory":{"description":"advisory.MokshaAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"cvss3_score":{"type":"number"},"cvss3_severity":{"type":"string"},"cvss4_score":{"type":"number"},"cvss4_severity":{"type":"string"},"date_added":{"type":"string"},"gcve":{"type":"string"},"moksha_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MongoDB":{"description":"advisory.MongoDB","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"score":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MoxaAdvisory":{"description":"advisory.MoxaAdvisory","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MozillaAdvisory":{"description":"advisory.MozillaAdvisory","properties":{"affected_components":{"items":{"$ref":"#/components/schemas/advisory.MozillaComponent"},"type":"array","uniqueItems":false},"bugzilla":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_in":{"items":{"type":"string"},"type":"array","uniqueItems":false},"impact":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"reporter":{"type":"string"},"risk":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.MozillaComponent":{"description":"advisory.MozillaComponent","properties":{"bugzilla":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"description":{"type":"string"},"impact":{"type":"string"},"reporter":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.NCSC":{"description":"advisory.NCSC","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_nl":{"type":"string"},"title_nl":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NCSCCVE":{"description":"advisory.NCSCCVE","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary_nl":{"type":"string"},"title_nl":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NEC":{"description":"advisory.NEC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"nvd_id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NHS":{"description":"advisory.NHS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"summary":{"type":"string"},"threat_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NI":{"description":"advisory.NI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"ovewrview":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NISTControl":{"description":"advisory.NISTControl","properties":{"cis_controls":{"items":{"$ref":"#/components/schemas/advisory.CISControl"},"type":"array","uniqueItems":false},"nist_control_family":{"type":"string"},"nist_control_id":{"type":"string"},"nist_control_name":{"type":"string"}},"type":"object"},"advisory.NTP":{"description":"advisory.NTP","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NVD20CVECPEMatch":{"description":"advisory.NVD20CVECPEMatch","properties":{"criteria":{"type":"string"},"matchCriteriaId":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"advisory.NVD20Configuration":{"description":"advisory.NVD20Configuration","properties":{"negate":{"type":"boolean"},"nodes":{"items":{"$ref":"#/components/schemas/advisory.NVD20Node"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"advisory.NVD20Node":{"description":"advisory.NVD20Node","properties":{"cpeMatch":{"items":{"$ref":"#/components/schemas/advisory.NVD20CVECPEMatch"},"type":"array","uniqueItems":false},"negate":{"type":"boolean"},"operator":{"type":"string"}},"type":"object"},"advisory.NVD20Source":{"description":"advisory.NVD20Source","properties":{"contactEmail":{"type":"string"},"created":{"type":"string"},"cweAcceptanceLevel":{"$ref":"#/components/schemas/advisory.CweAcceptanceLevel"},"lastModified":{"type":"string"},"name":{"type":"string"},"sourceIdentifiers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"v3AcceptanceLevel":{"$ref":"#/components/schemas/advisory.V3AcceptanceLevel"}},"type":"object"},"advisory.NVDCPEDictionary":{"description":"advisory.NVDCPEDictionary","properties":{"backupOnly":{"type":"string"}},"type":"object"},"advisory.NZAdvisory":{"description":"advisory.NZAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"happening":{"type":"string"},"link":{"type":"string"},"lookFor":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"whatToDo":{"type":"string"}},"type":"object"},"advisory.Naver":{"description":"advisory.Naver","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nessus":{"description":"advisory.Nessus","properties":{"cpe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploitability_ease":{"description":"seems like only 3 vals for this","type":"string"},"filename":{"type":"string"},"iava":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"script_id":{"type":"integer"},"updated":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NetApp":{"description":"advisory.NetApp","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"impact":{"type":"string"},"ntap":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netatalk":{"description":"advisory.Netatalk","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netgate":{"description":"advisory.Netgate","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netgear":{"description":"advisory.Netgear","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"psvn_number":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Netskope":{"description":"advisory.Netskope","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nexpose":{"description":"advisory.Nexpose","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"identifier":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NginxAdvisory":{"description":"advisory.NginxAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"not_vuln_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false},"patch_pgp":{"type":"string"},"patch_url":{"type":"string"},"severity":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vuln_versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.NodeAuthor":{"description":"advisory.NodeAuthor","properties":{"author":{"type":"string"},"username":{"type":"string"},"website":{"type":"string"}},"type":"object"},"advisory.NodeJS":{"description":"advisory.NodeJS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NodeSecurity":{"description":"advisory.NodeSecurity","properties":{"affected_environments":{"items":{"type":"string"},"type":"array","uniqueItems":false},"author":{"$ref":"#/components/schemas/advisory.NodeAuthor"},"coordinating_vendor":{"type":"string"},"created_at":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"number"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"integer"},"module_name":{"type":"string"},"overview":{"type":"string"},"patched_versions":{"type":"string"},"publish_date":{"type":"string"},"recommendation":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerable_versions":{"type":"string"}},"type":"object"},"advisory.Nokia":{"description":"advisory.Nokia","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Note":{"description":"advisory.Note","properties":{"ordinal":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"},"type":{"type":"integer"}},"type":"object"},"advisory.NotePadPlusPlus":{"description":"advisory.NotePadPlusPlus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nozomi":{"description":"advisory.Nozomi","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Nuclei":{"description":"advisory.Nuclei","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"template":{"type":"object"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.NvidiaRevision":{"description":"advisory.NvidiaRevision","properties":{"date":{"type":"string"},"description":{"type":"string"},"revision":{"type":"string"}},"type":"object"},"advisory.OCurl":{"description":"advisory.OCurl","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.CurlAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credits":{"items":{"$ref":"#/components/schemas/advisory.CurlCredit"},"type":"array","uniqueItems":false},"database_specific":{"$ref":"#/components/schemas/advisory.DBSpecific"},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"schema_version":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.OPCFoundationAcknowledgment":{"description":"advisory.OPCFoundationAcknowledgment","properties":{"names":{"items":{"type":"string"},"type":"array","uniqueItems":false},"organization":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.OPCFoundationAdvisory":{"description":"advisory.OPCFoundationAdvisory","properties":{"csaf":{"$ref":"#/components/schemas/advisory.OPCFoundationRef"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"gcve":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OPCFoundationDistribution":{"description":"advisory.OPCFoundationDistribution","properties":{"tlp":{"$ref":"#/components/schemas/advisory.OPCFoundationTLP"}},"type":"object"},"advisory.OPCFoundationDocumentMetadata":{"description":"advisory.OPCFoundationDocumentMetadata","properties":{"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.OPCFoundationDistribution"},"lang":{"type":"string"},"notes":{"description":"used by ncsc","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.Publisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"title":{"description":"Aggregate severity is a vehicle that is provided by the document producer to convey the urgency and\ncriticality with which the one or more vulnerabilities reported should be addressed.","type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.Tracking"}},"type":"object"},"advisory.OPCFoundationInvolvement":{"description":"advisory.OPCFoundationInvolvement","properties":{"party":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.OPCFoundationRef":{"description":"advisory.OPCFoundationRef","properties":{"document":{"$ref":"#/components/schemas/advisory.OPCFoundationDocumentMetadata"},"product_tree":{"$ref":"#/components/schemas/advisory.ProductBranch"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.OPCFoundationVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OPCFoundationTLP":{"description":"advisory.OPCFoundationTLP","properties":{"label":{"type":"string"}},"type":"object"},"advisory.OPCFoundationVulnerability":{"description":"advisory.OPCFoundationVulnerability","properties":{"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.OPCFoundationAcknowledgment"},"type":"array","uniqueItems":false},"cve":{"description":"MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3232-vulnerabilities-property---cve","type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.Cwe"},"discovery_date":{"type":"string"},"flags":{"description":"Machine readable flags for products related to vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3235-vulnerabilities-property---flags","items":{"$ref":"#/components/schemas/advisory.Flag"},"type":"array","uniqueItems":false},"ids":{"description":"List of IDs represents a list of unique labels or tracking IDs for the vulnerability (if such information exists).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3236-vulnerabilities-property---ids","items":{"$ref":"#/components/schemas/advisory.TrackingID"},"type":"array","uniqueItems":false},"involvements":{"items":{"$ref":"#/components/schemas/advisory.OPCFoundationInvolvement"},"type":"array","uniqueItems":false},"notes":{"description":"Notes holds notes associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3238-vulnerabilities-property---notes","items":{"$ref":"#/components/schemas/advisory.CSAFNote"},"type":"array","uniqueItems":false},"product_status":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Provide details on the status of the referenced product related to the vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3239-vulnerabilities-property---product-status","type":"object"},"references":{"description":"Vulnerability references holds a list of references associated with this vulnerability item.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32310-vulnerabilities-property---references","items":{"$ref":"#/components/schemas/advisory.CSAFReference"},"type":"array","uniqueItems":false},"release_date":{"type":"string"},"remediations":{"description":"Provide details of remediations associated with a Vulnerability\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32312-vulnerabilities-property---remediations","items":{"$ref":"#/components/schemas/advisory.RemediationData"},"type":"array","uniqueItems":false},"scores":{"description":"Scores holds the scores associated with the Vulnerability object.\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32313-vulnerabilities-property---scores\nCurrently only CVSS v3 is supported.","items":{"$ref":"#/components/schemas/advisory.CSAFScore"},"type":"array","uniqueItems":false},"threats":{"description":"Provide details of threats associated with a vulnerability.\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32314-vulnerabilities-property---threats","items":{"$ref":"#/components/schemas/advisory.ThreatData"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.OSV":{"description":"advisory.OSV","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"osv":{"$ref":"#/components/schemas/advisory.OSVObj"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OSVObj":{"description":"advisory.OSVObj","properties":{"affected":{"description":"collection based on https://ossf.github.io/osv-schema/","items":{"$ref":"#/components/schemas/advisory.Affected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.OSVReference"},"type":"array","uniqueItems":false},"related":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"withdrawn":{"type":"string"}},"type":"object"},"advisory.OSVPackage":{"description":"advisory.OSVPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"}},"type":"object"},"advisory.OSVReference":{"description":"advisory.OSVReference","properties":{"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OTRS":{"description":"advisory.OTRS","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"product":{"type":"string"},"release":{"type":"string"},"risk":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OctopusDeploy":{"description":"advisory.OctopusDeploy","properties":{"advisory_number":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Okta":{"description":"advisory.Okta","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cwe":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"resolution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Omron":{"description":"advisory.Omron","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OneE":{"description":"advisory.OneE","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenBSD":{"description":"advisory.OpenBSD","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"patch":{"type":"string"},"release":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenCVDB":{"description":"advisory.OpenCVDB","properties":{"affected_platforms":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_services":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"disclosed_at":{"type":"string"},"known_itw_exploitation":{"type":"boolean"},"manual_remediation":{"type":"string"},"published_at":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenJDK":{"description":"advisory.OpenJDK","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"openjdk_cves":{"items":{"$ref":"#/components/schemas/advisory.OpenJDKCVE"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenJDKCVE":{"description":"advisory.OpenJDKCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.OpenSSH":{"description":"advisory.OpenSSH","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OpenSSLSecAdv":{"description":"advisory.OpenSSLSecAdv","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_updated":{"type":"string"},"description":{"type":"string"},"filename":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.OpenSSLVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OpenSSLVulnerability":{"description":"advisory.OpenSSLVulnerability","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fixed":{"items":{"$ref":"#/components/schemas/advisory.FixAff"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.OpenStack":{"description":"advisory.OpenStack","properties":{"affects":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Opengear":{"description":"advisory.Opengear","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OracleCPU":{"description":"advisory.OracleCPU","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"product":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OracleCPUCSAF":{"description":"advisory.OracleCPUCSAF","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.OriginalGHSA":{"description":"advisory.OriginalGHSA","properties":{"affected":{"items":{"$ref":"#/components/schemas/advisory.GHSAAffected"},"type":"array","uniqueItems":false},"aliases":{"items":{"type":"string"},"type":"array","uniqueItems":false},"database_specific":{"$ref":"#/components/schemas/advisory.GHSADatabaseSpecific"},"details":{"type":"string"},"id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.GHSAReference"},"type":"array","uniqueItems":false},"schema_version":{"type":"string"},"severity":{"items":{"$ref":"#/components/schemas/advisory.GHSASeverity"},"type":"array","uniqueItems":false},"summary":{"type":"string"}},"type":"object"},"advisory.OvalCVE":{"description":"advisory.OvalCVE","properties":{"href":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.OvalReference":{"description":"advisory.OvalReference","properties":{"ref_id":{"type":"string"},"ref_url":{"type":"string"},"source":{"type":"string"}},"type":"object"},"advisory.Override":{"description":"advisory.Override","properties":{"_annotation":{"$ref":"#/components/schemas/advisory.OverrideAnnotation"},"cve":{"$ref":"#/components/schemas/advisory.OverrideCVE"}},"type":"object"},"advisory.OverrideAnnotation":{"description":"advisory.OverrideAnnotation","properties":{"cve_id":{"type":"string"},"modified":{"type":"string"},"published":{"type":"string"},"reason":{"type":"string"},"snapshot":{"type":"string"},"triage_notes":{"$ref":"#/components/schemas/advisory.TriageNotes"}},"type":"object"},"advisory.OverrideCVE":{"description":"advisory.OverrideCVE","properties":{"configurations":{"items":{"$ref":"#/components/schemas/advisory.OverrideConfiguration"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OverrideConfiguration":{"description":"advisory.OverrideConfiguration","properties":{"nodes":{"items":{"$ref":"#/components/schemas/advisory.CPENode"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.OwnCloud":{"description":"advisory.OwnCloud","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PGFix":{"description":"advisory.PGFix","properties":{"affected":{"type":"string"},"fixed":{"type":"string"}},"type":"object"},"advisory.PHPMyAdmin":{"description":"advisory.PHPMyAdmin","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PKCert":{"description":"advisory.PKCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PTC":{"description":"advisory.PTC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PTMDescriptions":{"description":"advisory.PTMDescriptions","properties":{"cweId":{"type":"string"},"description":{"type":"string"},"lang":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.MReference"},"type":"array","uniqueItems":false},"type":{"type":"string"}},"type":"object"},"advisory.Package":{"description":"advisory.Package","properties":{"filename":{"type":"string"},"name":{"description":"sort","type":"string"},"release":{"type":"string"},"src":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.PackageStat":{"description":"advisory.PackageStat","properties":{"cpe":{"type":"string"},"fix_state":{"type":"string"},"package_name":{"type":"string"},"product_name":{"type":"string"}},"type":"object"},"advisory.PacketstormExploit":{"description":"advisory.PacketstormExploit","properties":{"author":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"download_url":{"type":"string"},"md5":{"type":"string"},"summary":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Palantir":{"description":"advisory.Palantir","properties":{"affected_products":{"type":"string"},"background":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PaloAltoAdvisory":{"description":"advisory.PaloAltoAdvisory","properties":{"affected":{"type":"string"},"applicableVersions":{"type":"string"},"attackComplexity":{"type":"string"},"attackRequirements":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"confidentialityImpact":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvssbaseScore":{"type":"string"},"datePublished":{"type":"string"},"dateUpdated":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"problem":{"type":"string"},"product":{"type":"string"},"scope":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"unaffected":{"type":"string"},"url":{"type":"string"},"userInteraction":{"type":"string"},"workaround":{"type":"string"}},"type":"object"},"advisory.Panasonic":{"description":"advisory.Panasonic","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PaperCut":{"description":"advisory.PaperCut","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Patch":{"description":"advisory.Patch","properties":{"advisory_id":{"type":"string"},"component":{"type":"string"},"link":{"type":"string"},"os_sw":{"type":"string"}},"type":"object"},"advisory.Pega":{"description":"advisory.Pega","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"score":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PhilipsAdvisory":{"description":"advisory.PhilipsAdvisory","properties":{"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_updated":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PhoenixContactAdvisory":{"description":"advisory.PhoenixContactAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.PostgresSQL":{"description":"advisory.PostgresSQL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"pg_fix":{"items":{"$ref":"#/components/schemas/advisory.PGFix"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PowerDNS":{"description":"advisory.PowerDNS","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PrimeVersion":{"description":"advisory.PrimeVersion","properties":{"jdK":{"type":"string"},"prime":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.Product":{"description":"advisory.Product","properties":{"name":{"type":"string"},"product_id":{"type":"string"},"product_identification_helper":{"$ref":"#/components/schemas/advisory.IdentificationHelper"}},"type":"object"},"advisory.ProductBranch":{"description":"ProductTree contains information about the product tree (branches only).\n\nhttps://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#322-product-tree-property","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.ProductBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"},"product":{"$ref":"#/components/schemas/advisory.Product"},"relationships":{"items":{"$ref":"#/components/schemas/advisory.CSAFRelationship"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ProductSpecificDetail":{"description":"advisory.ProductSpecificDetail","properties":{"ID":{"type":"string"},"display_value":{"type":"string"}},"type":"object"},"advisory.ProductsAffected":{"description":"advisory.ProductsAffected","properties":{"cve":{"type":"string"},"description":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.ProgramRoutine":{"description":"advisory.ProgramRoutine","properties":{"name":{"type":"string"}},"type":"object"},"advisory.Progress":{"description":"advisory.Progress","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Proofpoint":{"description":"advisory.Proofpoint","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Publisher":{"description":"advisory.Publisher","properties":{"category":{"type":"string"},"contact_details":{"type":"string"},"issuing_authority":{"type":"string"},"name":{"type":"string"},"namespace":{"type":"string"}},"type":"object"},"advisory.PureStorage":{"description":"advisory.PureStorage","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"description":{"type":"string"},"product":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.PyPAAdvisory":{"description":"advisory.PyPAAdvisory","properties":{"advisory_id":{"description":"ID is the PYSEC- identifier","type":"string"},"affected":{"description":"Affected will list out the vulnerable versions.","items":{"$ref":"#/components/schemas/advisory.PyPAAffected"},"type":"array","uniqueItems":false},"aliases":{"description":"Aliases are other identifiers that refer to this, such as a CVE","items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"description":"Details discuss the vulnerability information","type":"string"},"modified":{"description":"Modified is non-zero Time if entry was updated","type":"string"},"published":{"description":"Published is the datetime when this was released","type":"string"},"references":{"description":"References are links to more detailed advisories, fixes, etc.","items":{"$ref":"#/components/schemas/advisory.PyPAReference"},"type":"array","uniqueItems":false},"was_withdrawn":{"description":"WasWD indicates if the advisory was withdrawn or not.","type":"boolean"},"withdrawn":{"description":"Withdrawn is non-zero if this advisory has been withdrawn","type":"string"}},"type":"object"},"advisory.PyPAAffected":{"description":"advisory.PyPAAffected","properties":{"package":{"$ref":"#/components/schemas/advisory.PyPAPackage"},"ranges":{"items":{"$ref":"#/components/schemas/advisory.PyPARange"},"type":"array","uniqueItems":false},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.PyPAEvent":{"description":"advisory.PyPAEvent","properties":{"fixed":{"type":"string"},"introduced":{"type":"string"}},"type":"object"},"advisory.PyPAPackage":{"description":"advisory.PyPAPackage","properties":{"ecosystem":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"}},"type":"object"},"advisory.PyPARange":{"description":"advisory.PyPARange","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.PyPAEvent"},"type":"array","uniqueItems":false},"ranges_type":{"type":"string"}},"type":"object"},"advisory.PyPAReference":{"description":"advisory.PyPAReference","properties":{"refs_type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QCompliance":{"description":"advisory.QCompliance","properties":{"section":{"type":"string"},"typ":{"type":"string"}},"type":"object"},"advisory.QNAPAdvisory":{"description":"advisory.QNAPAdvisory","properties":{"affected":{"type":"string"},"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"last_update_date":{"type":"string"},"link":{"type":"string"},"severity":{"type":"string"},"severity_number":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.QQID":{"description":"advisory.QQID","properties":{"compliance":{"items":{"$ref":"#/components/schemas/advisory.QCompliance"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss3_score":{"type":"string"},"cvss_score":{"type":"string"},"date_added":{"type":"string"},"qid":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QSB":{"description":"advisory.QSB","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Qualcomm":{"description":"advisory.Qualcomm","properties":{"chipsets":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"score":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Qualys":{"description":"advisory.Qualys","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"exploits":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.QualysQID":{"description":"advisory.QualysQID","properties":{"consequence":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_v2":{"items":{"$ref":"#/components/schemas/advisory.CvsssV2_3"},"type":"array","uniqueItems":false},"cvss_v3":{"items":{"$ref":"#/components/schemas/advisory.CvsssV2_3"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_insert":{"type":"string"},"description":{"type":"string"},"patches":{"items":{"$ref":"#/components/schemas/advisory.Patch"},"type":"array","uniqueItems":false},"published":{"type":"string"},"qid":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vendor_refs":{"items":{"$ref":"#/components/schemas/advisory.VendorRef"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RDescription":{"description":"advisory.RDescription","properties":{"value":{"type":"string"}},"type":"object"},"advisory.RNote":{"description":"advisory.RNote","properties":{"audience":{"type":"string"},"ordinal":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"},"type":{"description":"diff between xml \u0026\u0026 json","type":"integer"}},"type":"object"},"advisory.RRevision":{"description":"advisory.RRevision","properties":{"date":{"type":"string"},"description":{"$ref":"#/components/schemas/advisory.RDescription"},"number":{"type":"string"}},"type":"object"},"advisory.RScoreSet":{"description":"advisory.RScoreSet","properties":{"base_score":{"type":"string"},"product_id":{"type":"string"},"temporal_score":{"type":"string"},"vector":{"type":"string"}},"type":"object"},"advisory.RThreat":{"description":"advisory.RThreat","properties":{"Date":{"type":"string"},"DateSpecified":{"type":"boolean"},"Description":{"$ref":"#/components/schemas/advisory.IVal"},"ProductID":{"items":{"type":"string"},"type":"array","uniqueItems":false},"Type":{"description":"diff","type":"integer"}},"type":"object"},"advisory.Range":{"description":"advisory.Range","properties":{"events":{"items":{"$ref":"#/components/schemas/advisory.Event"},"type":"array","uniqueItems":false},"repo":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RansomwareExploit":{"description":"advisory.RansomwareExploit","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"ransomware_family":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RecordType":{"description":"advisory.RecordType","properties":{"finding":{"type":"string"},"id":{"type":"string"},"kind":{"type":"string"}},"type":"object"},"advisory.RedLion":{"description":"advisory.RedLion","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RedhatCVE":{"description":"advisory.RedhatCVE","properties":{"advisories":{"items":{"type":"string"},"type":"array","uniqueItems":false},"advisory_csaf_vex_url":{"items":{"type":"string"},"type":"array","uniqueItems":false},"affected_packages":{"description":"used for un-marshlling from redhat","items":{"type":"string"},"type":"array","uniqueItems":false},"affected_release":{"items":{"$ref":"#/components/schemas/advisory.AffectedRel"},"type":"array","uniqueItems":false},"bugzilla":{"type":"string"},"bugzilla_description":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_csaf_vex_url":{"type":"string"},"cvss3_score":{"type":"string"},"cvss3_scoring_vector":{"type":"string"},"cvss_score":{"type":"number"},"cvss_scoring_vector":{"type":"string"},"cwe":{"type":"string"},"package_state":{"items":{"$ref":"#/components/schemas/advisory.PackageStat"},"type":"array","uniqueItems":false},"packages":{"description":"used to index into vulncheck OS","items":{"$ref":"#/components/schemas/advisory.VulnCheckPackage"},"type":"array","uniqueItems":false},"public_date":{"type":"string"},"resource_url":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Reference":{"description":"advisory.Reference","properties":{"href":{"description":"sort","type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RelatedRule":{"description":"advisory.RelatedRule","properties":{"id":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RemediationData":{"description":"advisory.RemediationData","properties":{"category":{"type":"string"},"date":{"type":"string"},"details":{"type":"string"},"entitlements":{"items":{"type":"string"},"type":"array","uniqueItems":false},"group_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"restart_required":{"$ref":"#/components/schemas/advisory.RestartData"}},"type":"object"},"advisory.Renesas":{"description":"advisory.Renesas","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ReportedExploit":{"description":"advisory.ReportedExploit","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RestartData":{"description":"advisory.RestartData","properties":{"category":{"type":"string"},"details":{"type":"string"}},"type":"object"},"advisory.RevisionHistory":{"description":"advisory.RevisionHistory","properties":{"date":{"type":"string"},"number":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Revive":{"description":"advisory.Revive","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RhelCVE":{"description":"advisory.RhelCVE","properties":{"csaf":{"$ref":"#/components/schemas/advisory.CSAF"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Roche":{"description":"advisory.Roche","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"roche_cves":{"items":{"$ref":"#/components/schemas/advisory.RocheCVE"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RocheCVE":{"description":"advisory.RocheCVE","properties":{"cve":{"type":"string"},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"}},"type":"object"},"advisory.Rockwell":{"description":"advisory.Rockwell","properties":{"affected_products":{"items":{"$ref":"#/components/schemas/advisory.RockwellAffectedProduct"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"impact":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RockwellAffectedProduct":{"description":"advisory.RockwellAffectedProduct","properties":{"affectedCatalogNumber":{"type":"string"},"affectedVersion":{"type":"string"},"correctedVersion":{"type":"string"},"cve":{"type":"string"},"product":{"type":"string"}},"type":"object"},"advisory.RockyAdvisory":{"description":"advisory.RockyAdvisory","properties":{"affectedProducts":{"items":{"type":"string"},"type":"array","uniqueItems":false},"buildReferences":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cves":{"items":{"$ref":"#/components/schemas/advisory.RockyCve"},"type":"array","uniqueItems":false},"description":{"type":"string"},"fixes":{"items":{"$ref":"#/components/schemas/advisory.RockyFix"},"type":"array","uniqueItems":false},"name":{"type":"string"},"publishedAt":{"type":"string"},"rebootSuggested":{"type":"boolean"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"rpms":{"$ref":"#/components/schemas/advisory.RockyRpms"},"severity":{"type":"string"},"shortCode":{"type":"string"},"solution":{"type":"string"},"synopsis":{"type":"string"},"topic":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.RockyCve":{"description":"advisory.RockyCve","properties":{"cvss3BaseScore":{"type":"string"},"cvss3ScoringVector":{"type":"string"},"cwe":{"type":"string"},"name":{"type":"string"},"sourceBy":{"type":"string"},"sourceLink":{"type":"string"}},"type":"object"},"advisory.RockyErrata":{"description":"advisory.RockyErrata","properties":{"advisory":{"$ref":"#/components/schemas/advisory.RockyAdvisory"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.RockyPackage"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.RockyFix":{"description":"advisory.RockyFix","properties":{"description":{"type":"string"},"sourceBy":{"type":"string"},"sourceLink":{"type":"string"},"ticket":{"type":"string"}},"type":"object"},"advisory.RockyPackage":{"description":"advisory.RockyPackage","properties":{"distro":{"type":"string"},"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.RockyRpms":{"additionalProperties":{"$ref":"#/components/schemas/advisory.RockyVersion"},"description":"advisory.RockyRpms","type":"object"},"advisory.RockyVersion":{"description":"advisory.RockyVersion","properties":{"nvras":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Rsync":{"description":"advisory.Rsync","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ruckus":{"description":"advisory.Ruckus","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.RustsecAdvisory":{"description":"advisory.RustsecAdvisory","properties":{"advisory":{"$ref":"#/components/schemas/advisory.RustsecFrontMatterAdvisory"},"affected":{"$ref":"#/components/schemas/advisory.RustsecAffected"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"versions":{"$ref":"#/components/schemas/advisory.RustsecFrontMatterVersions"}},"type":"object"},"advisory.RustsecAffected":{"description":"advisory.RustsecAffected","properties":{"arch":{"items":{"type":"string"},"type":"array","uniqueItems":false},"functions":{"type":"string"},"os":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.RustsecFrontMatterAdvisory":{"description":"advisory.RustsecFrontMatterAdvisory","properties":{"aliases":{"description":"Vulnerability aliases, e.g. CVE IDs (optional but recommended)\nRequest a CVE for your RustSec vulns: https://iwantacve.org/","items":{"type":"string"},"type":"array","uniqueItems":false},"categories":{"description":"Optional: Categories this advisory falls under. Valid categories are:\n\"code-execution\", \"crypto-failure\", \"denial-of-service\", \"file-disclosure\"\n\"format-injection\", \"memory-corruption\", \"memory-exposure\", \"privilege-escalation\"","items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"description":"Optional: a Common Vulnerability Scoring System score. More information\ncan be found on the CVSS website, https://www.first.org/cvss/.","type":"string"},"date":{"description":"Disclosure date of the advisory as an RFC 3339 date (mandatory)","type":"string"},"informational":{"description":"Optional: Indicates the type of informational security advisory\n - \"unsound\" for soundness issues\n - \"unmaintained\" for crates that are no longer maintained\n - \"notice\" for other informational notices","type":"string"},"keywords":{"description":"Freeform keywords which describe this vulnerability, similar to Cargo (optional)","items":{"type":"string"},"type":"array","uniqueItems":false},"package":{"description":"Name of the affected crate (mandatory)","type":"string"},"references":{"description":"URL to additional helpful references regarding the advisory (optional)","items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"description":"Related vulnerabilities (optional)\ne.g. CVE for a C library wrapped by a -sys crate)","items":{"type":"string"},"type":"array","uniqueItems":false},"rustsec_id":{"description":"Identifier for the advisory (mandatory). Will be assigned a \"RUSTSEC-YYYY-NNNN\"\nidentifier e.g. RUSTSEC-2018-0001. Please use \"RUSTSEC-0000-0000\" in PRs.","type":"string"},"url":{"description":"URL to a long-form description of this issue, e.g. a GitHub issue/PR,\na change log entry, or a blogpost announcing the release (optional)","type":"string"},"withdrawn":{"description":"Whether the advisory is withdrawn (optional)","type":"string"}},"type":"object"},"advisory.RustsecFrontMatterVersions":{"description":"advisory.RustsecFrontMatterVersions","properties":{"patched":{"items":{"type":"string"},"type":"array","uniqueItems":false},"unaffected":{"description":"Versions which were never vulnerable (optional)","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SAAdvisory":{"description":"advisory.SAAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"severity":{"type":"string"},"threats":{"type":"string"},"vendor":{"type":"string"},"warningDate":{"type":"string"},"warningNumber":{"type":"string"}},"type":"object"},"advisory.SAP":{"description":"advisory.SAP","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SECConsult":{"description":"advisory.SECConsult","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SSASource":{"description":"advisory.SSASource","properties":{"document":{"$ref":"#/components/schemas/advisory.SiemensDocument"},"product_tree":{"$ref":"#/components/schemas/advisory.SiemensProductTree"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/advisory.SiemensVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SSDAdvisory":{"description":"advisory.SSDAdvisory","properties":{"analysis":{"type":"string"},"credit":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"poc":{"description":"contains actual poc code","type":"string"},"published":{"type":"string"},"response_ref":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.Safran":{"description":"advisory.Safran","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SaintExploit":{"description":"advisory.SaintExploit","properties":{"bid":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"string"},"osvdb":{"type":"string"},"saint_id":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SalesForce":{"description":"advisory.SalesForce","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"type":"integer"},"link":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.Samba":{"description":"advisory.Samba","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"issues":{"type":"string"},"patches":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sandisk":{"description":"advisory.Sandisk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SansDshield":{"description":"advisory.SansDshield","properties":{"count":{"type":"integer"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"firstSeen":{"type":"string"},"lastSeen":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SchneiderCVE":{"description":"advisory.SchneiderCVE","properties":{"cve":{"type":"string"},"cvss_score3":{"type":"string"},"cvss_score4":{"type":"string"},"cvss_vector3":{"type":"string"},"cvss_vector4":{"type":"string"}},"type":"object"},"advisory.SchneiderElectricAdvisory":{"description":"advisory.SchneiderElectricAdvisory","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"pdf_url":{"type":"string"},"schneider_cves":{"items":{"$ref":"#/components/schemas/advisory.SchneiderCVE"},"type":"array","uniqueItems":false},"schneider_electric_id":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Schutzwerk":{"description":"advisory.Schutzwerk","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SecFix":{"description":"advisory.SecFix","properties":{"arch":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"release":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SecurityBulletin":{"description":"advisory.SecurityBulletin","properties":{"acknowledgement":{"type":"string"},"bulletinId":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvedetails":{"items":{"$ref":"#/components/schemas/advisory.CVEDetail"},"type":"array"},"date_added":{"type":"string"},"hardwareUpdates":{"items":{"$ref":"#/components/schemas/advisory.HardwareUpdate"},"type":"array"},"lastUpdated":{"type":"string"},"link":{"type":"string"},"revisions":{"items":{"$ref":"#/components/schemas/advisory.NvidiaRevision"},"type":"array"},"severity":{"type":"string"},"softwareUpdates":{"items":{"$ref":"#/components/schemas/advisory.SoftwareUpdate"},"type":"array"},"title":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.SecurityLab":{"description":"advisory.SecurityLab","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"title_ru":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.SeebugExploit":{"description":"advisory.SeebugExploit","properties":{"author":{"type":"string"},"category":{"type":"string"},"cnnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cnvd":{"items":{"type":"string"},"type":"array","uniqueItems":false},"component":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"find_time":{"type":"string"},"name":{"type":"string"},"ssv_id":{"type":"string"},"submitter":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sel":{"description":"advisory.Sel","properties":{"acknowledgement":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SentinelOne":{"description":"advisory.SentinelOne","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ServiceNow":{"description":"advisory.ServiceNow","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SevenZip":{"description":"advisory.SevenZip","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Severity":{"description":"advisory.Severity","properties":{"score":{"type":"string"},"type":{"type":"string"}},"type":"object"},"advisory.ShadowServerExploitedVulnerability":{"description":"advisory.ShadowServerExploitedVulnerability","properties":{"cnvd":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"detections_last_1_day":{"type":"integer"},"detections_last_30_days":{"type":"integer"},"detections_last_7_days":{"type":"integer"},"detections_last_90_days":{"type":"integer"},"edb":{"type":"string"},"in_kev":{"type":"boolean"},"is_iot":{"type":"boolean"},"is_ransomware":{"type":"boolean"},"product":{"type":"string"},"url":{"type":"string"},"vendor":{"type":"string"},"vulnerability_id":{"type":"string"},"vulnerability_link":{"type":"string"}},"type":"object"},"advisory.Shielder":{"description":"advisory.Shielder","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sick":{"description":"advisory.Sick","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"id":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SiemensAcknowledgments":{"description":"advisory.SiemensAcknowledgments","properties":{"names":{"items":{"type":"string"},"type":"array","uniqueItems":false},"organization":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.SiemensAdvisory":{"description":"advisory.SiemensAdvisory","properties":{"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvrf_url":{"type":"string"},"date_added":{"type":"string"},"html_url":{"type":"string"},"id":{"type":"string"},"last_update":{"description":"could potentially kill this in the future as it's a dupe","type":"string"},"pdf_url":{"type":"string"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"ssa":{"$ref":"#/components/schemas/advisory.SSASource"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"txt_url":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.SiemensBranch":{"description":"advisory.SiemensBranch","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensSubBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensCVSSV3":{"description":"advisory.SiemensCVSSV3","properties":{"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensCWE":{"description":"advisory.SiemensCWE","properties":{"id":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensDistribution":{"description":"advisory.SiemensDistribution","properties":{"text":{"type":"string"},"tlp":{"$ref":"#/components/schemas/advisory.SiemensTLP"}},"type":"object"},"advisory.SiemensDocument":{"description":"advisory.SiemensDocument","properties":{"acknowledgments":{"items":{"$ref":"#/components/schemas/advisory.SiemensAcknowledgments"},"type":"array","uniqueItems":false},"category":{"type":"string"},"csaf_version":{"type":"string"},"distribution":{"$ref":"#/components/schemas/advisory.SiemensDistribution"},"notes":{"items":{"$ref":"#/components/schemas/advisory.SiemensNotes"},"type":"array","uniqueItems":false},"publisher":{"$ref":"#/components/schemas/advisory.SiemensPublisher"},"references":{"items":{"$ref":"#/components/schemas/advisory.SiemensReferences"},"type":"array","uniqueItems":false},"title":{"type":"string"},"tracking":{"$ref":"#/components/schemas/advisory.SiemensTracking"}},"type":"object"},"advisory.SiemensEngine":{"description":"advisory.SiemensEngine","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensGenerator":{"description":"advisory.SiemensGenerator","properties":{"engine":{"$ref":"#/components/schemas/advisory.SiemensEngine"}},"type":"object"},"advisory.SiemensNotes":{"description":"advisory.SiemensNotes","properties":{"category":{"type":"string"},"text":{"type":"string"},"title":{"type":"string"}},"type":"object"},"advisory.SiemensProduct":{"description":"advisory.SiemensProduct","properties":{"name":{"type":"string"},"product_id":{"type":"string"},"product_identification_helper":{"$ref":"#/components/schemas/advisory.SiemensProductIdentificationHelper"}},"type":"object"},"advisory.SiemensProductIdentificationHelper":{"description":"advisory.SiemensProductIdentificationHelper","properties":{"model_numbers":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensProductStatus":{"description":"advisory.SiemensProductStatus","properties":{"known_affected":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensProductTree":{"description":"advisory.SiemensProductTree","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensBranch"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensPublisher":{"description":"advisory.SiemensPublisher","properties":{"category":{"type":"string"},"contact_details":{"type":"string"},"name":{"type":"string"},"namespace":{"type":"string"}},"type":"object"},"advisory.SiemensReferences":{"description":"advisory.SiemensReferences","properties":{"category":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SiemensRemediation":{"description":"advisory.SiemensRemediation","properties":{"category":{"type":"string"},"details":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"advisory.SiemensRevisionHistory":{"description":"advisory.SiemensRevisionHistory","properties":{"date":{"type":"string"},"legacy_version":{"type":"string"},"number":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.SiemensScore":{"description":"advisory.SiemensScore","properties":{"cvss_v3":{"$ref":"#/components/schemas/advisory.SiemensCVSSV3"},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SiemensSubBranch":{"description":"advisory.SiemensSubBranch","properties":{"branches":{"items":{"$ref":"#/components/schemas/advisory.SiemensSubSubBranch"},"type":"array","uniqueItems":false},"category":{"type":"string"},"name":{"type":"string"}},"type":"object"},"advisory.SiemensSubSubBranch":{"description":"advisory.SiemensSubSubBranch","properties":{"category":{"type":"string"},"name":{"type":"string"},"product":{"$ref":"#/components/schemas/advisory.SiemensProduct"}},"type":"object"},"advisory.SiemensTLP":{"description":"advisory.SiemensTLP","properties":{"label":{"type":"string"}},"type":"object"},"advisory.SiemensTracking":{"description":"advisory.SiemensTracking","properties":{"current_release_date":{"type":"string"},"generator":{"$ref":"#/components/schemas/advisory.SiemensGenerator"},"id":{"type":"string"},"initial_release_date":{"type":"string"},"revision_history":{"items":{"$ref":"#/components/schemas/advisory.SiemensRevisionHistory"},"type":"array","uniqueItems":false},"status":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.SiemensVulnerability":{"description":"advisory.SiemensVulnerability","properties":{"cve":{"type":"string"},"cwe":{"$ref":"#/components/schemas/advisory.SiemensCWE"},"notes":{"items":{"$ref":"#/components/schemas/advisory.SiemensNotes"},"type":"array","uniqueItems":false},"product_status":{"$ref":"#/components/schemas/advisory.SiemensProductStatus"},"references":{"items":{"$ref":"#/components/schemas/advisory.SiemensReferences"},"type":"array","uniqueItems":false},"remediations":{"items":{"$ref":"#/components/schemas/advisory.SiemensRemediation"},"type":"array","uniqueItems":false},"scores":{"items":{"$ref":"#/components/schemas/advisory.SiemensScore"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SierraWireless":{"description":"advisory.SierraWireless","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"swid":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SigmaRule":{"description":"advisory.SigmaRule","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_attack_techniques":{"items":{"type":"string"},"type":"array","uniqueItems":false},"sigma_rule":{"$ref":"#/components/schemas/advisory.SigmaRuleRule"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SigmaRuleRule":{"description":"advisory.SigmaRuleRule","properties":{"author":{"type":"string"},"date":{"type":"string"},"description":{"type":"string"},"detection":{"additionalProperties":{},"type":"object"},"false_positives":{"items":{"type":"string"},"type":"array","uniqueItems":false},"fields":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"level":{"type":"string"},"logsource":{"$ref":"#/components/schemas/advisory.LogSource"},"modified":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"items":{"$ref":"#/components/schemas/advisory.RelatedRule"},"type":"array","uniqueItems":false},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"}},"type":"object"},"advisory.SingCert":{"description":"advisory.SingCert","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"link":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"summary":{"type":"string"},"title":{"type":"string"},"updated":{"type":"string"}},"type":"object"},"advisory.Sitecore":{"description":"advisory.Sitecore","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"refs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"summary_ja":{"type":"string"},"title":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Slackware":{"description":"advisory.Slackware","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SoftwareUpdate":{"description":"advisory.SoftwareUpdate","properties":{"affectedVersion":{"type":"string"},"cves":{"items":{"type":"string"},"type":"array"},"operatingSystem":{"type":"string"},"softwareProduct":{"type":"string"},"updatedVersion":{"type":"string"}},"type":"object"},"advisory.SolarWindsAdvisory":{"description":"advisory.SolarWindsAdvisory","properties":{"affected_products":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"date_added":{"type":"string"},"fixed_version":{"type":"string"},"severity":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Solr":{"description":"advisory.Solr","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sonatype":{"description":"advisory.Sonatype","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SonicWallAdvisory":{"description":"advisory.SonicWallAdvisory","properties":{"advisory_id":{"type":"string"},"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cvss_vector":{"type":"string"},"cvss_version":{"type":"number"},"cwe":{"type":"string"},"date_added":{"type":"string"},"impact":{"type":"string"},"is_workaround_available":{"type":"boolean"},"last_updated_when":{"type":"string"},"published_when":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"vuln_status":{"type":"string"},"vulnerable_products_list":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.SpacelabsHealthcareAdvisory":{"description":"advisory.SpacelabsHealthcareAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Splunk":{"description":"advisory.Splunk","properties":{"advisory_id":{"type":"string"},"affected_products":{"items":{"$ref":"#/components/schemas/advisory.SplunkProduct"},"type":"array","uniqueItems":false},"bug_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SplunkProduct":{"description":"advisory.SplunkProduct","properties":{"affected_version":{"type":"string"},"component":{"type":"string"},"fixed_version":{"type":"string"},"product":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Spring":{"description":"advisory.Spring","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Stormshield":{"description":"advisory.Stormshield","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.StrykerAdvisory":{"description":"advisory.StrykerAdvisory","properties":{"affected_components":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Sudo":{"description":"advisory.Sudo","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"fix":{"type":"string"},"impact":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"workaround":{"type":"string"}},"type":"object"},"advisory.SuseSecurity":{"description":"advisory.SuseSecurity","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SwisslogHealthcareAdvisory":{"description":"advisory.SwisslogHealthcareAdvisory","properties":{"affected_components":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Symfony":{"description":"advisory.Symfony","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Synacktiv":{"description":"advisory.Synacktiv","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.SyncroSoft":{"description":"advisory.SyncroSoft","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Synology":{"description":"advisory.Synology","properties":{"affected_products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"last_updated":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"status":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Syss":{"description":"advisory.Syss","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TI":{"description":"advisory.TI","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"incident_id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TPLink":{"description":"advisory.TPLink","properties":{"bulletin_id":{"type":"integer"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TWCertAdvisory":{"description":"advisory.TWCertAdvisory","properties":{"affected_cn":{"type":"string"},"affected_en":{"type":"string"},"credit_cn":{"type":"string"},"credit_en":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description_cn":{"type":"string"},"description_en":{"type":"string"},"link":{"type":"string"},"solution_cn":{"type":"string"},"solution_en":{"type":"string"},"title_cn":{"type":"string"},"title_en":{"type":"string"},"tvnid":{"type":"string"}},"type":"object"},"advisory.Tailscale":{"description":"advisory.Tailscale","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TalosAdvisory":{"description":"advisory.TalosAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"talos_id":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TaxonomyMapping":{"description":"advisory.TaxonomyMapping","properties":{"taxonomyName":{"type":"string"},"taxonomyRelations":{"items":{"$ref":"#/components/schemas/advisory.TaxonomyRelation"},"type":"array","uniqueItems":false},"taxonomyVersion":{"type":"string"}},"type":"object"},"advisory.TaxonomyRelation":{"description":"advisory.TaxonomyRelation","properties":{"relationshipName":{"type":"string"},"relationshipValue":{"type":"string"},"taxonomyId":{"type":"string"}},"type":"object"},"advisory.TeamViewer":{"description":"advisory.TeamViewer","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TenableResearchAdvisory":{"description":"advisory.TenableResearchAdvisory","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Tencent":{"description":"advisory.Tencent","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary_cn":{"type":"string"},"title_cn":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Thales":{"description":"advisory.Thales","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TheMissingLink":{"description":"advisory.TheMissingLink","properties":{"affected_versions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed_versions":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ThermoFisher":{"description":"advisory.ThermoFisher","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ThreatActorWithExternalObjects":{"description":"advisory.ThreatActorWithExternalObjects","properties":{"associated_capecs":{"items":{"$ref":"#/components/schemas/advisory.Capec"},"type":"array","uniqueItems":false},"associated_cwes":{"items":{"$ref":"#/components/schemas/advisory.CweData"},"type":"array","uniqueItems":false},"associated_mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/advisory.MitreAttackTechWithRefs"},"type":"array","uniqueItems":false},"country":{"type":"string"},"cve_references":{"items":{"$ref":"#/components/schemas/advisory.CVEReference"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"malpedia_url":{"type":"string"},"misp_id":{"type":"string"},"misp_threat_actor":{"$ref":"#/components/schemas/advisory.MISPValueNoID"},"mitre_attack_group":{"$ref":"#/components/schemas/advisory.MITREAttackGroupNoID"},"mitre_group_cti":{"$ref":"#/components/schemas/advisory.MitreGroupCTI"},"mitre_id":{"type":"string"},"threat_actor_name":{"type":"string"},"tools":{"items":{"$ref":"#/components/schemas/advisory.Tool"},"type":"array","uniqueItems":false},"vendor_names_for_threat_actors":{"items":{"$ref":"#/components/schemas/advisory.VendorNameForThreatActor"},"type":"array","uniqueItems":false},"vendors_and_products_targeted":{"items":{"$ref":"#/components/schemas/advisory.VendorProduct"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ThreatData":{"description":"advisory.ThreatData","properties":{"category":{"type":"string"},"details":{"type":"string"},"product_ids":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Tibco":{"description":"advisory.Tibco","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"impact":{"type":"string"},"overview":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Timeline":{"description":"advisory.Timeline","properties":{"lang":{"type":"string"},"time":{"description":"FIXME: flip to time","type":"string"},"value":{"type":"string"}},"type":"object"},"advisory.Tool":{"description":"advisory.Tool","properties":{"name":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/advisory.ToolRef"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.ToolRef":{"description":"advisory.ToolRef","properties":{"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Tracking":{"description":"advisory.Tracking","properties":{"current_release_date":{"type":"string"},"id":{"type":"string"},"initial_release_date":{"type":"string"},"revision_history":{"items":{"$ref":"#/components/schemas/advisory.RevisionHistory"},"type":"array","uniqueItems":false},"status":{"type":"string"},"version":{"description":"should match last 'number' in []RevisionHistory","type":"string"}},"type":"object"},"advisory.TrackingID":{"description":"advisory.TrackingID","properties":{"system_name":{"type":"string"},"text":{"type":"string"}},"type":"object"},"advisory.TraneTechnology":{"description":"advisory.TraneTechnology","properties":{"brand":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"product":{"type":"string"},"summary":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TrendMicro":{"description":"advisory.TrendMicro","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"scores":{"type":"string"},"severity":{"type":"string"},"solution":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.TriageNotes":{"description":"advisory.TriageNotes","properties":{"references":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.Trustwave":{"description":"advisory.Trustwave","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.USD":{"description":"advisory.USD","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.USOMAdvisory":{"description":"advisory.USOMAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"effect_tr":{"type":"string"},"general_information_tr":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"solution_tr":{"type":"string"},"title_tr":{"type":"string"},"trid":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Ubiquiti":{"description":"advisory.Ubiquiti","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"links":{"items":{"type":"string"},"type":"array","uniqueItems":false},"products":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.UbuntuCVE":{"description":"advisory.UbuntuCVE","properties":{"affected_packages":{"items":{"$ref":"#/components/schemas/advisory.AffectedUbuntuPackage"},"type":"array","uniqueItems":false},"cve":{"description":"Candidate","items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"PublicDate","type":"string"},"reference_urls":{"description":"References","items":{"type":"string"},"type":"array","uniqueItems":false},"source_url":{"type":"string"},"status":{"description":"active || retired","type":"string"},"ubuntu_url":{"type":"string"},"usn":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.UbuntuPackageReleaseStatus":{"description":"advisory.UbuntuPackageReleaseStatus","properties":{"affected":{"type":"boolean"},"fixed":{"type":"boolean"},"fixed_version":{"type":"string"},"lts":{"type":"boolean"},"release":{"type":"string"},"release_long":{"type":"string"},"release_version":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.Unify":{"description":"advisory.Unify","properties":{"advisory_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Unisoc":{"description":"advisory.Unisoc","properties":{"access_vector":{"type":"string"},"affected_chipsets":{"type":"string"},"affected_software":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"rating":{"type":"string"},"score":{"type":"string"},"severity":{"type":"string"},"technology":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vulnerability":{"type":"string"}},"type":"object"},"advisory.Update":{"description":"advisory.Update","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"description":"sort // key","type":"string"},"issued":{"$ref":"#/components/schemas/advisory.DateTime"},"os_arch":{"type":"string"},"os_version":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.Package"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/advisory.Reference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"updated":{"$ref":"#/components/schemas/advisory.DateTime"}},"type":"object"},"advisory.Updated":{"description":"advisory.Updated","type":"object"},"advisory.V3AcceptanceLevel":{"description":"advisory.V3AcceptanceLevel","properties":{"description":{"type":"string"},"lastModified":{"type":"string"}},"type":"object"},"advisory.VCCPEDictionary":{"description":"advisory.VCCPEDictionary","properties":{"baseCPE":{"type":"string"},"versions":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.VCVulnerableCPEs":{"description":"advisory.VCVulnerableCPEs","properties":{"cve":{"type":"string"},"unrolled":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.VDEAdvisory":{"description":"advisory.VDEAdvisory","properties":{"csaf_json":{"$ref":"#/components/schemas/advisory.CSAF"},"csaf_url":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"vde":{"type":"string"}},"type":"object"},"advisory.VLC":{"description":"advisory.VLC","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VMWareAdvisory":{"description":"advisory.VMWareAdvisory","properties":{"AdvisoryID":{"type":"string"},"AdvisoryURL":{"type":"string"},"CVSSv3Range":{"type":"string"},"IssueDate":{"type":"string"},"Severity":{"type":"string"},"Synopsis":{"type":"string"},"UpdatedOn":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"updated_at":{"type":"string"}},"type":"object"},"advisory.VYAIREAdvisory":{"description":"advisory.VYAIREAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VanDyke":{"description":"advisory.VanDyke","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VapidLabsAdvisory":{"description":"advisory.VapidLabsAdvisory","properties":{"author":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"exploit":{"type":"string"},"link":{"type":"string"},"title":{"type":"string"},"vapidId":{"type":"string"},"vendor":{"type":"string"},"vulnerability":{"type":"string"}},"type":"object"},"advisory.Veeam":{"description":"advisory.Veeam","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"details":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"solution":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VendorNameForThreatActor":{"description":"advisory.VendorNameForThreatActor","properties":{"threat_actor_name":{"type":"string"},"url":{"type":"string"},"vendor_name":{"type":"string"}},"type":"object"},"advisory.VendorProduct":{"description":"advisory.VendorProduct","properties":{"product":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.VendorRef":{"description":"advisory.VendorRef","properties":{"vendor_ref":{"type":"string"},"vendor_ref_url":{"type":"string"}},"type":"object"},"advisory.Veritas":{"description":"advisory.Veritas","properties":{"bulletin_id":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VersionChange":{"description":"advisory.VersionChange","properties":{"at":{"type":"string"},"status":{"type":"string"}},"type":"object"},"advisory.Virtuozzo":{"description":"advisory.Virtuozzo","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VoidSec":{"description":"advisory.VoidSec","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheck":{"description":"advisory.VulnCheck","properties":{"affecting":{"items":{"type":"string"},"type":"array","uniqueItems":false},"credit":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"cvss_v3_vector":{"type":"string"},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheckCVEListV5":{"description":"advisory.VulnCheckCVEListV5","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.VulnCheckConfig":{"description":"advisory.VulnCheckConfig","properties":{"config":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"}},"type":"object"},"advisory.VulnCheckKEV":{"description":"advisory.VulnCheckKEV","properties":{"_timestamp":{"type":"string"},"cisa_date_added":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwes":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"dueDate":{"type":"string"},"knownRansomwareCampaignUse":{"type":"string"},"product":{"type":"string"},"reported_exploited_by_vulncheck_canaries":{"type":"boolean"},"required_action":{"type":"string"},"shortDescription":{"type":"string"},"vendorProject":{"type":"string"},"vulncheck_reported_exploitation":{"items":{"$ref":"#/components/schemas/advisory.ReportedExploit"},"type":"array","uniqueItems":false},"vulncheck_xdb":{"items":{"$ref":"#/components/schemas/advisory.XDB"},"type":"array","uniqueItems":false},"vulnerabilityName":{"type":"string"}},"type":"object"},"advisory.VulnCheckPackage":{"description":"advisory.VulnCheckPackage","properties":{"arch":{"type":"string"},"distro":{"type":"string"},"filename":{"type":"string"},"md5":{"type":"string"},"name":{"type":"string"},"purl":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.VulnerableDebianPackage":{"description":"advisory.VulnerableDebianPackage","properties":{"associated_cves":{"items":{"$ref":"#/components/schemas/advisory.DebianCVE"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"package_name":{"type":"string"}},"type":"object"},"advisory.VulnerableProduct":{"description":"advisory.VulnerableProduct","properties":{"name":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.Vulnrichment":{"description":"advisory.Vulnrichment","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"mitre_ref":{"$ref":"#/components/schemas/advisory.VulnrichmentCVERef"},"url":{"type":"string"}},"type":"object"},"advisory.VulnrichmentCVERef":{"description":"advisory.VulnrichmentCVERef","properties":{"containers":{"$ref":"#/components/schemas/advisory.VulnrichmentContainers"},"cveMetadata":{"$ref":"#/components/schemas/advisory.MCveMetadata"},"dataType":{"type":"string"},"dataVersion":{"type":"string"}},"type":"object"},"advisory.VulnrichmentContainers":{"description":"advisory.VulnrichmentContainers","properties":{"adp":{"items":{"$ref":"#/components/schemas/advisory.ADP"},"type":"array","uniqueItems":false},"cna":{"$ref":"#/components/schemas/advisory.MCna"}},"type":"object"},"advisory.VulnrichmentContent":{"description":"advisory.VulnrichmentContent","properties":{"id":{"type":"string"},"options":{"items":{"$ref":"#/components/schemas/advisory.VulnrichmentOption"},"type":"array","uniqueItems":false},"role":{"type":"string"},"timestamp":{"type":"string"},"version":{"type":"string"}},"type":"object"},"advisory.VulnrichmentMetric":{"description":"advisory.VulnrichmentMetric","properties":{"other":{"$ref":"#/components/schemas/advisory.VulnrichmentOther"}},"type":"object"},"advisory.VulnrichmentOption":{"description":"advisory.VulnrichmentOption","properties":{"Automatable":{"type":"string"},"Exploitation":{"type":"string"},"Technical Impact":{"type":"string"}},"type":"object"},"advisory.VulnrichmentOther":{"description":"advisory.VulnrichmentOther","properties":{"content":{"$ref":"#/components/schemas/advisory.VulnrichmentContent"},"type":{"type":"string"}},"type":"object"},"advisory.WRT":{"description":"advisory.WRT","properties":{"advisory":{"type":"string"},"affectedVersions":{"type":"string"},"credits":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"mitigations":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"requirements":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WatchGuard":{"description":"advisory.WatchGuard","properties":{"advisory_id":{"type":"string"},"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"resolution":{"type":"string"},"score":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WhatsApp":{"description":"advisory.WhatsApp","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Wibu":{"description":"advisory.Wibu","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Wireshark":{"description":"advisory.Wireshark","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"id":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WithSecure":{"description":"advisory.WithSecure","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.WolfSSL":{"description":"advisory.WolfSSL","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"fixed_version":{"type":"string"},"severity":{"type":"string"}},"type":"object"},"advisory.Wolfi":{"description":"advisory.Wolfi","properties":{"apkurl":{"type":"string"},"archs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"description":"un-used","type":"string"},"packages":{"items":{"$ref":"#/components/schemas/advisory.WolfiPackage"},"type":"array","uniqueItems":false},"reponame":{"type":"string"},"urlprefix":{"type":"string"}},"type":"object"},"advisory.WolfiPackage":{"description":"advisory.WolfiPackage","properties":{"name":{"type":"string"},"secfixes":{"items":{"$ref":"#/components/schemas/advisory.WolfiSecFix"},"type":"array","uniqueItems":false}},"type":"object"},"advisory.WolfiSecFix":{"description":"advisory.WolfiSecFix","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"}},"type":"object"},"advisory.Wordfence":{"description":"advisory.Wordfence","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"fixed":{"items":{"type":"string"},"type":"array","uniqueItems":false},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.XDB":{"description":"advisory.XDB","properties":{"clone_ssh_url":{"type":"string"},"date_added":{"type":"string"},"exploit_type":{"type":"string"},"xdb_id":{"type":"string"},"xdb_url":{"type":"string"}},"type":"object"},"advisory.Xen":{"description":"advisory.Xen","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updatedAt":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xerox":{"description":"advisory.Xerox","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xiaomi":{"description":"advisory.Xiaomi","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"internal_id":{"type":"string"},"summary":{"type":"string"},"summary_cn":{"type":"string"},"title":{"type":"string"},"title_cn":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.Xylem":{"description":"advisory.Xylem","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"references":{"items":{"type":"string"},"type":"array","uniqueItems":false},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"xsa":{"type":"string"}},"type":"object"},"advisory.Yamaha":{"description":"advisory.Yamaha","properties":{"affected":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fixed":{"type":"string"},"summary_ja":{"type":"string"},"title_ja":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.YokogawaAdvisory":{"description":"advisory.YokogawaAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cwe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"date_last_revised":{"type":"string"},"name":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"ysar_id":{"type":"string"}},"type":"object"},"advisory.Yubico":{"description":"advisory.Yubico","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"id":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZDI":{"description":"advisory.ZDI","properties":{"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"cvss_version":{"type":"string"},"discoverers":{"items":{"type":"string"},"type":"array","uniqueItems":false},"filter_ids_dv":{"items":{"type":"string"},"type":"array","uniqueItems":false},"last_updated_at":{"type":"string"},"products":{"items":{"$ref":"#/components/schemas/advisory.ZDIProduct"},"type":"array","uniqueItems":false},"public_advisory":{"type":"string"},"published_date":{"type":"string"},"responses":{"items":{"$ref":"#/components/schemas/advisory.ZDIResponse"},"type":"array","uniqueItems":false},"title":{"type":"string"},"zdi_can":{"type":"string"},"zdi_public":{"type":"string"}},"type":"object"},"advisory.ZDIProduct":{"description":"advisory.ZDIProduct","properties":{"name":{"type":"string"},"uri":{"type":"string"},"vendor":{"$ref":"#/components/schemas/advisory.ZDIVendor"}},"type":"object"},"advisory.ZDIResponse":{"description":"advisory.ZDIResponse","properties":{"text":{"type":"string"},"uri":{"type":"string"},"vendor":{"$ref":"#/components/schemas/advisory.ZDIResponseVendor"}},"type":"object"},"advisory.ZDIResponseVendor":{"description":"advisory.ZDIResponseVendor","properties":{"name":{"type":"string"}},"type":"object"},"advisory.ZDIVendor":{"description":"advisory.ZDIVendor","properties":{"name":{"type":"string"},"uri":{"type":"string"}},"type":"object"},"advisory.Zebra":{"description":"advisory.Zebra","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZeroDayAdvisory":{"description":"advisory.ZeroDayAdvisory","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"zdi":{"$ref":"#/components/schemas/advisory.ZDI"}},"type":"object"},"advisory.ZeroScienceAdvisory":{"description":"advisory.ZeroScienceAdvisory","properties":{"advisoryId":{"type":"string"},"affectedVersions":{"type":"string"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"impact":{"type":"string"},"link":{"type":"string"},"poC":{"type":"string"},"references":{"items":{"type":"string"},"type":"array"},"risk":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"vendor":{"type":"string"}},"type":"object"},"advisory.Zimbra":{"description":"advisory.Zimbra","properties":{"bugs":{"items":{"type":"integer"},"type":"array"},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"fix":{"type":"string"},"rating":{"type":"string"},"reporter":{"type":"string"},"summary":{"type":"string"}},"type":"object"},"advisory.Zoom":{"description":"advisory.Zoom","properties":{"affected":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss_score":{"type":"string"},"cvss_vector":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"},"zsb":{"type":"string"}},"type":"object"},"advisory.Zscaler":{"description":"advisory.Zscaler","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"advisory.ZuluVersion":{"description":"advisory.ZuluVersion","properties":{"jdk":{"type":"string"},"type":{"type":"string"},"zulu":{"type":"string"}},"type":"object"},"advisory.Zuso":{"description":"advisory.Zuso","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cvss":{"type":"string"},"date_added":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"},"zaid":{"type":"string"}},"type":"object"},"advisory.Zyxel":{"description":"advisory.Zyxel","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"summary":{"type":"string"},"title":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.BaseMetricV2":{"description":"api.BaseMetricV2","properties":{"acInsufInfo":{"type":"boolean"},"cvssV2":{"$ref":"#/components/schemas/api.CVSSV2"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"obtainAllPrivilege":{"type":"boolean"},"obtainOtherPrivilege":{"type":"boolean"},"obtainUserPrivilege":{"type":"boolean"},"severity":{"type":"string"},"userInteractionRequired":{"type":"boolean"}},"type":"object"},"api.BaseMetricV3":{"description":"api.BaseMetricV3","properties":{"cvssV3":{"$ref":"#/components/schemas/api.CVSSV3"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"}},"type":"object"},"api.C2Frequency":{"description":"api.C2Frequency","properties":{"count":{"type":"integer"},"src":{"type":"string"}},"type":"object"},"api.CPE":{"description":"api.CPE","properties":{"edition":{"type":"string"},"language":{"type":"string"},"other":{"type":"string"},"part":{"type":"string"},"product":{"type":"string"},"sw_edition":{"type":"string"},"target_hw":{"type":"string"},"target_sw":{"type":"string"},"update":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CPEMatch":{"description":"api.CPEMatch","properties":{"cpe22Uri":{"type":"string"},"cpe23Uri":{"type":"string"},"cpe_name":{"items":{"$ref":"#/components/schemas/api.CPEName"},"type":"array","uniqueItems":false},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"},"vulnerable":{"type":"boolean"}},"type":"object"},"api.CPEName":{"description":"api.CPEName","properties":{"cpe22Uri":{"type":"string"},"cpe23Uri":{"type":"string"},"lastModifiedDate":{"type":"string"}},"type":"object"},"api.CVE":{"description":"api.CVE","properties":{"CVE_data_meta":{"$ref":"#/components/schemas/api.CVEDataMeta"},"data_format":{"type":"string"},"data_type":{"type":"string"},"data_version":{"type":"string"},"description":{"$ref":"#/components/schemas/api.Description"},"problemtype":{"$ref":"#/components/schemas/api.ProblemType"},"references":{"$ref":"#/components/schemas/api.References"}},"type":"object"},"api.CVEConfirmed":{"description":"api.CVEConfirmed","properties":{"confirmed":{"type":"boolean"},"cve_id":{"type":"string"}},"type":"object"},"api.CVEDataMeta":{"description":"api.CVEDataMeta","properties":{"ASSIGNER":{"type":"string"},"ID":{"type":"string"}},"type":"object"},"api.CVEDataMetaExtended":{"description":"api.CVEDataMetaExtended","properties":{"ALIAS":{"type":"string"},"ASSIGNER":{"type":"string"},"ID":{"type":"string"},"STATUS":{"type":"string"}},"type":"object"},"api.CVEExtended":{"description":"api.CVEExtended","properties":{"CVE_data_meta":{"$ref":"#/components/schemas/api.CVEDataMetaExtended"},"categorization":{"$ref":"#/components/schemas/api.CategorizationExtended"},"data_format":{"type":"string"},"data_type":{"type":"string"},"data_version":{"type":"string"},"description":{"$ref":"#/components/schemas/api.Description"},"problemtype":{"$ref":"#/components/schemas/api.ProblemTypeExtended"},"references":{"$ref":"#/components/schemas/api.ReferencesExtended"}},"type":"object"},"api.CVSSV2":{"description":"api.CVSSV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CVSSV3":{"description":"api.CVSSV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"integrityImpact":{"type":"string"},"privilegesRequired":{"type":"string"},"scope":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.CWE":{"description":"api.CWE","properties":{"abstraction":{"type":"string"},"description":{"type":"string"},"kev_count":{"type":"integer"},"relationships":{"items":{"$ref":"#/components/schemas/api.CWERelationship"},"type":"array","uniqueItems":false},"status":{"type":"string"},"structure":{"type":"string"},"vulncheck_nvd_count":{"type":"integer"},"weakness_id":{"type":"string"},"weakness_name":{"type":"string"},"weighted_score":{"type":"number"}},"type":"object"},"api.CWERelationship":{"description":"api.CWERelationship","properties":{"cwe_id":{"type":"string"},"cwe_label":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.CategorizationExtended":{"description":"api.CategorizationExtended","properties":{"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.ClientFingerprints":{"description":"api.ClientFingerprints","properties":{"hassh":{"type":"string"},"ja3":{"type":"string"},"ja4":{"type":"string"}},"type":"object"},"api.Configurations":{"description":"api.Configurations","properties":{"CVE_data_version":{"type":"string"},"nodes":{"items":{"$ref":"#/components/schemas/api.Nodes"},"type":"array","uniqueItems":false}},"type":"object"},"api.CveItems":{"description":"api.CveItems","properties":{"configurations":{"$ref":"#/components/schemas/api.Configurations"},"cve":{"$ref":"#/components/schemas/api.CVE"},"impact":{"$ref":"#/components/schemas/api.Impact"},"lastModifiedDate":{"type":"string"},"publishedDate":{"type":"string"},"vcConfigurations":{"$ref":"#/components/schemas/api.Configurations"},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.CveItemsExtended":{"description":"api.CveItemsExtended","properties":{"_timestamp":{"type":"string"},"configurations":{"$ref":"#/components/schemas/api.Configurations"},"cve":{"$ref":"#/components/schemas/api.CVEExtended"},"date_added":{"type":"string"},"documentGenerationDate":{"description":"the deep tag instructs deep.Equal to ignore this field (used during OpenSearch loading)","type":"string"},"impact":{"$ref":"#/components/schemas/api.ImpactExtended"},"lastModifiedDate":{"type":"string"},"mitre_attack_techniques":{"items":{"$ref":"#/components/schemas/api.MitreAttackTech"},"type":"array","uniqueItems":false},"publishedDate":{"type":"string"},"related_attack_patterns":{"items":{"$ref":"#/components/schemas/api.RelatedAttackPattern"},"type":"array","uniqueItems":false},"vcConfigurations":{"$ref":"#/components/schemas/api.Configurations"},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vulnerable_cpes":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.DateTime":{"description":"api.DateTime","type":"object"},"api.Description":{"description":"api.Description","properties":{"description_data":{"items":{"$ref":"#/components/schemas/api.DescriptionData"},"type":"array","uniqueItems":false}},"type":"object"},"api.DescriptionData":{"description":"api.DescriptionData","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.EPSS":{"description":"exclude EPSS from changelog","properties":{"epss_percentile":{"type":"number"},"epss_score":{"type":"number"},"last_modified":{"type":"string"}},"type":"object"},"api.EPSSData":{"description":"api.EPSSData","properties":{"_timestamp":{"type":"string"},"cve":{"type":"string"},"epss_percentile":{"type":"number"},"epss_score":{"type":"number"}},"type":"object"},"api.ExploitChain":{"description":"api.ExploitChain","properties":{"cves":{"items":{"$ref":"#/components/schemas/api.ExploitChainCVE"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.ExploitChainCVE":{"description":"api.ExploitChainCVE","properties":{"cve":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.ExploitV3Result":{"description":"api.ExploitV3Result","properties":{"_timestamp":{"description":"ignore this field when checking for differences/changes","type":"string"},"commercial_exploit_found":{"type":"boolean"},"counts":{"$ref":"#/components/schemas/api.ExploitsV3Count"},"date_added":{"type":"string"},"epss":{"$ref":"#/components/schemas/api.EPSS"},"exploits":{"items":{"$ref":"#/components/schemas/api.NormalizedExploitV3Entry"},"type":"array","uniqueItems":false},"id":{"type":"string"},"inKEV":{"type":"boolean"},"inVCKEV":{"type":"boolean"},"max_exploit_maturity":{"type":"string"},"public_exploit_found":{"type":"boolean"},"reported_exploitation":{"items":{"$ref":"#/components/schemas/api.NormalizedReportV3Entry"},"type":"array","uniqueItems":false},"reported_exploited":{"type":"boolean"},"reported_exploited_by_botnets":{"type":"boolean"},"reported_exploited_by_honeypot_service":{"type":"boolean"},"reported_exploited_by_ransomware":{"type":"boolean"},"reported_exploited_by_threat_actors":{"type":"boolean"},"reported_exploited_by_vulncheck_canaries":{"type":"boolean"},"timeline":{"$ref":"#/components/schemas/api.ExploitsV3Timeline"},"trending":{"$ref":"#/components/schemas/api.ExploitsTrending"},"weaponized_exploit_found":{"type":"boolean"}},"type":"object"},"api.ExploitsChange":{"description":"api.ExploitsChange","properties":{"change_time":{"type":"string"},"change_type":{"type":"string"},"field":{"type":"string"},"new_value":{},"old_value":{}},"type":"object"},"api.ExploitsChangelog":{"description":"api.ExploitsChangelog","properties":{"changes":{"items":{"$ref":"#/components/schemas/api.ExploitsChange"},"type":"array","uniqueItems":false},"cve":{"type":"string"}},"type":"object"},"api.ExploitsTrending":{"description":"api.ExploitsTrending","properties":{"github":{"type":"boolean"}},"type":"object"},"api.ExploitsV3Count":{"description":"api.ExploitsV3Count","properties":{"botnets":{"type":"integer"},"exploits":{"type":"integer"},"ransomware_families":{"type":"integer"},"threat_actors":{"type":"integer"}},"type":"object"},"api.ExploitsV3Timeline":{"description":"api.ExploitsV3Timeline","properties":{"cisa_kev_date_added":{"type":"string"},"cisa_kev_date_due":{"type":"string"},"first_exploit_published":{"type":"string"},"first_exploit_published_weaponized_or_higher":{"type":"string"},"first_reported_botnet":{"type":"string"},"first_reported_ransomware":{"type":"string"},"first_reported_threat_actor":{"type":"string"},"first_reported_vulncheck_canaries":{"type":"string"},"most_recent_exploit_published":{"type":"string"},"most_recent_reported_botnet":{"type":"string"},"most_recent_reported_ransomware":{"type":"string"},"most_recent_reported_threat_actor":{"type":"string"},"nvd_last_modified":{"description":"it's often the case the nvd record was updated, but in a way that is irrelevant to the contents\nof a vc exploits record.","type":"string"},"nvd_published":{"type":"string"},"vulncheck_kev_date_added":{"type":"string"},"vulncheck_kev_date_due":{"type":"string"}},"type":"object"},"api.Fingerprint":{"description":"api.Fingerprint","properties":{"cpe":{"type":"string"},"product":{"type":"string"},"vendor":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.HTTPDetails":{"description":"api.HTTPDetails","properties":{"http_method":{"type":"string"},"http_request_body":{"type":"string"},"http_user_agent":{"type":"string"},"protocol":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.Impact":{"description":"api.Impact","properties":{"baseMetricV2":{"$ref":"#/components/schemas/api.BaseMetricV2"},"baseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"metricV40":{"$ref":"#/components/schemas/advisory.CVSSV40"}},"type":"object"},"api.ImpactExtended":{"description":"api.ImpactExtended","properties":{"baseMetricV2":{"$ref":"#/components/schemas/api.BaseMetricV2"},"baseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"correctedBaseMetricV3":{"$ref":"#/components/schemas/api.BaseMetricV3"},"epss":{"$ref":"#/components/schemas/api.EPSS"},"metricV40":{"$ref":"#/components/schemas/advisory.CVSSV40"},"ssvc":{"items":{"$ref":"#/components/schemas/api.SSVC"},"type":"array","uniqueItems":false},"temporalMetricV2":{"$ref":"#/components/schemas/api.TemporalMetricV2"},"temporalMetricV3":{"$ref":"#/components/schemas/api.TemporalMetricV3"},"temporalV3Corrected":{"$ref":"#/components/schemas/api.TemporalMetricV3"},"threatMetricV40":{"$ref":"#/components/schemas/advisory.CVSSV40Threat"}},"type":"object"},"api.InitialAccess":{"description":"api.InitialAccess","properties":{"artifacts":{"description":"Artifacts holds the set of available artifacts for this vulnerability, such as exploit, shodan queries, PCAP traces, and others.","items":{"$ref":"#/components/schemas/api.InitialAccessArtifact"},"type":"array","uniqueItems":false},"cve":{"description":"CVE identifier for the given initial access record.","type":"string"},"id":{"description":"ID is the unique identifier for this initial access record.","type":"string"},"inKEV":{"description":"InKEV is true if this artifact is in CISA's Known Exploited Vulnerabilities (KEV) data set; otherwise, false.","type":"boolean"},"inVCKEV":{"description":"InVCKEV is true if this artifact is in VulnCheck's Known Exploited Vulnerabilities (VCKEV) data set; otherwise, false.","type":"boolean"},"vulnerable_cpes":{"description":"VulnerableCPEs is the list of vulnerable CPE strings associated with this CVE and artifact(s).","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.InitialAccessArtifact":{"description":"api.InitialAccessArtifact","properties":{"artifactName":{"description":"ArtifactName is a title to associate with this artifact.","type":"string"},"artifactsURL":{"description":"ArtifactsURL are URLs to the available artifact.","items":{"type":"string"},"type":"array","uniqueItems":false},"baiduQueries":{"description":"...","items":{"type":"string"},"type":"array","uniqueItems":false},"baiduRawQueries":{"description":"...","items":{"type":"string"},"type":"array","uniqueItems":false},"censysLegacyQueries":{"description":"CensysLegacyQueries are legacy queries for examining potential Internet-exposed devices \u0026 applications with Censys in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysLegacyRawQueries":{"description":"CensysLegacyRawQueries are raw legacy queries for examining potential Internet-exposed devices \u0026 applications with Censys.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysQueries":{"description":"CensysQueries are queries for examining potential Internet-exposed devices \u0026 applications with Censys in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"censysRawQueries":{"description":"CensysRawQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with Censys.","items":{"type":"string"},"type":"array","uniqueItems":false},"chain":{"description":"Chain can represent the chain of exploitation.","items":{"type":"string"},"type":"array","uniqueItems":false},"cloneSSHURL":{"description":"CloneSSHURL is the git URL to clone the artifact with.","type":"string"},"dateAdded":{"description":"DateAdded is when this artifact entry was first added to the InitialAccess data set.","type":"string"},"driftnetQueries":{"description":"DriftnetQueries are queries for examining Internet exposed services with Driftnet.","items":{"type":"string"},"type":"array","uniqueItems":false},"driftnetRawQueries":{"description":"DriftnetRawQueries are queries for examining Internet exposed services with Driftnet.","items":{"type":"string"},"type":"array","uniqueItems":false},"exploit":{"description":"Exploit indicates whether or not an exploit is available in this artifact.","type":"boolean"},"fofaQueries":{"description":"FOFAQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with FOFA.","items":{"type":"string"},"type":"array","uniqueItems":false},"fofaRawQueries":{"items":{"type":"string"},"type":"array","uniqueItems":false},"goexploit":{"$ref":"#/components/schemas/api.InitialAccessGoExploit"},"googleQueries":{"description":"google queries","items":{"type":"string"},"type":"array","uniqueItems":false},"googleRawQueries":{"description":"raw google queries","items":{"type":"string"},"type":"array","uniqueItems":false},"greynoiseQueries":{"description":"GreynoiseQueries are queries for finding the vulnerability via honeypot data.","items":{"type":"string"},"type":"array","uniqueItems":false},"mitreAttackTechniques":{"description":"MITRE ATT\u0026CK techniques","items":{"type":"string"},"type":"array","uniqueItems":false},"nmapScript":{"description":"NmapScript indicates whether or not an nmap script for scanning environment exists in this artifact.","type":"boolean"},"pcap":{"description":"PCAP indicates whether of not a package capture of the exploit PoC exploiting a vulnerable system exists in this artifact.","type":"boolean"},"product":{"description":"Product are the software that has the vulnerability.","items":{"type":"string"},"type":"array","uniqueItems":false},"related":{"description":"Related is a set of related cves.","items":{"type":"string"},"type":"array","uniqueItems":false},"shodanQueries":{"description":"ShodanQueries are queries for examining potential Internet-exposed devices \u0026 applications with Shodan in URL form.","items":{"type":"string"},"type":"array","uniqueItems":false},"shodanRawQueries":{"description":"ShodanRawQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with Shodan.","items":{"type":"string"},"type":"array","uniqueItems":false},"sigmaRule":{"description":"SigmaRule indicates whether or not a Sigma rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"snortRule":{"description":"SnortRule indicates whether or not a Snort rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"suricataRule":{"description":"SuricataRule indicates whether or not a Suricata rule designed to detect the exploitation of the vulnerability over the network exists in this artifact.","type":"boolean"},"targetDocker":{"description":"TargetDocker indicates whether or not there is an available docker image with the vulnerability.","type":"boolean"},"targetEncryptedComms":{"description":"Encrypted communications?","type":"string"},"targetService":{"description":"TargetService indicates the service (HTTP, FTP, etc) that this exploit targets.","type":"string"},"vcTargetIntelQuery":{"description":"VCTargetIntelQuery are URLs to the VulnCheck target intel index for this artifact's vendor/product.","items":{"type":"string"},"type":"array","uniqueItems":false},"vendor":{"description":"Vendor of the vulnerable product","type":"string"},"versionScanner":{"description":"VersionScanner indicates whether or not the exploit PoC can determine if target system is vulnerable without sending exploit payload in this artifact.","type":"boolean"},"yara":{"description":"YARA indicates whether or not a YARA rule designed to detect the exploit on an endpoint exists in this artifact.","type":"boolean"},"zeroday":{"description":"Zeroday indicates whether or not it is a VulnCheck zeroday.","type":"boolean"},"zoomEyeQueries":{"description":"ZoomEyeQueries are raw queries for examining potential Internet-exposed devices \u0026 applications with ZoomEye.","items":{"type":"string"},"type":"array","uniqueItems":false},"zoomEyeRawQueries":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.InitialAccessGoExploit":{"description":"GoExploit holds metadata about the VulnCheck Go exploit module for this artifact, if one exists.","properties":{"assetDetection":{"description":"AssetDetection indicates whether the module can detect the presence of the asset.","type":"boolean"},"cpe":{"description":"CPE lists the CPE strings for products targeted by this exploit module.","items":{"type":"string"},"type":"array","uniqueItems":false},"customFlags":{"description":"CustomFlags lists any additional flags exposed by the exploit module.","items":{"$ref":"#/components/schemas/api.InitialAccessGoExploitCustomFlag"},"type":"array","uniqueItems":false},"defaultPort":{"description":"DefaultPort is the default port the exploit targets.","type":"integer"},"exploitType":{"description":"ExploitType is the category of exploit (e.g. CodeExecution, InformationDisclosure).","type":"string"},"exploitation":{"description":"Exploitation indicates whether the module can exploit the vulnerability.","type":"boolean"},"protocol":{"description":"Protocol is the network protocol the exploit targets (e.g. HTTP, TCP).","type":"string"},"supportedC2":{"description":"SupportedC2 lists the C2 server types supported by the exploit module.","items":{"type":"string"},"type":"array","uniqueItems":false},"versionScanner":{"description":"VersionScanner indicates whether the module can determine if the target is vulnerable without sending an exploit payload.","type":"boolean"}},"type":"object"},"api.InitialAccessGoExploitCustomFlag":{"description":"api.InitialAccessGoExploitCustomFlag","properties":{"default":{"description":"Default is the flag's default value, serialized as a string.","type":"string"},"name":{"description":"Name is the flag name.","type":"string"},"type":{"description":"Type is the flag's value type (string, int, uint, bool).","type":"string"},"usage":{"description":"Usage is the flag's help text.","type":"string"}},"type":"object"},"api.MitreAttackTech":{"description":"api.MitreAttackTech","properties":{"d3fendmapping":{"items":{"$ref":"#/components/schemas/api.MitreMitigation2D3fendMapping"},"type":"array","uniqueItems":false},"detections":{"items":{"$ref":"#/components/schemas/api.MitreDetectionTech"},"type":"array","uniqueItems":false},"domain":{"type":"string"},"id":{"type":"string"},"mitigations":{"items":{"$ref":"#/components/schemas/api.MitreMitigationTech"},"type":"array","uniqueItems":false},"name":{"type":"string"},"subtechnique":{"type":"boolean"},"tactics":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.MitreAttackToCVE":{"description":"api.MitreAttackToCVE","properties":{"cve_list":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"technique_id":{"$ref":"#/components/schemas/api.MitreAttackTech"}},"type":"object"},"api.MitreD3fendTechnique":{"description":"api.MitreD3fendTechnique","properties":{"id":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.MitreDetectionTech":{"description":"api.MitreDetectionTech","properties":{"datacomponent":{"type":"string"},"datasource":{"type":"string"},"detects":{"type":"string"},"id":{"type":"string"}},"type":"object"},"api.MitreMitigation2D3fendMapping":{"description":"api.MitreMitigation2D3fendMapping","properties":{"d3fendtechniques":{"items":{"$ref":"#/components/schemas/api.MitreD3fendTechnique"},"type":"array","uniqueItems":false},"id":{"type":"string"}},"type":"object"},"api.MitreMitigationTech":{"description":"api.MitreMitigationTech","properties":{"description":{"type":"string"},"id":{"type":"string"},"mitigation_url":{"type":"string"}},"type":"object"},"api.NVD20CPEMatch":{"description":"api.NVD20CPEMatch","properties":{"cpeLastModified":{"type":"string"},"created":{"type":"string"},"criteria":{"type":"string"},"lastModified":{"type":"string"},"matchCriteriaId":{"type":"string"},"matches":{"items":{"$ref":"#/components/schemas/api.NVD20CPEName"},"type":"array","uniqueItems":false},"status":{"type":"string"},"versionEndExcluding":{"type":"string"},"versionEndIncluding":{"type":"string"},"versionStartExcluding":{"type":"string"},"versionStartIncluding":{"type":"string"}},"type":"object"},"api.NVD20CPEName":{"description":"api.NVD20CPEName","properties":{"cpeName":{"type":"string"},"cpeNameId":{"type":"string"}},"type":"object"},"api.NVD20CVE":{"description":"api.NVD20CVE","properties":{"cisaActionDue":{"type":"string"},"cisaExploitAdd":{"type":"string"},"cisaRequiredAction":{"type":"string"},"cisaVulnerabilityName":{"type":"string"},"configurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"descriptions":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"evaluatorComment":{"type":"string"},"evaluatorImpact":{"type":"string"},"evaluatorSolution":{"type":"string"},"id":{"type":"string"},"lastModified":{"type":"string"},"metrics":{"$ref":"#/components/schemas/api.NVD20Metric"},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/api.NVD20Reference"},"type":"array","uniqueItems":false},"sourceIdentifier":{"type":"string"},"vcConfigurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vendorComments":{"items":{"$ref":"#/components/schemas/api.NVD20VendorComment"},"type":"array","uniqueItems":false},"vulnStatus":{"type":"string"},"weaknesses":{"items":{"$ref":"#/components/schemas/api.NVD20Weakness"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20CVEExtended":{"description":"api.NVD20CVEExtended","properties":{"ALIAS":{"type":"string"},"STATUS":{"type":"string"},"_timestamp":{"description":"the deep tag instructs deep.Equal to ignore this field (used during OpenSearch loading)","type":"string"},"categorization":{"$ref":"#/components/schemas/api.CategorizationExtended"},"cisaActionDue":{"type":"string"},"cisaExploitAdd":{"type":"string"},"cisaRequiredAction":{"type":"string"},"cisaVulnerabilityName":{"type":"string"},"configurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"descriptions":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"documentGenerationDate":{"type":"string"},"evaluatorComment":{"type":"string"},"evaluatorImpact":{"type":"string"},"evaluatorSolution":{"type":"string"},"id":{"type":"string"},"lastModified":{"type":"string"},"metrics":{"$ref":"#/components/schemas/api.NVD20MetricExtended"},"mitreAttackTechniques":{"items":{"$ref":"#/components/schemas/api.MitreAttackTech"},"type":"array","uniqueItems":false},"published":{"type":"string"},"references":{"items":{"$ref":"#/components/schemas/api.NVD20ReferenceExtended"},"type":"array","uniqueItems":false},"relatedAttackPatterns":{"items":{"$ref":"#/components/schemas/api.RelatedAttackPattern"},"type":"array","uniqueItems":false},"sourceIdentifier":{"type":"string"},"vcConfigurations":{"items":{"$ref":"#/components/schemas/advisory.NVD20Configuration"},"type":"array","uniqueItems":false},"vcVulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"vendorComments":{"items":{"$ref":"#/components/schemas/api.NVD20VendorComment"},"type":"array","uniqueItems":false},"vulnStatus":{"type":"string"},"vulncheckKEVExploitAdd":{"type":"string"},"vulnerableCPEs":{"items":{"type":"string"},"type":"array","uniqueItems":false},"weaknesses":{"items":{"$ref":"#/components/schemas/api.NVD20WeaknessExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20CvssDataV2":{"description":"api.NVD20CvssDataV2","properties":{"accessComplexity":{"type":"string"},"accessVector":{"type":"string"},"authentication":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"collateralDamagePotential":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"exploitability":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"targetDistribution":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20CvssDataV3":{"description":"api.NVD20CvssDataV3","properties":{"attackComplexity":{"type":"string"},"attackVector":{"type":"string"},"availabilityImpact":{"type":"string"},"availabilityRequirement":{"type":"string"},"baseScore":{"type":"number"},"baseSeverity":{"type":"string"},"confidentialityImpact":{"type":"string"},"confidentialityRequirement":{"type":"string"},"environmentalScore":{"type":"number"},"environmentalSeverity":{"type":"string"},"exploitCodeMaturity":{"type":"string"},"integrityImpact":{"type":"string"},"integrityRequirement":{"type":"string"},"modifiedAttackComplexity":{"type":"string"},"modifiedAttackVector":{"type":"string"},"modifiedAvailabilityImpact":{"type":"string"},"modifiedConfidentialityImpact":{"type":"string"},"modifiedIntegrityImpact":{"type":"string"},"modifiedPrivilegesRequired":{"type":"string"},"modifiedScope":{"type":"string"},"modifiedUserInteraction":{"type":"string"},"privilegesRequired":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"scope":{"type":"string"},"temporalScore":{"type":"number"},"temporalSeverity":{"type":"string"},"userInteraction":{"type":"string"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20CvssMetricV2":{"description":"api.NVD20CvssMetricV2","properties":{"acInsufInfo":{"type":"boolean"},"baseSeverity":{"type":"string"},"cvssData":{"$ref":"#/components/schemas/api.NVD20CvssDataV2"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"obtainAllPrivilege":{"type":"boolean"},"obtainOtherPrivilege":{"type":"boolean"},"obtainUserPrivilege":{"type":"boolean"},"source":{"type":"string"},"type":{"type":"string"},"userInteractionRequired":{"type":"boolean"}},"type":"object"},"api.NVD20CvssMetricV3":{"description":"api.NVD20CvssMetricV3","properties":{"cvssData":{"$ref":"#/components/schemas/api.NVD20CvssDataV3"},"exploitabilityScore":{"type":"number"},"impactScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20CvssMetricV40":{"description":"api.NVD20CvssMetricV40","properties":{"cvssData":{"$ref":"#/components/schemas/advisory.CVSSV40"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20Description":{"description":"api.NVD20Description","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.NVD20Metric":{"description":"api.NVD20Metric","properties":{"cvssMetricV2":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV2"},"type":"array","uniqueItems":false},"cvssMetricV30":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV31":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV40":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV40"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20MetricExtended":{"description":"api.NVD20MetricExtended","properties":{"cvssMetricV2":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV2"},"type":"array","uniqueItems":false},"cvssMetricV30":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV31":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV3"},"type":"array","uniqueItems":false},"cvssMetricV40":{"items":{"$ref":"#/components/schemas/api.NVD20CvssMetricV40"},"type":"array","uniqueItems":false},"epss":{"$ref":"#/components/schemas/api.EPSS"},"ssvc":{"items":{"$ref":"#/components/schemas/api.SSVC"},"type":"array","uniqueItems":false},"temporalCVSSV2":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV2"},"temporalCVSSV2Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV2"},"type":"array","uniqueItems":false},"temporalCVSSV30":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"temporalCVSSV30Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"type":"array","uniqueItems":false},"temporalCVSSV31":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"temporalCVSSV31Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20TemporalCVSSV3"},"type":"array","uniqueItems":false},"threatCVSSV40":{"$ref":"#/components/schemas/api.NVD20ThreatCVSSV40"},"threatCVSSV40Secondary":{"items":{"$ref":"#/components/schemas/api.NVD20ThreatCVSSV40"},"type":"array","uniqueItems":false}},"type":"object"},"api.NVD20Reference":{"description":"api.NVD20Reference","properties":{"source":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.NVD20ReferenceExtended":{"description":"api.NVD20ReferenceExtended","properties":{"date_added":{"type":"string"},"external_id":{"type":"string"},"lang":{"type":"string"},"name":{"type":"string"},"previous_url":{"type":"string"},"refsource":{"type":"string"},"source":{"type":"string"},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.NVD20TemporalAssociatedBaseMetric":{"description":"api.NVD20TemporalAssociatedBaseMetric","properties":{"baseScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20TemporalCVSSV2":{"description":"api.NVD20TemporalCVSSV2","properties":{"associatedBaseMetricV2":{"$ref":"#/components/schemas/api.NVD20TemporalAssociatedBaseMetric"},"exploitability":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20TemporalCVSSV3":{"description":"api.NVD20TemporalCVSSV3","properties":{"associatedBaseMetricV3":{"$ref":"#/components/schemas/api.NVD20TemporalAssociatedBaseMetric"},"exploitCodeMaturity":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.NVD20ThreatAssociatedBaseMetric":{"description":"api.NVD20ThreatAssociatedBaseMetric","properties":{"baseScore":{"type":"number"},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20ThreatCVSSV40":{"description":"api.NVD20ThreatCVSSV40","properties":{"associatedBaseMetricV40":{"$ref":"#/components/schemas/api.NVD20ThreatAssociatedBaseMetric"},"baseThreatScore":{"type":"number"},"baseThreatSeverity":{"type":"string"},"exploitMaturity":{"type":"string"}},"type":"object"},"api.NVD20VendorComment":{"description":"api.NVD20VendorComment","properties":{"comment":{"type":"string"},"lastModified":{"type":"string"},"organization":{"type":"string"}},"type":"object"},"api.NVD20Weakness":{"description":"api.NVD20Weakness","properties":{"description":{"items":{"$ref":"#/components/schemas/api.NVD20Description"},"type":"array","uniqueItems":false},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.NVD20WeaknessDescExtended":{"description":"api.NVD20WeaknessDescExtended","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.NVD20WeaknessExtended":{"description":"api.NVD20WeaknessExtended","properties":{"description":{"items":{"$ref":"#/components/schemas/api.NVD20WeaknessDescExtended"},"type":"array","uniqueItems":false},"source":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.Nodes":{"description":"api.Nodes","properties":{"children":{"items":{"$ref":"#/components/schemas/api.Nodes"},"type":"array","uniqueItems":false},"cpe_match":{"items":{"$ref":"#/components/schemas/api.CPEMatch"},"type":"array","uniqueItems":false},"operator":{"type":"string"}},"type":"object"},"api.NormalizedExploitV3Entry":{"description":"api.NormalizedExploitV3Entry","properties":{"clone_ssh_url":{"type":"string"},"clone_ssh_url_cached":{"type":"string"},"date_added":{"type":"string"},"exploit_availability":{"type":"string"},"exploit_maturity":{"type":"string"},"exploit_type":{"type":"string"},"name":{"type":"string"},"reference_url":{"type":"string"},"refsource":{"type":"string"},"repo_id":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.NormalizedReportV3Entry":{"description":"api.NormalizedReportV3Entry","properties":{"date_added":{"type":"string"},"name":{"type":"string"},"refsource":{"type":"string"},"url":{"type":"string"}},"type":"object"},"api.OSSPackage":{"description":"api.OSSPackage","properties":{"artifacts":{"$ref":"#/components/schemas/api.OSSPackageArtifacts"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"licenses":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"published_date":{"type":"string"},"purl":{"items":{"type":"string"},"type":"array","uniqueItems":false},"research_attributes":{"$ref":"#/components/schemas/api.OSSPackageResearchAttributes"},"version":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"api.OSSPackageArtifacts":{"description":"api.OSSPackageArtifacts","properties":{"binary":{"items":{"$ref":"#/components/schemas/api.OSSPackageDownloadInfo"},"type":"array","uniqueItems":false},"source":{"items":{"$ref":"#/components/schemas/api.OSSPackageDownloadInfo"},"type":"array","uniqueItems":false}},"type":"object"},"api.OSSPackageDownloadInfo":{"description":"api.OSSPackageDownloadInfo","properties":{"hashes":{"items":{"$ref":"#/components/schemas/api.OSSPackageHashInfo"},"type":"array","uniqueItems":false},"reference":{"type":"string"},"type":{"description":"See OSSPackageDownloadInfoType* consts","type":"string"},"url":{"type":"string"}},"type":"object"},"api.OSSPackageHashInfo":{"description":"api.OSSPackageHashInfo","properties":{"algorithm":{"description":"See OSSPackageHashInfoAlgo* consts","type":"string"},"type":{"description":"See OSSPackageHashInfoType* consts","type":"string"},"value":{"description":"hex string digest or link to hash","type":"string"}},"type":"object"},"api.OSSPackageResearchAttributes":{"description":"api.OSSPackageResearchAttributes","properties":{"abandoned":{"type":"boolean"},"eol":{"type":"boolean"},"is_malicious":{"type":"boolean"},"malicious_source":{"type":"string"},"repo_hijackable":{"type":"boolean"},"squatted_package":{"type":"string"}},"type":"object"},"api.OSSPackageVulnerability":{"description":"api.OSSPackageVulnerability","properties":{"detection":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"api.Package":{"description":"api.Package","properties":{"filename":{"type":"string"},"name":{"description":"sort","type":"string"},"release":{"type":"string"},"src":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.ProblemType":{"description":"api.ProblemType","properties":{"problemtype_data":{"items":{"$ref":"#/components/schemas/api.ProblemTypeData"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeData":{"description":"api.ProblemTypeData","properties":{"description":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDescription"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeDataExtended":{"description":"api.ProblemTypeDataExtended","properties":{"description":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDescriptionExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.ProblemTypeDescription":{"description":"api.ProblemTypeDescription","properties":{"lang":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.ProblemTypeDescriptionExtended":{"description":"api.ProblemTypeDescriptionExtended","properties":{"lang":{"type":"string"},"name":{"type":"string"},"url":{"type":"string"},"value":{"type":"string"}},"type":"object"},"api.ProblemTypeExtended":{"description":"api.ProblemTypeExtended","properties":{"problemtype_data":{"items":{"$ref":"#/components/schemas/api.ProblemTypeDataExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.Reference":{"description":"api.Reference","properties":{"href":{"description":"sort","type":"string"},"id":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"}},"type":"object"},"api.ReferenceData":{"description":"api.ReferenceData","properties":{"name":{"type":"string"},"refsource":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.ReferenceDataExtended":{"description":"api.ReferenceDataExtended","properties":{"date_added":{"type":"string"},"external_id":{"type":"string"},"lang":{"type":"string"},"name":{"type":"string"},"previous_url":{"type":"string"},"refsource":{"type":"string"},"status":{"type":"string"},"tags":{"items":{"type":"string"},"type":"array","uniqueItems":false},"url":{"type":"string"}},"type":"object"},"api.References":{"description":"api.References","properties":{"reference_data":{"items":{"$ref":"#/components/schemas/api.ReferenceData"},"type":"array","uniqueItems":false}},"type":"object"},"api.ReferencesExtended":{"description":"api.ReferencesExtended","properties":{"reference_data":{"description":"ExploitData []NormalizedExploit `json:\"exploit_data,omitempty\"`\n\t\tThreatActorData []ThreatActorExtended `json:\"threat_actor_data,omitempty\"`\n\t\tRansomwareData []RansomwareReferenceData `json:\"ransomware_data,omitempty\"`\n\t\tAdvisoryData []AdvisoryExtended `json:\"advisory_data,omitempty\"`\n\t\tIdentifierData []IdentifierExtended `json:\"identifier_data,omitempty\"`","items":{"$ref":"#/components/schemas/api.ReferenceDataExtended"},"type":"array","uniqueItems":false}},"type":"object"},"api.RelatedAttackPattern":{"description":"api.RelatedAttackPattern","properties":{"capec_id":{"type":"string"},"capec_name":{"type":"string"},"capec_url":{"type":"string"},"lang":{"type":"string"}},"type":"object"},"api.SSVC":{"description":"api.SSVC","properties":{"automatable":{"type":"string"},"exploitation":{"type":"string"},"source":{"type":"string"},"technicalImpact":{"type":"string"}},"type":"object"},"api.TargetIntel":{"description":"api.TargetIntel","properties":{"as_domain":{"type":"string"},"as_name":{"type":"string"},"asn":{"type":"string"},"classifications":{"items":{"type":"string"},"type":"array","uniqueItems":false},"contains_cve":{"type":"boolean"},"country":{"type":"string"},"country_code":{"type":"string"},"cpe":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"cve_confirmed":{"items":{"$ref":"#/components/schemas/api.CVEConfirmed"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"fingerprints":{"items":{"$ref":"#/components/schemas/api.Fingerprint"},"type":"array","uniqueItems":false},"hostname":{"type":"string"},"ip":{"type":"string"},"metadata":{"items":{"type":"integer"},"type":"array","uniqueItems":false},"port":{"type":"integer"},"product":{"items":{"type":"string"},"type":"array","uniqueItems":false},"protocol":{"type":"string"},"timestamp":{"type":"string"},"transport":{"type":"string"},"vendor":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"api.TemporalCVSSV2":{"description":"api.TemporalCVSSV2","properties":{"exploitability":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.TemporalCVSSV3":{"description":"api.TemporalCVSSV3","properties":{"exploitCodeMaturity":{"type":"string"},"remediationLevel":{"type":"string"},"reportConfidence":{"type":"string"},"temporalScore":{"type":"number"},"vectorString":{"type":"string"},"version":{"type":"string"}},"type":"object"},"api.TemporalMetricV2":{"description":"api.TemporalMetricV2","properties":{"cvssV2":{"$ref":"#/components/schemas/api.TemporalCVSSV2"}},"type":"object"},"api.TemporalMetricV3":{"description":"api.TemporalMetricV3","properties":{"cvssV3":{"$ref":"#/components/schemas/api.TemporalCVSSV3"}},"type":"object"},"api.Update":{"description":"api.Update","properties":{"cve":{"items":{"type":"string"},"type":"array","uniqueItems":false},"date_added":{"type":"string"},"description":{"type":"string"},"id":{"description":"sort // key","type":"string"},"issued":{"$ref":"#/components/schemas/api.DateTime"},"os_arch":{"type":"string"},"os_version":{"type":"string"},"packages":{"items":{"$ref":"#/components/schemas/api.Package"},"type":"array","uniqueItems":false},"references":{"items":{"$ref":"#/components/schemas/api.Reference"},"type":"array","uniqueItems":false},"severity":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"updated":{"$ref":"#/components/schemas/api.DateTime"}},"type":"object"},"api.VulnCheckCanary":{"description":"api.VulnCheckCanary","properties":{"c2_frequency_3d":{"items":{"$ref":"#/components/schemas/api.C2Frequency"},"type":"array","uniqueItems":false},"c2_location":{"items":{"type":"string"},"type":"array","uniqueItems":false},"category":{"type":"string"},"client_fingerprints":{"$ref":"#/components/schemas/api.ClientFingerprints"},"cve":{"type":"string"},"dst_country":{"type":"string"},"http":{"$ref":"#/components/schemas/api.HTTPDetails"},"payload":{"type":"string"},"payload_tlsh":{"type":"string"},"payload_tooling":{"items":{"type":"string"},"type":"array","uniqueItems":false},"severity":{"type":"integer"},"signature":{"type":"string"},"signature_id":{"type":"integer"},"src_as_domain":{"type":"string"},"src_as_name":{"type":"string"},"src_asn":{"type":"string"},"src_country":{"type":"string"},"src_ip":{"type":"string"},"src_ip_freq_3d":{"type":"integer"},"src_ip_freq_3d_canary":{"type":"integer"},"src_ip_type_findings":{"items":{"type":"string"},"type":"array","uniqueItems":false},"src_port":{"type":"integer"},"tech_vertical":{"items":{"type":"string"},"type":"array","uniqueItems":false},"timestamp":{"type":"string"}},"type":"object"},"api.VulnerabilityAlias":{"description":"api.VulnerabilityAlias","properties":{"alias":{"type":"string"},"cve":{"type":"string"},"reference_url":{"type":"string"}},"type":"object"},"backup.BackupResponse":{"description":"backup.BackupResponse","properties":{"available":{"type":"boolean"},"feed":{"type":"string"},"sha256":{"type":"string"},"url_ap-southeast-2":{"type":"string"},"url_eu-west-2":{"type":"string"},"url_expires":{"type":"string"},"url_mrap":{"type":"string"},"url_ttl_minutes":{"type":"integer"},"url_us-east-1":{"type":"string"}},"type":"object"},"backup.FeedItem":{"description":"backup.FeedItem","properties":{"available":{"type":"boolean"},"backup_written_at":{"type":"string"},"href":{"type":"string"},"name":{"type":"string"}},"type":"object"},"backup.ListBackupsResponse":{"description":"backup.ListBackupsResponse","properties":{"data":{"items":{"$ref":"#/components/schemas/backup.FeedItem"},"type":"array","uniqueItems":false}},"type":"object"},"index.CveSearchHit":{"description":"index.CveSearchHit","properties":{"id":{"description":"ID is the unique document identifier within the index.","type":"string"},"index":{"description":"Index is the name of the index where this document was found.","type":"string"},"score":{"description":"Score is the relevance score from OpenSearch (higher = more relevant).","type":"number"},"source":{"description":"Source is the full document content. Structure varies by index.","type":"object"}},"type":"object"},"index.CveSearchMeta":{"description":"Meta is the metadata related to the endpoint response","properties":{"current_count":{"description":"CurrentCount is the number of documents returned in this response.","type":"integer"},"cve":{"description":"CVE is the CVE identifier that was searched for.","type":"string"},"indices_with_hits":{"description":"IndicesWithHits is the number of indices that contained at least one match.","type":"integer"},"limit":{"description":"Limit is the maximum number of results requested per page.","type":"integer"},"next_cursor":{"description":"NextCursor is the cursor for fetching the next page of results.\nEmpty if there are no more results (current_count \u003c limit).","type":"string"},"page":{"description":"Page is the current page number (only set in page-based pagination mode).","type":"integer"},"queried_index_count":{"description":"QueriedIndexCount is the number of indices that were searched.","type":"integer"},"timestamp":{"description":"Timestamp is the UTC time when the search was executed.","type":"string"},"top_index_counts":{"description":"TopIndexCounts contains the top indices by document count (up to 10).","items":{"$ref":"#/components/schemas/index.IndexCountEntry"},"type":"array","uniqueItems":false},"total_count":{"description":"TotalCount is the total number of matching documents across all queried indices.","type":"integer"},"total_pages":{"description":"TotalPages is the total number of pages (only set in page-based pagination mode).","type":"integer"}},"type":"object"},"index.IndexCountEntry":{"description":"index.IndexCountEntry","properties":{"doc_count":{"description":"DocCount is the number of matching documents in this index.","type":"integer"},"index":{"description":"Index is the name of the index.","type":"string"}},"type":"object"},"models.Entitlements":{"description":"models.Entitlements","properties":{"entitlements":{"additionalProperties":{"items":{"type":"string"},"type":"array"},"description":"Entitlements provides a map of roles to a list of entitlements","type":"object"}},"type":"object"},"paginate.Match":{"description":"paginate.Match","properties":{"field":{"description":"Field is the name of the field being filtered on.","type":"string"},"value":{"description":"Value is the filter value being applied to the field.","type":"string"}},"type":"object"},"paginate.Pagination":{"description":"Meta is the metadata related to the endpoint response","properties":{"cursor":{"description":"Cursor is an opaque string representing the current page position for cursor-based pagination.\nContains encoded information about sort values and position markers.\nUse this value with the 'cursor' query parameter to resume pagination from this point.","type":"string"},"first_item":{"description":"FirstItem is the 1-indexed position of the first item on the current page.\nExample: Page 1 with limit 100 → FirstItem = 1\n Page 2 with limit 100 → FirstItem = 101","type":"integer"},"index":{"description":"Index name being queried, corresponding to the VulnCheck data feed.\nExamples: \"exploits\", \"vulncheck-nvd2\", \"ipintel-3d\", \"malicious-vscode-exts\"","type":"string"},"last_item":{"description":"LastItem is the 1-indexed position of the last item on the current page.\nAccounts for partial pages. Example: Page with 50 items → LastItem = FirstItem + 49\nOn the final page, LastItem equals TotalRows.","type":"integer"},"limit":{"description":"Limit is the maximum number of items returned in this response.\nRange: 1-100 for standard indices, 1-10 for large indices.\nDefault: 100 (or 10 for indices marked as \"large\" in metadata)","type":"integer"},"matches":{"description":"Matches shows the active filter values applied to the current query.\nEach match includes the field name and the value being filtered on.\nHelps users understand which filters are currently active.","items":{"$ref":"#/components/schemas/paginate.Match"},"type":"array","uniqueItems":false},"max_pages":{"description":"MaxPages is the maximum number of pages allowed for offset-based pagination.\nPerformance limit to prevent expensive deep pagination. Default: 6 pages.\nWhen TotalPages \u003e MaxPages, cursor-based pagination should be used instead.","type":"integer"},"next_cursor":{"description":"NextCursor is an opaque string for fetching the next page in cursor-based pagination.\nWhen empty or null, indicates no more pages are available.\nMore efficient than offset pagination for large datasets and real-time data.","type":"string"},"opensearch_query":{"description":"OSQuery contains the raw OpenSearch query JSON used internally.\nOnly included when show_query=true parameter is set.\nUseful for debugging complex queries and understanding performance.","type":"object"},"order":{"description":"Order specifies the sort direction: \"asc\" (ascending) or \"desc\" (descending).\nDefault: \"desc\" for most time-based indices to show newest items first.","type":"string"},"page":{"description":"Page is the current page number for offset-based pagination (1-indexed).\nFirst page = 1, second page = 2, etc. Used with Limit to calculate database offset.\nFor cursor-based pagination, this field may be omitted or estimated.","type":"integer"},"pages":{"description":"Pages contains page numbers to display in pagination UI (e.g., [1, 2, \"...\", 45]).\nOnly populated when ShowPages=true. Includes ellipsis (\"...\") for gaps.\nLimited by MaxPages to prevent overwhelming UI with too many page links.","items":{"type":"string"},"type":"array","uniqueItems":false},"parameters":{"description":"Params describes available query parameters for this index.\nEach parameter includes name, format constraints, and filtering capabilities.\nUsed for building dynamic query UIs and input validation.","items":{"$ref":"#/components/schemas/paginate.Param"},"type":"array","uniqueItems":false},"show_pages":{"description":"ShowPages controls whether the Pages array should be calculated and included.\nSet to true for UI pagination controls, false for API-only usage to save processing.","type":"boolean"},"show_query":{"description":"ShowQuery indicates whether the raw OpenSearch query should be included.\nWhen true, OSQuery field will be populated with the internal query structure.","type":"boolean"},"sort":{"description":"Sort field used for ordering results. Available fields vary by index.\nCommon values: \"_timestamp\", \"date_added\", \"_id\", \"lastSeen\"\nAffects cursor generation and ensures pagination consistency.","type":"string"},"timestamp":{"description":"Timestamp when the query was executed in UTC (ISO 8601 format).\nUsed for debugging, cache management, and determining data freshness.\nExample: \"2024-02-23T20:35:43.732591251Z\"","type":"string"},"total_documents":{"description":"TotalRows is the total number of documents matching the query across all pages.\nUsed for calculating total_pages and building pagination UI elements.\nNote: May be capped for performance on very large result sets.","type":"integer"},"total_pages":{"description":"TotalPages is the total number of pages based on TotalRows and Limit.\nCalculated as: ceil(TotalRows / Limit). Used for pagination UI and validation.\nExample: 1000 items with limit 100 = 10 total pages.","type":"integer"},"warnings":{"description":"Warnings contains any non-fatal issues encountered during query processing.\nExamples: deprecated parameters, performance concerns, or data quality notes.","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"paginate.Param":{"description":"paginate.Param","properties":{"filtering":{"description":"Filtering indicates the type of filtering this parameter supports.\nExamples: \"exact\", \"range\", \"wildcard\", \"boolean\"","type":"string"},"format":{"description":"Format describes the expected parameter format or pattern.\nExamples: \"CVE-YYYY-N{4-7}\", \"YYYY-MM-DD\", \"numeric\"","type":"string"},"name":{"description":"Name is the query parameter name (e.g., \"cve\", \"date\", \"limit\").","type":"string"}},"type":"object"},"params.IndexBackup":{"description":"params.IndexBackup","properties":{"date_added":{"type":"string"},"filename":{"type":"string"},"sha256":{"type":"string"},"url":{"type":"string"},"url_ap-southeast-2":{"type":"string"},"url_eu-west-2":{"type":"string"},"url_expires":{"type":"string"},"url_il-central-1":{"type":"string"},"url_me-central-1":{"type":"string"},"url_mrap":{"type":"string"},"url_ttl_minutes":{"type":"integer"},"url_us-east-1":{"type":"string"},"url_us-west-2":{"type":"string"}},"type":"object"},"params.IndexBackupList":{"description":"params.IndexBackupList","properties":{"description":{"type":"string"},"href":{"description":"Href API endpoint URI to detailed backup information","type":"string"},"name":{"type":"string"}},"type":"object"},"params.IndexList":{"description":"params.IndexList","properties":{"description":{"type":"string"},"href":{"description":"Href API endpoint URI to detailed index information","type":"string"},"name":{"type":"string"}},"type":"object"},"purl.BatchVulnFinding":{"description":"purl.BatchVulnFinding","properties":{"cves":{"description":"list of associated CVE 's","items":{"type":"string"},"type":"array","uniqueItems":false},"purl":{"description":"the purl, ex. hex/coherence@0.1.2","type":"string"},"purl_struct":{"$ref":"#/components/schemas/purl.PackageURLJSON"},"research_attributes":{"$ref":"#/components/schemas/api.OSSPackageResearchAttributes"},"vulnerabilities":{"description":"list of associated vulnerabilities","items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"purl.PackageURLJSON":{"description":"meta-data about the purl","properties":{"name":{"type":"string"},"namespace":{"type":"string"},"qualifiers":{"items":{"$ref":"#/components/schemas/purl.QualifierJSON"},"type":"array","uniqueItems":false},"subpath":{"type":"string"},"type":{"type":"string"},"version":{"type":"string"}},"type":"object"},"purl.QualifierJSON":{"description":"purl.QualifierJSON","properties":{"key":{"type":"string"},"value":{"type":"string"}},"type":"object"},"purls.Artifact":{"description":"purls.Artifact","type":"object"},"purls.PurlResponse":{"description":"purls.PurlResponse","properties":{"artifacts":{"$ref":"#/components/schemas/purls.Artifact"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false},"licenses":{"items":{"type":"string"},"type":"array","uniqueItems":false},"name":{"type":"string"},"published_date":{"type":"string"},"purl":{"items":{"type":"string"},"type":"array","uniqueItems":false},"version":{"type":"string"},"vulnerabilities":{"items":{"$ref":"#/components/schemas/purls.Vulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"purls.Vulnerability":{"description":"purls.Vulnerability","properties":{"arch":{"type":"string"},"detection":{"type":"string"},"fixed_version":{"type":"string"}},"type":"object"},"render.Response-array_params_IndexBackupList":{"description":"render.Response-array_params_IndexBackupList","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/params.IndexBackupList"},"type":"array","uniqueItems":false}},"type":"object"},"render.Response-array_params_IndexList":{"description":"render.Response-array_params_IndexList","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/params.IndexList"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.A10"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ABBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AIX"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AMD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AMI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ASRG"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AVEVAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AVIDMLAdvs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AWS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Abbott"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Absolute"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Acronis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AdobeAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Advantech"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Advisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AdvisoryRecord"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AlephResearch"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Alibaba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AlmaLinuxUpdate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AlpineLinuxSecDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AmazonCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AnchoreNVDOverride"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AndroidAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AnthropicCVD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AnthropicCVD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AnthropicCVD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheActiveMQ"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheArchiva"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheArrow"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheCamel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheCommons"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheCouchDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheFlink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheGuacamole"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheHTTP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheHadoop"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheJSPWiki"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheKafka"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheLoggingServices"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheNiFi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheOFBiz"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheOpenMeetings"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheOpenOffice"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApachePulsar"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheShiro"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheSpark"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheStruts"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheSubversion"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheSuperset"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheTomcat"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ApacheZooKeeper"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AppCheck"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Appgate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AppleAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ArchIssue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Arista"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Aruba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AssetNote"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Asterisk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Astra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Asus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AtlassianAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AtlassianVuln"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Atredis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Audiocodes"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AusCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_AustinHackersAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_AustinHackersAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.AustinHackersAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Autodesk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Avaya"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Avigilon"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Axis"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Azul"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BBraunAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BDUAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Bandr"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BaxterAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BeckhoffAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BeckmanCoulter"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BectonDickinsonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BeldenAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BeyondTrust"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Binarly"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BitDefender"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BlackBerry"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BoschAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.BostonScientificAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Botnet"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CACyberCentreAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CBLMariner"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CERTEUAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CESA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CISAAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CNNVDEntryJSON"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CNVDBulletin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CNVDFlaw"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CVEIdentityMappings-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CVEIdentityMappings-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CVEIdentityMappings"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CanvasExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CarestreamAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Carrier"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertBE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertFRAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertIN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertIRSecurityAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertSE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CertUA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ChainGuard"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CheckPoint"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Chrome"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Ciena"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CirclAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CirclAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CirclAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CisaCsafAdv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CiscoAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CiscoCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CiscoKnownGoodValue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CitrixAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ClarotyVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CloudAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CloudBees"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CloudVulnDBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CodesysAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CommVault"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CompassSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ContainerOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CoreImpactExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Crestron"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.CrowdSec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Curl"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Cvrf"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DFNCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DNN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Dahua"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Danfoss"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Dassault"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DebianSecurityAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Dell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DeltaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DistroPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Django"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DotCMS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DraegerAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DraegerAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DraegerAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.DragosAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Draytek"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Drupal"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EOLAlibaba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EOLMicrosoft"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EOLReleaseData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EUVD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EatonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Elastic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Elspec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EmergingThreatsSnort"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EmersonAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.EndOfLife"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Endress"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ExodusIntel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ExploitDBExploitv2"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.F5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FSecure"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Fanuc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Fastly"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Festo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FileCloud"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FileZilla"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FlattSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ForgeRock"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FortinetAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.FortinetIPS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Foxit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Fresenius"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GCP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GEGas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GEHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GHAdvisoryJSONLean"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GHSA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GMOCyberSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Gallagher"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Gen"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GenericEOL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Genetec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Gigabyte"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GitHubExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GitLabExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GiteeExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GitlabAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Glibc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GnuTLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GoVulnJSON"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Grafana"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.GreyNoiseDetection"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HCL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HIKVision"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HKCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HMS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HPE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Hacktivity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HarmonyOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HashiCorp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HaskellSADBAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HillromAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Hitachi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HitachiEnergy"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Honeywell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Huawei"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HuaweiEulerOS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.HuaweiIPS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IAVA"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IBM"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IOCBotnetAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IOCBotnetAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IOCBotnetAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IOCRansomwareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IOCRansomwareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IOCRansomwareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IOCThreatActorAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IOCThreatActorAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IOCThreatActorAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ITWExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Idemia"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Igel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IncibeAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Intel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IpIntelRecord"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IsraeliAlert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IsraeliVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Istio"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Ivanti"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.IvantiRSS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JFrog"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JNJAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JVN"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JVNAdvisoryItem"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Jenkins"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JetBrains"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.JohnsonControls"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Juniper"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.K8S"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.KEVCatalogVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.KRCertAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.KasperskyICSCERTAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.KoreLogic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Kunbus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.LG"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Lantronix"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Lenovo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.LexmarkAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.LibreOffice"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Linux"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.LolAdvs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MACert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MFiles"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MaliciousPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MaliciousVSCodeExts"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ManageEngineAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MbedTLS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.McAfee"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mediatek"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MedtronicAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mendix"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MetaAdvisories"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MetaData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MetasploitExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MicrosoftCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MicrosoftCVRF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MicrosoftDriverBlockList"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MicrosoftKb"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mikrotik"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mindray"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MispValue"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Mitel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MitreCVEListV5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MitsubishiElectricAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MogwaiLabsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MogwaiLabsAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MogwaiLabsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MokshaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MokshaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MokshaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MongoDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MoxaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.MozillaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NCSC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NCSCCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NEC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NHS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NTP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NVD20Source"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NVDCPEDictionary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NZAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Naver"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nessus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NetApp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Netatalk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Netgate"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Netgear"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Netskope"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nexpose"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NginxAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NodeJS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NodeSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nokia"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.NotePadPlusPlus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nozomi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Nuclei"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OPCFoundationAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OPCFoundationAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OPCFoundationAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OSV"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OTRS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OctopusDeploy"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Okta"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Omron"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OneE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenBSD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenCVDB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenJDK"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenSSH"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenSSLSecAdv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OpenStack"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Opengear"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OracleCPU"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OracleCPUCSAF"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.OwnCloud"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PHPMyAdmin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PKCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PTC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PacketstormExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Palantir"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PaloAltoAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Panasonic"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PaperCut"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Pega"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PhilipsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PhoenixContactAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PostgresSQL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PowerDNS"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Progress"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Proofpoint"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PureStorage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.PyPAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.QNAPAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.QQID"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.QSB"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Qualcomm"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Qualys"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.QualysQID"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RansomwareExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RedLion"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RedhatCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Renesas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Revive"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RhelCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Roche"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Rockwell"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RockyErrata"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Rsync"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Ruckus"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.RustsecAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SAAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SAP"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SECConsult"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SSDAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Safran"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SaintExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SalesForce"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Samba"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sandisk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SansDshield"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SchneiderElectricAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Schutzwerk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SecurityBulletin"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SecurityLab"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SeebugExploit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SentinelOne"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ServiceNow"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SevenZip"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ShadowServerExploitedVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Shielder"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sick"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SiemensAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SierraWireless"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SigmaRule"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SingCert"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sitecore"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Slackware"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SolarWindsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Solr"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sonatype"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SonicWallAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SpacelabsHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Splunk"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Spring"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Stormshield"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.StrykerAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Sudo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SuseSecurity"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SwisslogHealthcareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Symfony"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Synacktiv"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.SyncroSoft"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Synology"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Syss"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TI"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TPLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TWCertAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Tailscale"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TalosAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TeamViewer"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TenableResearchAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Tencent"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Thales"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TheMissingLink"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ThermoFisher"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ThreatActorWithExternalObjects"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Tibco"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TraneTechnology"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.TrendMicro"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Trustwave"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.USD"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.USOMAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Ubiquiti"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.UbuntuCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Unify"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Unisoc"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Update"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VCCPEDictionary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VCVulnerableCPEs"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VDEAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VLC"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VMWareAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VYAIREAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VanDyke"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VapidLabsAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Veeam"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Veritas"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Virtuozzo"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VoidSec"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnCheck"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnCheckCVEListV5"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnCheckConfig"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnCheckKEV"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.VulnerableDebianPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Vulnrichment"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WRT"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WatchGuard"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WhatsApp"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Wibu"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Wireshark"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WithSecure"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.WolfSSL"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Wolfi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Wordfence"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Xen"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Xerox"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Xiaomi"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Xylem"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Yamaha"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.YokogawaAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Yubico"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zebra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ZeroDayAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.ZeroScienceAdvisory"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zimbra"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zoom"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zscaler"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zuso"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/advisory.Zyxel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CWE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CWE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.CWE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.CveItems"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.CveItemsExtended"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.EPSSData"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.ExploitChain"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.ExploitV3Result"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.ExploitsChangelog"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.InitialAccess"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.MitreAttackToCVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.NVD20CPEMatch"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.NVD20CVE"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.NVD20CVEExtended"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.OSSPackage"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_TargetIntel-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_TargetIntel-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.TargetIntel"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_Update-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_Update-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.Update"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.VulnCheckCanary"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/api.VulnerabilityAlias"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_index_CveSearchHit-index_CveSearchMeta":{"description":"render.ResponseWithMetadata-array_index_CveSearchHit-index_CveSearchMeta","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/index.CveSearchMeta"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/index.CveSearchHit"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination":{"description":"render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/paginate.Pagination"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/purls.PurlResponse"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata":{"description":"render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.ResponseMetadata"},"data":{"description":"Data is the data returned by the endpoint","items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-search_Responses-search_ResponseMetadata":{"description":"render.ResponseWithMetadata-search_Responses-search_ResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/search.ResponseMetadata"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/search.ResponseDataOut"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.BackupResponseMetadata"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/params.IndexBackup"},"type":"array","uniqueItems":false}},"type":"object"},"render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.PurlResponseMetadata"},"data":{"$ref":"#/components/schemas/v3controllers.PurlResponseData"}},"type":"object"},"render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata":{"description":"render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata","properties":{"_benchmark":{"description":"Benchmark is the server-side processing time for the request in seconds.\nExample: 0.122322 = approximately 122 milliseconds","type":"number"},"_meta":{"$ref":"#/components/schemas/v3controllers.PurlsResponseMetadata"},"data":{"description":"Data is the data returned by the endpoint","items":{"$ref":"#/components/schemas/purl.BatchVulnFinding"},"type":"array","uniqueItems":false}},"type":"object"},"search.ErrorResponse":{"description":"search.ErrorResponse","properties":{"error":{"type":"boolean"},"errors":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"search.ResponseDataOut":{"description":"search.ResponseDataOut","properties":{"cpe":{"type":"string"},"cpe_struct":{"$ref":"#/components/schemas/api.CPE"},"cves":{"items":{"type":"string"},"type":"array","uniqueItems":false}},"type":"object"},"search.ResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"timestamp":{"type":"string"},"total_documents":{"type":"integer"}},"type":"object"},"search.V4AdvisoryMeta":{"description":"search.V4AdvisoryMeta","properties":{"cursor":{"type":"string"},"filtered":{"type":"integer"},"limit":{"type":"integer"},"next_cursor":{"type":"string"},"page":{"type":"integer"},"pages":{"type":"integer"},"total":{"type":"integer"}},"type":"object"},"search.V4AdvisoryReturnValue":{"description":"search.V4AdvisoryReturnValue","properties":{"_meta":{"$ref":"#/components/schemas/search.V4AdvisoryMeta"},"data":{"items":{"$ref":"#/components/schemas/advisory.MitreCVEListV5Ref"},"type":"array","uniqueItems":false}},"type":"object"},"search.V4FeedItem":{"description":"search.V4FeedItem","properties":{"description":{"type":"string"},"href":{"type":"string"},"name":{"type":"string"}},"type":"object"},"search.V4ListFeedReturnValue":{"description":"search.V4ListFeedReturnValue","properties":{"data":{"items":{"$ref":"#/components/schemas/search.V4FeedItem"},"type":"array","uniqueItems":false}},"type":"object"},"v3controllers.BackupResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"index":{"description":"Index name being queried, corresponding to the VulnCheck data feed.","type":"string"},"timestamp":{"description":"Timestamp when the query was executed in UTC (ISO 8601 format).","type":"string"}},"type":"object"},"v3controllers.PurlResponseData":{"description":"Data is the data returned by the endpoint","properties":{"cves":{"description":"list of associated CVE 's","items":{"type":"string"},"type":"array","uniqueItems":false},"vulnerabilities":{"description":"list of associated vulnerabilities","items":{"$ref":"#/components/schemas/api.OSSPackageVulnerability"},"type":"array","uniqueItems":false}},"type":"object"},"v3controllers.PurlResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"purl_struct":{"$ref":"#/components/schemas/purl.PackageURLJSON"},"timestamp":{"description":"time of the transaction","type":"string"},"total_documents":{"description":"number of results found","type":"integer"}},"type":"object"},"v3controllers.PurlsResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"timestamp":{"description":"time of the transaction","type":"string"},"total_documents":{"description":"number of results found","type":"integer"}},"type":"object"},"v3controllers.ResponseMetadata":{"description":"Meta is the metadata related to the endpoint response","properties":{"cpe":{"type":"string"},"cpe_struct":{"$ref":"#/components/schemas/api.CPE"},"timestamp":{"type":"string"},"total_documents":{"type":"integer"}},"type":"object"}},"securitySchemes":{"Bearer":{"in":"header","name":"Authorization","type":"apiKey"}}},"externalDocs":{"description":"","url":""},"info":{"contact":{"email":"support@vulncheck.com","name":"VulnCheck API Support"},"description":"VulnCheck API (v3 + v4)","termsOfService":"https://vulncheck.com/terms","title":"VulnCheck API","version":"latest"},"openapi":"3.1.0","paths":{"/v3/backup":{"get":{"description":"Return a list of indexes with backup and endpoint links that the user has access to","operationId":"backup_get","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.Response-array_params_IndexBackupList"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"oneOf":[{"type":"string"},{"type":"string"}]}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return a list of indexes with backup and endpoint links","tags":["endpoints"]}},"/v3/backup/{index}":{"get":{"description":"Retrieve a list of VulnCheck backups by index","operationId":"backup_index_get","parameters":[{"description":"Name of an exploit, vulnerability, or advisory index","in":"path","name":"index","required":true,"schema":{"enum":["7zip","a10","abb","abbott","absolute","acronis","adobe","advantech","advisories","aix","aleph-research","alibaba-advs","alibabacloud-eol","alma","alpine","alpine-purls","amazon","amazon-cve","amd","ami","anchore-nvd-override","android","anthropic-cvd","apache-activemq","apache-archiva","apache-arrow","apache-camel","apache-commons","apache-couchdb","apache-flink","apache-guacamole","apache-hadoop","apache-http","apache-jspwiki","apache-kafka","apache-loggingservices","apache-nifi","apache-ofbiz","apache-openmeetings","apache-openoffice","apache-pulsar","apache-shiro","apache-spark","apache-struts","apache-subversion","apache-superset","apache-tomcat","apache-zookeeper","appcheck","appgate","apple","arch","arista","aruba","asrg","assetnote","asterisk","astra","asus","atlassian","atlassian-vulns","atredis","audiocodes","auscert","austin-hackers","autodesk","avaya","aveva","avidml-advs","avigilon","aws","aws-rds","axis","azul","bandr","baxter","bbraun","bd","bdu","beckhoff","beckman-coulter","belden","beyond-trust","binarly","bitdefender","blackberry","bls","bosch","boston-scientific","botnets","ca-cyber-centre","canvas","carestream","cargo","carrier","cbl-mariner","centos","cert-be","cert-in","cert-ir-security-alerts","cert-se","cert-ua","certeu","certfr","chainguard","checkpoint","chrome","ciena","circl","cisa-alerts","cisa-csaf","cisa-kev","cisco","cisco-csaf","cisco-known-good-values","cisco-talos","citrix","claroty","cloudbees","cloudvulndb","cnnvd","cnvd-bulletins","cnvd-flaws","cocoapods","codesys","commvault","compass-security","composer","conan","coreimpact","cpe-vulnerable","crestron","crowdsec","curl","cves_identity_mappings","cwe","dahua","danfoss","dassault","debian","debian-dsa","debian-packages","debian-purls","dell","delta","dfn-cert","django","dlink","dnn","dotcms","draeger","dragos","draytek","drupal","eaton","elastic","elspec","emerging-threats-snort","emerson","endoflife","endress","eol","eol-alibaba","eol-microsoft","epss","euvd","exodus-intel","exploit-chains","exploitdb","exploits","exploits-changelog","f-secure","f5","fanuc","fastly","fedora","festo","filecloud","filezilla","flatt-security","forgerock","fortinet","fortinet-ips","foxit","freebsd","fresenius","gallagher","gcp","ge-gas","ge-healthcare","gem","gen","genetec","ghsa","gigabyte","gitee-exploits","github-exploits","github-security-advisories","gitlab-advisories-community","gitlab-exploits","glibc","gmo-cybersecurity","gnutls","go-vulndb","golang","google-0day-itw","google-container-optimized-os","grafana","greynoise-metadata","hackage","hacktivity","harmonyos","hashicorp","haskell-sadb","hcl","hex","hikvision","hillrom","hitachi","hitachi-energy","hkcert","hms","honeywell","hp","hp-eol","hpe","hpe-eol","huawei-euleros","huawei-ips","huawei-psirt","iava","ibm","idemia","igel","il-alerts","il-vulnerabilities","incibe","initial-access","initial-access-git","intel","ioc-botnets","ioc-ransomware","ioc-threat-actors","ipintel-10d","ipintel-30d","ipintel-3d","ipintel-90d","istio","ivanti","ivanti-rss","jenkins","jetbrains","jfrog","jnj","johnson-controls","juniper","jvn","jvndb","kaspersky-ics-cert","korelogic","krcert-security-notices","krcert-vulnerabilities","kubernetes","kunbus","lantronix","lenovo","lexmark","lg","libre-office","linux","lol-advs","m-files","macert","malicious-packages","malicious-vscode-exts","manageengine","maven","mbed-tls","mcafee","mediatek","medtronic","mendix","meta-advisories","metasploit","microsoft-csaf","microsoft-cvrf","microsoft-driver-block-list","microsoft-eol","microsoft-kb","mikrotik","mindray","misp-threat-actors","mitel","mitre-attack-cve","mitre-cvelist-v5","mitsubishi-electric","mogwai-labs","moksha","mongodb","moxa","mozilla","naver","ncsc","ncsc-cves","nec","nessus","netapp","netatalk","netgate","netgear","netskope","nexpose","nginx","nhs","ni","nist-nvd","nist-nvd2","nist-nvd2-cpematch","nist-nvd2-sources","node-security","nodejs","nokia","notepadplusplus","nozomi","npm","ntp","nuclei","nuget","nvd-cpe-dictionary","nvidia","nz-advisories","octopus-deploy","okta","omron","omron-eol","one-e","opam","opc-foundation","open-cvdb","openbsd","opengear","openjdk","openssh","openssl-secadv","openstack","openwrt","oracle","oracle-cpu","oracle-cpu-csaf","osv","otrs","owncloud","packetstorm","palantir","palo-alto","panasonic","papercut","pega","philips","phoenix-contact","php-my-admin","pkcert","postgressql","powerdns","progress","proofpoint","ptc","pub","pure-storage","pypa-advisories","pypi","qnap","qqids","qualcomm","qualys","qualys-qids","qubes-qsb","ransomware","red-lion","redhat","redhat-cves","renesas","revive","roche","rockwell","rocky","rocky-errata","rocky-purls","rsync","ruckus","rustsec-advisories","sacert","safran","saint","salesforce","samba","sandisk","sans-dshield","sap","schneider-electric","schutzwerk","sec-consult","securitylab","seebug","sel","sentinelone","servicenow","shadowserver-exploited","shielder","sick","siemens","sierra-wireless","sigmahq-sigma-rules","singcert","sitecore","slackware","solarwinds","solr","sonatype","sonicwall","spacelabs-healthcare","splunk","spring","ssd","stormshield","stryker","sudo","suse","suse-security","swift","swisslog-healthcare","symfony","synacktiv","syncrosoft","synology","syss","tailscale","target-intel","teamviewer","tenable-research-advisories","tencent","thales","themissinglink","thermo-fisher","threat-actors","ti","tibco","tp-link","trane-technology","trendmicro","trustwave","twcert","ubiquiti","ubuntu","ubuntu-purls","unify","unisoc","usd","usom","vandyke","vapidlabs","vc-cpe-dictionary","vde","veeam","veritas","virtuozzo","vlc","vmware","voidsec","vulncheck","vulncheck-canaries","vulncheck-canaries-10d","vulncheck-canaries-30d","vulncheck-canaries-3d","vulncheck-canaries-90d","vulncheck-config","vulncheck-cvelist-v5","vulncheck-kev","vulncheck-nvd","vulncheck-nvd2","vulnerability-aliases","vulnrichment","vyaire","watchguard","whatsapp","wibu","wireshark","with-secure","wolfi","wolfssl","wordfence","xen","xerox","xiaomi","xylem","yamaha","yokogawa","yubico","zdi","zebra","zebra-eol","zeroscience","zimbra","zoom","zscaler","zuso","zyxel"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_BackupResponseData-v3controllers_BackupResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve a list of backups by index","tags":["endpoints"]}},"/v3/cpe":{"get":{"description":"Based on the specified CPE (Common Platform Enumeration) URI string, this endpoint will return a list of vulnerabilities that are related to the package. We support v2.2 and v2.3","operationId":"cpe_get","parameters":[{"description":"CPE designation to lookup","in":"query","name":"cpe","required":true,"schema":{"type":"string"}},{"description":"Filter by vulnerability status (true/false). Defaults to false if not provided.","in":"query","name":"isVulnerable","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_string-v3controllers_ResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return CVE 's associated with a specific NIST CPE","tags":["endpoints"]}},"/v3/entitlements":{"get":{"description":"Retrieve entitlements for the current user","operationId":"entitlements_get","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/models.Entitlements"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve user entitlements","tags":["endpoints"]}},"/v3/index":{"get":{"description":"Return a list of available indexes with endpoint links that the user has access to","operationId":"index_get","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.Response-array_params_IndexList"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"oneOf":[{"type":"string"},{"type":"string"}]}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return a list of available indexes with endpoint links","tags":["endpoints"]}},"/v3/index/7zip":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the 7zip index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 7Zip Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/7zip?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/7zip?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_7zip_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SevenZip-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"7zip\"","tags":["indices"]}},"/v3/index/a10":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the a10 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** A10 Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/a10?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/a10?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_a10_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_A10-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"a10\"","tags":["indices"]}},"/v3/index/abb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the abb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ABB Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/abb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/abb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_abb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ABBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"abb\"","tags":["indices"]}},"/v3/index/abbott":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the abbott index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Abbott Product Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/abbott?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/abbott?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_abbott_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Abbott-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"abbott\"","tags":["indices"]}},"/v3/index/absolute":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the absolute index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Absolute Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/absolute?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/absolute?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_absolute_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Absolute-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"absolute\"","tags":["indices"]}},"/v3/index/acronis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the acronis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Acronis Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/acronis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/acronis?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_acronis_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Acronis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"acronis\"","tags":["indices"]}},"/v3/index/adobe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the adobe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Adobe Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/adobe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/adobe?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_adobe_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AdobeAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"adobe\"","tags":["indices"]}},"/v3/index/advantech":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the advantech index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Advantech Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/advantech?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/advantech?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_advantech_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Advantech-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"advantech\"","tags":["indices"]}},"/v3/index/advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AdvisoryRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"advisories\"","tags":["indices"]}},"/v3/index/aix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AIX Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aix?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aix_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AIX-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aix\"","tags":["indices"]}},"/v3/index/aleph-research":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aleph-research index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Aleph Research Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aleph-research?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aleph-research?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aleph-research_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlephResearch-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aleph-research\"","tags":["indices"]}},"/v3/index/alibaba-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alibaba-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alibaba-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alibaba-advs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alibaba-advs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Alibaba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alibaba-advs\"","tags":["indices"]}},"/v3/index/alibabacloud-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alibabacloud-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba Cloud End of Life Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alibabacloud-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alibabacloud-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alibabacloud-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alibabacloud-eol\"","tags":["indices"]}},"/v3/index/alma":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alma index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alma Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alma?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alma?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alma_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlmaLinuxUpdate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alma\"","tags":["indices"]}},"/v3/index/alpine":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alpine index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alpine Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alpine?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alpine?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alpine_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AlpineLinuxSecDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alpine\"","tags":["indices"]}},"/v3/index/alpine-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the alpine-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alpine Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/alpine-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/alpine-purls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_alpine-purls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"alpine-purls\"","tags":["indices"]}},"/v3/index/amazon":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amazon index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Amazon Linux Security Center\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amazon?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amazon?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_amazon_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"amazon\"","tags":["indices"]}},"/v3/index/amazon-cve":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amazon-cve index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Amazon CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amazon-cve?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amazon-cve?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_amazon-cve_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AmazonCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"amazon-cve\"","tags":["indices"]}},"/v3/index/amd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the amd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AMD Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/amd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/amd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_amd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AMD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"amd\"","tags":["indices"]}},"/v3/index/ami":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ami index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AMI Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ami?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ami?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ami_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AMI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ami\"","tags":["indices"]}},"/v3/index/anchore-nvd-override":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the anchore-nvd-override index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Anchore NVD Data Overrides\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/anchore-nvd-override?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/anchore-nvd-override?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_anchore-nvd-override_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AnchoreNVDOverride-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"anchore-nvd-override\"","tags":["indices"]}},"/v3/index/android":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the android index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Android Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/android?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/android?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_android_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AndroidAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"android\"","tags":["indices"]}},"/v3/index/anthropic-cvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the anthropic-cvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Anthropic Red CVD\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/anthropic-cvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/anthropic-cvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_anthropic-cvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AnthropicCVD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"anthropic-cvd\"","tags":["indices"]}},"/v3/index/apache-activemq":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache ActiveMQ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-activemq?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-activemq_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheActiveMQ-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-activemq\"","tags":["indices"]}},"/v3/index/apache-archiva":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Archiva Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-archiva?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-archiva_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheArchiva-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-archiva\"","tags":["indices"]}},"/v3/index/apache-arrow":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Arrow Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-arrow?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-arrow_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheArrow-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-arrow\"","tags":["indices"]}},"/v3/index/apache-camel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Camel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-camel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-camel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCamel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-camel\"","tags":["indices"]}},"/v3/index/apache-commons":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Commons Known Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-commons?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-commons_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCommons-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-commons\"","tags":["indices"]}},"/v3/index/apache-couchdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache CouchDB Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-couchdb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-couchdb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheCouchDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-couchdb\"","tags":["indices"]}},"/v3/index/apache-flink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Flink Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-flink?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-flink_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheFlink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-flink\"","tags":["indices"]}},"/v3/index/apache-guacamole":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Guacamole Security Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-guacamole?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-guacamole_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheGuacamole-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-guacamole\"","tags":["indices"]}},"/v3/index/apache-hadoop":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Hadoop CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-hadoop?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-hadoop_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheHadoop-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-hadoop\"","tags":["indices"]}},"/v3/index/apache-http":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache HTTP Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-http?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-http_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheHTTP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-http\"","tags":["indices"]}},"/v3/index/apache-jspwiki":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache JSPWiki CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-jspwiki?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-jspwiki_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheJSPWiki-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-jspwiki\"","tags":["indices"]}},"/v3/index/apache-kafka":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Kafka Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-kafka?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-kafka_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheKafka-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-kafka\"","tags":["indices"]}},"/v3/index/apache-loggingservices":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Logging Services Known Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-loggingservices?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-loggingservices_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheLoggingServices-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-loggingservices\"","tags":["indices"]}},"/v3/index/apache-nifi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache NiFi Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-nifi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-nifi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheNiFi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-nifi\"","tags":["indices"]}},"/v3/index/apache-ofbiz":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OFBiz Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-ofbiz?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-ofbiz_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOFBiz-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-ofbiz\"","tags":["indices"]}},"/v3/index/apache-openmeetings":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OpenMeetings Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-openmeetings?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-openmeetings_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOpenMeetings-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-openmeetings\"","tags":["indices"]}},"/v3/index/apache-openoffice":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache OpenOffice Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-openoffice?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-openoffice_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheOpenOffice-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-openoffice\"","tags":["indices"]}},"/v3/index/apache-pulsar":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Pulsar Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-pulsar?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-pulsar_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApachePulsar-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-pulsar\"","tags":["indices"]}},"/v3/index/apache-shiro":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Shiro Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-shiro?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-shiro_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheShiro-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-shiro\"","tags":["indices"]}},"/v3/index/apache-spark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Spark Known Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-spark?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-spark_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSpark-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-spark\"","tags":["indices"]}},"/v3/index/apache-struts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Struts Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-struts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-struts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheStruts-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-struts\"","tags":["indices"]}},"/v3/index/apache-subversion":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Subversion Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-subversion?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-subversion_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSubversion-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-subversion\"","tags":["indices"]}},"/v3/index/apache-superset":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Superset CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-superset?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-superset_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheSuperset-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-superset\"","tags":["indices"]}},"/v3/index/apache-tomcat":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache Tomcat Security Vunlnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-tomcat?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-tomcat_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheTomcat-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-tomcat\"","tags":["indices"]}},"/v3/index/apache-zookeeper":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apache ZooKeeper Vulnerability Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apache-zookeeper?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apache-zookeeper_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ApacheZooKeeper-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apache-zookeeper\"","tags":["indices"]}},"/v3/index/appcheck":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AppCheck Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/appcheck?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_appcheck_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AppCheck-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"appcheck\"","tags":["indices"]}},"/v3/index/appgate":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Appgate SDP Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/appgate?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_appgate_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Appgate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"appgate\"","tags":["indices"]}},"/v3/index/apple":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the apple index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Apple Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/apple?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_apple_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AppleAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"apple\"","tags":["indices"]}},"/v3/index/arch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the arch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Arch Linux\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/arch?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_arch_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ArchIssue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"arch\"","tags":["indices"]}},"/v3/index/arista":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the arista index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Arista Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/arista?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_arista_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Arista-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"arista\"","tags":["indices"]}},"/v3/index/aruba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Aruba Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aruba?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aruba_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Aruba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aruba\"","tags":["indices"]}},"/v3/index/asrg":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ASRG Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asrg?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_asrg_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ASRG-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"asrg\"","tags":["indices"]}},"/v3/index/assetnote":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AssetNote Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/assetnote?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_assetnote_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AssetNote-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"assetnote\"","tags":["indices"]}},"/v3/index/asterisk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Asterisk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asterisk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_asterisk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Asterisk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"asterisk\"","tags":["indices"]}},"/v3/index/astra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the astra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Astra Linux Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/astra?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_astra_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Astra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"astra\"","tags":["indices"]}},"/v3/index/asus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the asus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ASUSTek Computer Inc.\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/asus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_asus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Asus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"asus\"","tags":["indices"]}},"/v3/index/atlassian":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atlassian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atlassian?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_atlassian_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AtlassianAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"atlassian\"","tags":["indices"]}},"/v3/index/atlassian-vulns":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atlassian Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atlassian-vulns?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_atlassian-vulns_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AtlassianVuln-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"atlassian-vulns\"","tags":["indices"]}},"/v3/index/atredis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Atredis Partners Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/atredis?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_atredis_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Atredis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"atredis\"","tags":["indices"]}},"/v3/index/audiocodes":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AudioCodes Product Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/audiocodes?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_audiocodes_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Audiocodes-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"audiocodes\"","tags":["indices"]}},"/v3/index/auscert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AusCERT Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/auscert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_auscert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AusCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"auscert\"","tags":["indices"]}},"/v3/index/austin-hackers":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AHA! — Austin Hackers Anonymous\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/austin-hackers?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_austin-hackers_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AustinHackersAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"austin-hackers\"","tags":["indices"]}},"/v3/index/autodesk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Autodesk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/autodesk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_autodesk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Autodesk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"autodesk\"","tags":["indices"]}},"/v3/index/avaya":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Avaya Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avaya?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_avaya_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Avaya-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"avaya\"","tags":["indices"]}},"/v3/index/aveva":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AVEVA Group Limited\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aveva?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aveva_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AVEVAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aveva\"","tags":["indices"]}},"/v3/index/avidml-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AI Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avidml-advs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_avidml-advs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AVIDMLAdvs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"avidml-advs\"","tags":["indices"]}},"/v3/index/avigilon":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Avigilon Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/avigilon?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_avigilon_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Avigilon-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"avigilon\"","tags":["indices"]}},"/v3/index/aws":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aws index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AWS Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aws?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aws_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_AWS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aws\"","tags":["indices"]}},"/v3/index/aws-rds":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** AWS Relational Database Service Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/aws-rds?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_aws-rds_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"aws-rds\"","tags":["indices"]}},"/v3/index/axis":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the axis index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Axis OS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/axis?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_axis_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Axis-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"axis\"","tags":["indices"]}},"/v3/index/azul":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the azul index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Azul Common Vulnerabilities and Exposures\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/azul?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_azul_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Azul-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"azul\"","tags":["indices"]}},"/v3/index/bandr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** B\u0026R Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bandr?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bandr_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Bandr-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bandr\"","tags":["indices"]}},"/v3/index/baxter":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Baxter Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/baxter?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_baxter_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BaxterAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"baxter\"","tags":["indices"]}},"/v3/index/bbraun":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** B. Braun Medical Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bbraun?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bbraun_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BBraunAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bbraun\"","tags":["indices"]}},"/v3/index/bd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Becton Dickinson Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BectonDickinsonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bd\"","tags":["indices"]}},"/v3/index/bdu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** BDU Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bdu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bdu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BDUAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bdu\"","tags":["indices"]}},"/v3/index/beckhoff":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beckhoff Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beckhoff?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_beckhoff_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeckhoffAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"beckhoff\"","tags":["indices"]}},"/v3/index/beckman-coulter":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beckman Coulter Product Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beckman-coulter?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_beckman-coulter_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeckmanCoulter-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"beckman-coulter\"","tags":["indices"]}},"/v3/index/belden":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the belden index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Belden Security Bulletins Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/belden?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_belden_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeldenAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"belden\"","tags":["indices"]}},"/v3/index/beyond-trust":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Beyond Trust Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/beyond-trust?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_beyond-trust_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BeyondTrust-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"beyond-trust\"","tags":["indices"]}},"/v3/index/binarly":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Binarly Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/binarly?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_binarly_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Binarly-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"binarly\"","tags":["indices"]}},"/v3/index/bitdefender":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Bitdefender Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bitdefender?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bitdefender_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BitDefender-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bitdefender\"","tags":["indices"]}},"/v3/index/blackberry":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** BlackBerry Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/blackberry?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_blackberry_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BlackBerry-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"blackberry\"","tags":["indices"]}},"/v3/index/bls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Black Lantern Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bls\"","tags":["indices"]}},"/v3/index/bosch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Bosch Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/bosch?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_bosch_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BoschAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"bosch\"","tags":["indices"]}},"/v3/index/boston-scientific":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Boston Scientific Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/boston-scientific?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_boston-scientific_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_BostonScientificAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"boston-scientific\"","tags":["indices"]}},"/v3/index/botnets":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Botnets\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/botnets?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_botnets_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Botnet-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"botnets\"","tags":["indices"]}},"/v3/index/ca-cyber-centre":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Canadian Centre for Cyber Security Alerts and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ca-cyber-centre?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ca-cyber-centre_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CACyberCentreAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ca-cyber-centre\"","tags":["indices"]}},"/v3/index/canvas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CANVAS Exploit Packs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/canvas?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_canvas_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CanvasExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"canvas\"","tags":["indices"]}},"/v3/index/carestream":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Carestream Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/carestream?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_carestream_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CarestreamAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"carestream\"","tags":["indices"]}},"/v3/index/cargo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cargo (Rust) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cargo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cargo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cargo\"","tags":["indices"]}},"/v3/index/carrier":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Carrier Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/carrier?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_carrier_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Carrier-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"carrier\"","tags":["indices"]}},"/v3/index/cbl-mariner":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CBL-Mariner Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cbl-mariner?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cbl-mariner_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CBLMariner-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cbl-mariner\"","tags":["indices"]}},"/v3/index/centos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the centos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CentOS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/centos?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_centos_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CESA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"centos\"","tags":["indices"]}},"/v3/index/cert-be":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert BE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-be?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-be_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertBE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-be\"","tags":["indices"]}},"/v3/index/cert-in":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT IN Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-in?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-in_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertIN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-in\"","tags":["indices"]}},"/v3/index/cert-ir-security-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert IR Security Warnings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-ir-security-alerts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-ir-security-alerts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertIRSecurityAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-ir-security-alerts\"","tags":["indices"]}},"/v3/index/cert-se":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert SE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-se?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-se_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertSE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-se\"","tags":["indices"]}},"/v3/index/cert-ua":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert UA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cert-ua?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cert-ua_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertUA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cert-ua\"","tags":["indices"]}},"/v3/index/certeu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/certeu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_certeu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CERTEUAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"certeu\"","tags":["indices"]}},"/v3/index/certfr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cert FR Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/certfr?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_certfr_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CertFRAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"certfr\"","tags":["indices"]}},"/v3/index/chainguard":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ChainGuard Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/chainguard?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_chainguard_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ChainGuard-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"chainguard\"","tags":["indices"]}},"/v3/index/checkpoint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CheckPoint Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/checkpoint?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_checkpoint_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CheckPoint-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"checkpoint\"","tags":["indices"]}},"/v3/index/chrome":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Google Chrome Release Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/chrome?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_chrome_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Chrome-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"chrome\"","tags":["indices"]}},"/v3/index/ciena":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ciena\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ciena?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ciena_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ciena-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ciena\"","tags":["indices"]}},"/v3/index/circl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the circl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Computer Incident Response Center Luxembourg (CIRCL)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/circl?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_circl_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CirclAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"circl\"","tags":["indices"]}},"/v3/index/cisa-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-alerts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisa-alerts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CISAAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisa-alerts\"","tags":["indices"]}},"/v3/index/cisa-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Security Advisories - CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-csaf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisa-csaf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CisaCsafAdv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisa-csaf\"","tags":["indices"]}},"/v3/index/cisa-kev":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA KEV (Known Exploited Vulnerabilities)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisa-kev?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisa-kev_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KEVCatalogVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisa-kev\"","tags":["indices"]}},"/v3/index/cisco":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisco_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisco\"","tags":["indices"]}},"/v3/index/cisco-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-csaf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisco-csaf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisco-csaf\"","tags":["indices"]}},"/v3/index/cisco-known-good-values":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Known Good Values\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-known-good-values?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisco-known-good-values_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CiscoKnownGoodValue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisco-known-good-values\"","tags":["indices"]}},"/v3/index/cisco-talos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Cisco Talos Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cisco-talos?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cisco-talos_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TalosAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cisco-talos\"","tags":["indices"]}},"/v3/index/citrix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Citrix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/citrix?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_citrix_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CitrixAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"citrix\"","tags":["indices"]}},"/v3/index/claroty":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Team 82: The Claroty Research Team\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/claroty?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_claroty_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ClarotyVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"claroty\"","tags":["indices"]}},"/v3/index/cloudbees":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CloudBees Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cloudbees?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cloudbees_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudBees-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cloudbees\"","tags":["indices"]}},"/v3/index/cloudvulndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CloudVulnDB\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cloudvulndb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cloudvulndb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CloudVulnDBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cloudvulndb\"","tags":["indices"]}},"/v3/index/cnnvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Chinese National Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnnvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cnnvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNNVDEntryJSON-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cnnvd\"","tags":["indices"]}},"/v3/index/cnvd-bulletins":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CNVD Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnvd-bulletins?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cnvd-bulletins_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNVDBulletin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cnvd-bulletins\"","tags":["indices"]}},"/v3/index/cnvd-flaws":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CNVD Flaws\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cnvd-flaws?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cnvd-flaws_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CNVDFlaw-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cnvd-flaws\"","tags":["indices"]}},"/v3/index/cocoapods":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CocoaPods packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cocoapods?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cocoapods_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cocoapods\"","tags":["indices"]}},"/v3/index/codesys":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Codesys Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/codesys?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_codesys_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CodesysAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"codesys\"","tags":["indices"]}},"/v3/index/commvault":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Commvault Cloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/commvault?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_commvault_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CommVault-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"commvault\"","tags":["indices"]}},"/v3/index/compass-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Compass Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/compass-security?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_compass-security_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CompassSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"compass-security\"","tags":["indices"]}},"/v3/index/composer":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the composer index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PHP Composer packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/composer?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_composer_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"composer\"","tags":["indices"]}},"/v3/index/conan":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the conan index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** C/C++ packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/conan?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_conan_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"conan\"","tags":["indices"]}},"/v3/index/coreimpact":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Core Impact\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/coreimpact?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_coreimpact_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CoreImpactExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"coreimpact\"","tags":["indices"]}},"/v3/index/cpe-vulnerable":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Unrolled VulnCheck CPEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cpe-vulnerable?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cpe-vulnerable_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VCVulnerableCPEs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cpe-vulnerable\"","tags":["indices"]}},"/v3/index/crestron":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Crestron Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/crestron?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_crestron_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Crestron-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"crestron\"","tags":["indices"]}},"/v3/index/crowdsec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CrowdSec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/crowdsec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_crowdsec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CrowdSec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"crowdsec\"","tags":["indices"]}},"/v3/index/curl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the curl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Curl CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/curl?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_curl_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Curl-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"curl\"","tags":["indices"]}},"/v3/index/cves_identity_mappings":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cves_identity_mappings?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cves_identity_mappings_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_CVEIdentityMappings-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cves_identity_mappings\"","tags":["indices"]}},"/v3/index/cwe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Common Weakness Enumeration Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/cwe?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_cwe_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CWE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"cwe\"","tags":["indices"]}},"/v3/index/dahua":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dahua Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dahua?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dahua_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dahua-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dahua\"","tags":["indices"]}},"/v3/index/danfoss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Danfoss Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/danfoss?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_danfoss_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Danfoss-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"danfoss\"","tags":["indices"]}},"/v3/index/dassault":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dassault Systèmes Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dassault?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dassault_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dassault-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dassault\"","tags":["indices"]}},"/v3/index/debian":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_debian_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnerableDebianPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"debian\"","tags":["indices"]}},"/v3/index/debian-dsa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-dsa?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_debian-dsa_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DebianSecurityAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"debian-dsa\"","tags":["indices"]}},"/v3/index/debian-packages":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian Packages\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-packages?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_debian-packages_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DistroPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"debian-packages\"","tags":["indices"]}},"/v3/index/debian-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Debian PURLs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/debian-purls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_debian-purls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"debian-purls\"","tags":["indices"]}},"/v3/index/dell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dell Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dell?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dell_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Dell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dell\"","tags":["indices"]}},"/v3/index/delta":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the delta index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Delta Controls Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/delta?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_delta_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DeltaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"delta\"","tags":["indices"]}},"/v3/index/dfn-cert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DFN-CERT Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dfn-cert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dfn-cert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DFNCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dfn-cert\"","tags":["indices"]}},"/v3/index/django":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the django index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Django Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/django?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_django_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Django-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"django\"","tags":["indices"]}},"/v3/index/dlink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DLink Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dlink?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dlink_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dlink\"","tags":["indices"]}},"/v3/index/dnn":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DNN Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dnn?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dnn_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DNN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dnn\"","tags":["indices"]}},"/v3/index/dotcms":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DotCMS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dotcms?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dotcms_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DotCMS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dotcms\"","tags":["indices"]}},"/v3/index/draeger":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Draeger Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/draeger?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_draeger_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DraegerAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"draeger\"","tags":["indices"]}},"/v3/index/dragos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Dragos Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/dragos?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_dragos_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_DragosAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"dragos\"","tags":["indices"]}},"/v3/index/draytek":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** DrayTek Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/draytek?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_draytek_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Draytek-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"draytek\"","tags":["indices"]}},"/v3/index/drupal":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Drupal Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/drupal?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_drupal_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Drupal-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"drupal\"","tags":["indices"]}},"/v3/index/eaton":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Eaton Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eaton?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_eaton_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EatonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"eaton\"","tags":["indices"]}},"/v3/index/elastic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Elastic Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/elastic?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_elastic_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Elastic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"elastic\"","tags":["indices"]}},"/v3/index/elspec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Elspec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/elspec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_elspec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Elspec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"elspec\"","tags":["indices"]}},"/v3/index/emerging-threats-snort":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Emerging Threats Snort\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/emerging-threats-snort?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_emerging-threats-snort_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EmergingThreatsSnort-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"emerging-threats-snort\"","tags":["indices"]}},"/v3/index/emerson":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Emerson Cyber Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/emerson?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_emerson_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EmersonAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"emerson\"","tags":["indices"]}},"/v3/index/endoflife":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** End Of Life\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/endoflife?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_endoflife_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EndOfLife-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"endoflife\"","tags":["indices"]}},"/v3/index/endress":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the endress index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Endress \u0026 Hauser Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/endress?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_endress_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Endress-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"endress\"","tags":["indices"]}},"/v3/index/eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck EOL Coverage\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLReleaseData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"eol\"","tags":["indices"]}},"/v3/index/eol-alibaba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Alibaba EOL\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol-alibaba?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_eol-alibaba_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLAlibaba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"eol-alibaba\"","tags":["indices"]}},"/v3/index/eol-microsoft":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft EOL\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/eol-microsoft?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_eol-microsoft_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EOLMicrosoft-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"eol-microsoft\"","tags":["indices"]}},"/v3/index/epss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the epss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** EPSS Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/epss?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_epss_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_EPSSData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"epss\"","tags":["indices"]}},"/v3/index/euvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** European Union Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/euvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_euvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_EUVD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"euvd\"","tags":["indices"]}},"/v3/index/exodus-intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Exodus Intelligence Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exodus-intel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exodus-intel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ExodusIntel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exodus-intel\"","tags":["indices"]}},"/v3/index/exploit-chains":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Exploit Chains\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploit-chains?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exploit-chains_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitChain-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exploit-chains\"","tags":["indices"]}},"/v3/index/exploitdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Exploit Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploitdb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exploitdb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ExploitDBExploitv2-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exploitdb\"","tags":["indices"]}},"/v3/index/exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Exploit Intelligence Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploits?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exploits_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitV3Result-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exploits\"","tags":["indices"]}},"/v3/index/exploits-changelog":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Changelog for VC Exploits Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/exploits-changelog?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_exploits-changelog_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_ExploitsChangelog-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"exploits-changelog\"","tags":["indices"]}},"/v3/index/f-secure":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** F-Secure Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/f-secure?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_f-secure_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FSecure-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"f-secure\"","tags":["indices"]}},"/v3/index/f5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** F5 Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/f5?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_f5_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_F5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"f5\"","tags":["indices"]}},"/v3/index/fanuc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fanuc Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fanuc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fanuc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fanuc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fanuc\"","tags":["indices"]}},"/v3/index/fastly":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fastly Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fastly?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fastly_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fastly-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fastly\"","tags":["indices"]}},"/v3/index/fedora":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fedora Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fedora?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fedora_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fedora\"","tags":["indices"]}},"/v3/index/festo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the festo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Festo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/festo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_festo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Festo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"festo\"","tags":["indices"]}},"/v3/index/filecloud":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FileCloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/filecloud?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_filecloud_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FileCloud-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"filecloud\"","tags":["indices"]}},"/v3/index/filezilla":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FileZilla Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/filezilla?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_filezilla_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FileZilla-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"filezilla\"","tags":["indices"]}},"/v3/index/flatt-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Flatt Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/flatt-security?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_flatt-security_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FlattSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"flatt-security\"","tags":["indices"]}},"/v3/index/forgerock":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ForgeRock Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/forgerock?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_forgerock_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ForgeRock-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"forgerock\"","tags":["indices"]}},"/v3/index/fortinet":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FortiGuard Fortinet\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fortinet?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fortinet_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FortinetAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fortinet\"","tags":["indices"]}},"/v3/index/fortinet-ips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fortinet Labs Threat Encyclopedia\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fortinet-ips?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fortinet-ips_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_FortinetIPS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fortinet-ips\"","tags":["indices"]}},"/v3/index/foxit":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Foxit Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/foxit?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_foxit_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Foxit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"foxit\"","tags":["indices"]}},"/v3/index/freebsd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** FreeBSD Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/freebsd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_freebsd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Advisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"freebsd\"","tags":["indices"]}},"/v3/index/fresenius":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Fresenius Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/fresenius?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_fresenius_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Fresenius-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"fresenius\"","tags":["indices"]}},"/v3/index/gallagher":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gallagher Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gallagher?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gallagher_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gallagher-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gallagher\"","tags":["indices"]}},"/v3/index/gcp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GCP Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gcp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gcp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GCP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gcp\"","tags":["indices"]}},"/v3/index/ge-gas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GE Gas Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ge-gas?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ge-gas_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GEGas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ge-gas\"","tags":["indices"]}},"/v3/index/ge-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GE Healthcare Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ge-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ge-healthcare_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GEHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ge-healthcare\"","tags":["indices"]}},"/v3/index/gem":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gem index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ruby (gem) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gem?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gem_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gem\"","tags":["indices"]}},"/v3/index/gen":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gen index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gen Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gen?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gen_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gen-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gen\"","tags":["indices"]}},"/v3/index/genetec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Genetec Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/genetec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_genetec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Genetec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"genetec\"","tags":["indices"]}},"/v3/index/ghsa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GHSA\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ghsa?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ghsa_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GHSA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ghsa\"","tags":["indices"]}},"/v3/index/gigabyte":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GIGABYTE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gigabyte?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gigabyte_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Gigabyte-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gigabyte\"","tags":["indices"]}},"/v3/index/gitee-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gitee Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitee-exploits?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gitee-exploits_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GiteeExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gitee-exploits\"","tags":["indices"]}},"/v3/index/github-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitHub Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/github-exploits?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_github-exploits_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitHubExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"github-exploits\"","tags":["indices"]}},"/v3/index/github-security-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Github Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/github-security-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_github-security-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GHAdvisoryJSONLean-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"github-security-advisories\"","tags":["indices"]}},"/v3/index/gitlab-advisories-community":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitLab Advisory Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitlab-advisories-community?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gitlab-advisories-community_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitlabAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gitlab-advisories-community\"","tags":["indices"]}},"/v3/index/gitlab-exploits":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GitLab Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gitlab-exploits?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gitlab-exploits_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GitLabExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gitlab-exploits\"","tags":["indices"]}},"/v3/index/glibc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Glibc Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/glibc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_glibc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Glibc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"glibc\"","tags":["indices"]}},"/v3/index/gmo-cybersecurity":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GMO Cybersecurity Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gmo-cybersecurity?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gmo-cybersecurity_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GMOCyberSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gmo-cybersecurity\"","tags":["indices"]}},"/v3/index/gnutls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GnuTLS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/gnutls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_gnutls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GnuTLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"gnutls\"","tags":["indices"]}},"/v3/index/go-vulndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Go Vulnerability Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/go-vulndb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_go-vulndb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GoVulnJSON-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"go-vulndb\"","tags":["indices"]}},"/v3/index/golang":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the golang index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Golang packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/golang?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_golang_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"golang\"","tags":["indices"]}},"/v3/index/google-0day-itw":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Project Zero In the Wild Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/google-0day-itw?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_google-0day-itw_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ITWExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"google-0day-itw\"","tags":["indices"]}},"/v3/index/google-container-optimized-os":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Container OS Release Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/google-container-optimized-os?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_google-container-optimized-os_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ContainerOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"google-container-optimized-os\"","tags":["indices"]}},"/v3/index/grafana":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Grafana Labs Security Fixes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/grafana?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_grafana_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Grafana-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"grafana\"","tags":["indices"]}},"/v3/index/greynoise-metadata":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** GreyNoise Metadata\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/greynoise-metadata?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_greynoise-metadata_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GreyNoiseDetection-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"greynoise-metadata\"","tags":["indices"]}},"/v3/index/hackage":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hackage (Haskell) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hackage?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hackage_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hackage\"","tags":["indices"]}},"/v3/index/hacktivity":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hackerone Hacktivity\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hacktivity?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hacktivity_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Hacktivity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hacktivity\"","tags":["indices"]}},"/v3/index/harmonyos":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HarmonyOS Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/harmonyos?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_harmonyos_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HarmonyOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"harmonyos\"","tags":["indices"]}},"/v3/index/hashicorp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HashiCorp Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hashicorp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hashicorp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HashiCorp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hashicorp\"","tags":["indices"]}},"/v3/index/haskell-sadb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Haskell Security Advisory DB\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/haskell-sadb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_haskell-sadb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HaskellSADBAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"haskell-sadb\"","tags":["indices"]}},"/v3/index/hcl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HCLSoftware Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hcl?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hcl_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HCL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hcl\"","tags":["indices"]}},"/v3/index/hex":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hex index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hex (Erlang) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hex?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hex_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hex\"","tags":["indices"]}},"/v3/index/hikvision":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hikvision Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hikvision?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hikvision_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HIKVision-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hikvision\"","tags":["indices"]}},"/v3/index/hillrom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hillrom Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hillrom?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hillrom_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HillromAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hillrom\"","tags":["indices"]}},"/v3/index/hitachi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hitachi Software Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hitachi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hitachi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Hitachi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hitachi\"","tags":["indices"]}},"/v3/index/hitachi-energy":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hitachi-energy?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hitachi-energy_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HitachiEnergy-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hitachi-energy\"","tags":["indices"]}},"/v3/index/hkcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hong Kong CERT Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hkcert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hkcert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HKCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hkcert\"","tags":["indices"]}},"/v3/index/hms":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hms index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HMS (Hardware Meets Software) Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hms?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hms_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HMS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hms\"","tags":["indices"]}},"/v3/index/honeywell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Honeywell Cyber Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/honeywell?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_honeywell_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Honeywell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"honeywell\"","tags":["indices"]}},"/v3/index/hp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HP Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hp\"","tags":["indices"]}},"/v3/index/hp-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** End of Life Data for Hewlett-Packard Products\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hp-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hp-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hp-eol\"","tags":["indices"]}},"/v3/index/hpe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** HPE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hpe?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hpe_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HPE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hpe\"","tags":["indices"]}},"/v3/index/hpe-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Hewlett-Packard Enterprise End of Life Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/hpe-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_hpe-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"hpe-eol\"","tags":["indices"]}},"/v3/index/huawei-euleros":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenEuler Operating System Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-euleros?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_huawei-euleros_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HuaweiEulerOS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"huawei-euleros\"","tags":["indices"]}},"/v3/index/huawei-ips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Huawei IPS Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-ips?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_huawei-ips_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_HuaweiIPS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"huawei-ips\"","tags":["indices"]}},"/v3/index/huawei-psirt":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Huawei Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/huawei-psirt?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_huawei-psirt_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Huawei-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"huawei-psirt\"","tags":["indices"]}},"/v3/index/iava":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the iava index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Information Assurance Vulnerability Alerts (IAVA)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/iava?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_iava_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IAVA-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"iava\"","tags":["indices"]}},"/v3/index/ibm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** IBM Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ibm?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ibm_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IBM-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ibm\"","tags":["indices"]}},"/v3/index/idemia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Idemia Product Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/idemia?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_idemia_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Idemia-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"idemia\"","tags":["indices"]}},"/v3/index/igel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the igel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** IGEL Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/igel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_igel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Igel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"igel\"","tags":["indices"]}},"/v3/index/il-alerts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gov.il Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/il-alerts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_il-alerts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IsraeliAlert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"il-alerts\"","tags":["indices"]}},"/v3/index/il-vulnerabilities":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Gov.il CVE Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/il-vulnerabilities?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_il-vulnerabilities_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IsraeliVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"il-vulnerabilities\"","tags":["indices"]}},"/v3/index/incibe":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Incibe CERT Early Warnings\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/incibe?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_incibe_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IncibeAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"incibe\"","tags":["indices"]}},"/v3/index/initial-access":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Initial Access Intelligence\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/initial-access?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_initial-access_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"initial-access\"","tags":["indices"]}},"/v3/index/initial-access-git":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/initial-access-git?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_initial-access-git_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_InitialAccess-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"initial-access-git\"","tags":["indices"]}},"/v3/index/intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Intel® Product Security Center Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/intel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_intel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Intel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"intel\"","tags":["indices"]}},"/v3/index/ioc-botnets":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck IOC Botnets\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ioc-botnets?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ioc-botnets_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IOCBotnetAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ioc-botnets\"","tags":["indices"]}},"/v3/index/ioc-ransomware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vulncheck IOC Ransomware\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ioc-ransomware?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ioc-ransomware_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IOCRansomwareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ioc-ransomware\"","tags":["indices"]}},"/v3/index/ioc-threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vulncheck IOC Threat Actors\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ioc-threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ioc-threat-actors_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IOCThreatActorAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ioc-threat-actors\"","tags":["indices"]}},"/v3/index/ipintel-10d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-10d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ipintel-10d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ipintel-10d\"","tags":["indices"]}},"/v3/index/ipintel-30d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-30d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ipintel-30d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ipintel-30d\"","tags":["indices"]}},"/v3/index/ipintel-3d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-3d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ipintel-3d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ipintel-3d\"","tags":["indices"]}},"/v3/index/ipintel-90d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ipintel-90d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ipintel-90d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Record type","in":"query","name":"id","schema":{"type":"string"}},{"description":"Kind of IpIntel Finding","in":"query","name":"kind","schema":{"type":"string"}},{"description":"Match a string in the list of hostnames","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Search for a string in the field describing the finding","in":"query","name":"matches","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IpIntelRecord-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ipintel-90d\"","tags":["indices"]}},"/v3/index/istio":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the istio index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Istio Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/istio?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_istio_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Istio-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"istio\"","tags":["indices"]}},"/v3/index/ivanti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ivanti Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ivanti?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ivanti_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ivanti-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ivanti\"","tags":["indices"]}},"/v3/index/ivanti-rss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ivanti Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ivanti-rss?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ivanti-rss_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_IvantiRSS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ivanti-rss\"","tags":["indices"]}},"/v3/index/jenkins":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Jenkins Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jenkins?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jenkins_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Jenkins-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jenkins\"","tags":["indices"]}},"/v3/index/jetbrains":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** JetBrains Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jetbrains?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jetbrains_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JetBrains-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jetbrains\"","tags":["indices"]}},"/v3/index/jfrog":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** JFrog Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jfrog?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jfrog_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JFrog-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jfrog\"","tags":["indices"]}},"/v3/index/jnj":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Johnson \u0026 Johnson Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jnj?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jnj_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JNJAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jnj\"","tags":["indices"]}},"/v3/index/johnson-controls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Security Advisories - Johnson Controls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/johnson-controls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_johnson-controls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JohnsonControls-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"johnson-controls\"","tags":["indices"]}},"/v3/index/juniper":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Juniper Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/juniper?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_juniper_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Juniper-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"juniper\"","tags":["indices"]}},"/v3/index/jvn":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Japan Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jvn?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jvn_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JVN-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jvn\"","tags":["indices"]}},"/v3/index/jvndb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Japan Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/jvndb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_jvndb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_JVNAdvisoryItem-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"jvndb\"","tags":["indices"]}},"/v3/index/kaspersky-ics-cert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Kaspersky ICS CERT\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kaspersky-ics-cert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_kaspersky-ics-cert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KasperskyICSCERTAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"kaspersky-ics-cert\"","tags":["indices"]}},"/v3/index/korelogic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KoreLogic Vulnerability Research and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/korelogic?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_korelogic_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KoreLogic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"korelogic\"","tags":["indices"]}},"/v3/index/krcert-security-notices":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KR-CERT Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/krcert-security-notices?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_krcert-security-notices_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"krcert-security-notices\"","tags":["indices"]}},"/v3/index/krcert-vulnerabilities":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KR-CERT Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/krcert-vulnerabilities?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_krcert-vulnerabilities_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_KRCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"krcert-vulnerabilities\"","tags":["indices"]}},"/v3/index/kubernetes":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Kubernetes Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kubernetes?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_kubernetes_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_K8S-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"kubernetes\"","tags":["indices"]}},"/v3/index/kunbus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** KunBus Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/kunbus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_kunbus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Kunbus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"kunbus\"","tags":["indices"]}},"/v3/index/lantronix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lantronix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lantronix?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lantronix_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Lantronix-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lantronix\"","tags":["indices"]}},"/v3/index/lenovo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lenovo Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lenovo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lenovo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Lenovo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lenovo\"","tags":["indices"]}},"/v3/index/lexmark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Lexmark Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lexmark?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lexmark_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LexmarkAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lexmark\"","tags":["indices"]}},"/v3/index/lg":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lg index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** LG Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lg?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lg_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LG-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lg\"","tags":["indices"]}},"/v3/index/libre-office":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Libre Office Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/libre-office?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_libre-office_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LibreOffice-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"libre-office\"","tags":["indices"]}},"/v3/index/linux":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the linux index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Linux Kernel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/linux?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_linux_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Linux-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"linux\"","tags":["indices"]}},"/v3/index/lol-advs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Living Off the Land Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/lol-advs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_lol-advs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_LolAdvs-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"lol-advs\"","tags":["indices"]}},"/v3/index/m-files":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** M-Files Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/m-files?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_m-files_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MFiles-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"m-files\"","tags":["indices"]}},"/v3/index/macert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the macert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moroccan CERT Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/macert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_macert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MACert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"macert\"","tags":["indices"]}},"/v3/index/malicious-packages":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Malicious Packages\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/malicious-packages?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_malicious-packages_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MaliciousPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"malicious-packages\"","tags":["indices"]}},"/v3/index/malicious-vscode-exts":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Malicious Visual Studio Code Extensions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/malicious-vscode-exts?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_malicious-vscode-exts_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MaliciousVSCodeExts-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"malicious-vscode-exts\"","tags":["indices"]}},"/v3/index/manageengine":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ManageEngine Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/manageengine?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_manageengine_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ManageEngineAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"manageengine\"","tags":["indices"]}},"/v3/index/maven":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the maven index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Maven (Java) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/maven?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_maven_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"maven\"","tags":["indices"]}},"/v3/index/mbed-tls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mbed TLS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mbed-tls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mbed-tls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MbedTLS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mbed-tls\"","tags":["indices"]}},"/v3/index/mcafee":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** McAfee Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mcafee?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mcafee_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_McAfee-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mcafee\"","tags":["indices"]}},"/v3/index/mediatek":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MediaTek Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mediatek?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mediatek_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mediatek-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mediatek\"","tags":["indices"]}},"/v3/index/medtronic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Medtronic Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/medtronic?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_medtronic_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MedtronicAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"medtronic\"","tags":["indices"]}},"/v3/index/mendix":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mendix Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mendix?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mendix_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mendix-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mendix\"","tags":["indices"]}},"/v3/index/meta-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Meta Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/meta-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_meta-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetaAdvisories-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"meta-advisories\"","tags":["indices"]}},"/v3/index/metasploit":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Metasploit Modules\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/metasploit?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_metasploit_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetasploitExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"metasploit\"","tags":["indices"]}},"/v3/index/microsoft-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-csaf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-csaf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-csaf\"","tags":["indices"]}},"/v3/index/microsoft-cvrf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-cvrf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-cvrf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftCVRF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-cvrf\"","tags":["indices"]}},"/v3/index/microsoft-driver-block-list":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft's Vulnerable Drivers Blocklist\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-driver-block-list?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-driver-block-list_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftDriverBlockList-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-driver-block-list\"","tags":["indices"]}},"/v3/index/microsoft-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft End of Life Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-eol\"","tags":["indices"]}},"/v3/index/microsoft-kb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Microsoft KB list by CVE\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/microsoft-kb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_microsoft-kb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MicrosoftKb-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"microsoft-kb\"","tags":["indices"]}},"/v3/index/mikrotik":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MikroTik Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mikrotik?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mikrotik_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mikrotik-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mikrotik\"","tags":["indices"]}},"/v3/index/mindray":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mindray Cybersecurity Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mindray?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mindray_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mindray-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mindray\"","tags":["indices"]}},"/v3/index/misp-threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MISP Threat Actors\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/misp-threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_misp-threat-actors_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MispValue-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"misp-threat-actors\"","tags":["indices"]}},"/v3/index/mitel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mitel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mitel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Mitel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mitel\"","tags":["indices"]}},"/v3/index/mitre-attack-cve":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MITRE ATT\u0026CK Technique ID to CVE List\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitre-attack-cve?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mitre-attack-cve_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_MitreAttackToCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mitre-attack-cve\"","tags":["indices"]}},"/v3/index/mitre-cvelist-v5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MITRE CVEList V5\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitre-cvelist-v5?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mitre-cvelist-v5_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MitreCVEListV5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mitre-cvelist-v5\"","tags":["indices"]}},"/v3/index/mitsubishi-electric":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mitsubishi Electric Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mitsubishi-electric?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mitsubishi-electric_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MitsubishiElectricAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mitsubishi-electric\"","tags":["indices"]}},"/v3/index/mogwai-labs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MOGWAI LABS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mogwai-labs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mogwai-labs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MogwaiLabsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mogwai-labs\"","tags":["indices"]}},"/v3/index/moksha":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moksha Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/moksha?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_moksha_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MokshaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"moksha\"","tags":["indices"]}},"/v3/index/mongodb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** MongoDB Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mongodb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mongodb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MongoDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mongodb\"","tags":["indices"]}},"/v3/index/moxa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Moxa Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/moxa?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_moxa_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MoxaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"moxa\"","tags":["indices"]}},"/v3/index/mozilla":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Mozilla Foundation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/mozilla?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_mozilla_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MozillaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"mozilla\"","tags":["indices"]}},"/v3/index/naver":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the naver index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Naver Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/naver?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_naver_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Naver-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"naver\"","tags":["indices"]}},"/v3/index/ncsc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NCSC Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ncsc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ncsc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NCSC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ncsc\"","tags":["indices"]}},"/v3/index/ncsc-cves":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NCSC CVEs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ncsc-cves?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ncsc-cves_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NCSCCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ncsc-cves\"","tags":["indices"]}},"/v3/index/nec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NEC Security Information Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NEC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nec\"","tags":["indices"]}},"/v3/index/nessus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nessus Plugins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nessus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nessus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nessus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nessus\"","tags":["indices"]}},"/v3/index/netapp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NetApp Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netapp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netapp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NetApp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netapp\"","tags":["indices"]}},"/v3/index/netatalk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netatalk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netatalk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netatalk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netatalk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netatalk\"","tags":["indices"]}},"/v3/index/netgate":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netgate Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netgate?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netgate_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netgate-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netgate\"","tags":["indices"]}},"/v3/index/netgear":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NETGEAR Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netgear?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netgear_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netgear-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netgear\"","tags":["indices"]}},"/v3/index/netskope":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Netskope Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/netskope?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_netskope_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Netskope-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"netskope\"","tags":["indices"]}},"/v3/index/nexpose":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nexpose Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nexpose?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nexpose_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nexpose-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nexpose\"","tags":["indices"]}},"/v3/index/nginx":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nginx Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nginx?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nginx_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NginxAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nginx\"","tags":["indices"]}},"/v3/index/nhs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NHS Cyber Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nhs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nhs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NHS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nhs\"","tags":["indices"]}},"/v3/index/ni":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ni index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** National Instruments Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ni?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ni_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ni\"","tags":["indices"]}},"/v3/index/nist-nvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nist-nvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CveItems-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nist-nvd\"","tags":["indices"]}},"/v3/index/nist-nvd2":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nist-nvd2_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nist-nvd2\"","tags":["indices"]}},"/v3/index/nist-nvd2-cpematch":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0 CPE Match\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2-cpematch?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nist-nvd2-cpematch_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CPEMatch-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nist-nvd2-cpematch\"","tags":["indices"]}},"/v3/index/nist-nvd2-sources":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NIST NVD 2.0 Source Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nist-nvd2-sources?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nist-nvd2-sources_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NVD20Source-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nist-nvd2-sources\"","tags":["indices"]}},"/v3/index/node-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Node.js Security Working Group Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/node-security?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_node-security_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NodeSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"node-security\"","tags":["indices"]}},"/v3/index/nodejs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NodeJS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nodejs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nodejs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NodeJS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nodejs\"","tags":["indices"]}},"/v3/index/nokia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nokia Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nokia?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nokia_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nokia-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nokia\"","tags":["indices"]}},"/v3/index/notepadplusplus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Notepad++ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/notepadplusplus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_notepadplusplus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NotePadPlusPlus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"notepadplusplus\"","tags":["indices"]}},"/v3/index/nozomi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nozomi Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nozomi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nozomi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nozomi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nozomi\"","tags":["indices"]}},"/v3/index/npm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the npm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NPM (JS/TS) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/npm?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_npm_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"npm\"","tags":["indices"]}},"/v3/index/ntp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NTP Security Issues\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ntp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ntp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NTP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ntp\"","tags":["indices"]}},"/v3/index/nuclei":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nuclei Templates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nuclei?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nuclei_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Nuclei-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nuclei\"","tags":["indices"]}},"/v3/index/nuget":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Nuget (C#/F#) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nuget?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nuget_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nuget\"","tags":["indices"]}},"/v3/index/nvd-cpe-dictionary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NVD's CPE Dictionary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nvd-cpe-dictionary?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nvd-cpe-dictionary_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NVDCPEDictionary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nvd-cpe-dictionary\"","tags":["indices"]}},"/v3/index/nvidia":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** NVIDIA Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nvidia?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nvidia_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SecurityBulletin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nvidia\"","tags":["indices"]}},"/v3/index/nz-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CERT NZ Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/nz-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_nz-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_NZAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"nz-advisories\"","tags":["indices"]}},"/v3/index/octopus-deploy":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Octopus Deploy Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/octopus-deploy?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_octopus-deploy_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OctopusDeploy-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"octopus-deploy\"","tags":["indices"]}},"/v3/index/okta":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the okta index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Okta Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/okta?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_okta_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Okta-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"okta\"","tags":["indices"]}},"/v3/index/omron":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the omron index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Omron Vulnerability Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/omron?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_omron_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Omron-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"omron\"","tags":["indices"]}},"/v3/index/omron-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Omron End of Life Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/omron-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_omron-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"omron-eol\"","tags":["indices"]}},"/v3/index/one-e":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** 1E Published Product Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/one-e?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_one-e_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OneE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"one-e\"","tags":["indices"]}},"/v3/index/opam":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opam index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** opam (OCaml) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opam?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_opam_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"opam\"","tags":["indices"]}},"/v3/index/opc-foundation":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OPC Foundation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opc-foundation?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_opc-foundation_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OPCFoundationAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"opc-foundation\"","tags":["indices"]}},"/v3/index/open-cvdb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** The Open Cloud Vulnerability \u0026 Security Issue Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/open-cvdb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_open-cvdb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenCVDB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"open-cvdb\"","tags":["indices"]}},"/v3/index/openbsd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenBSD Security Fixes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openbsd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openbsd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenBSD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openbsd\"","tags":["indices"]}},"/v3/index/opengear":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Opengear Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/opengear?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_opengear_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Opengear-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"opengear\"","tags":["indices"]}},"/v3/index/openjdk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenJDK Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openjdk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openjdk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenJDK-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openjdk\"","tags":["indices"]}},"/v3/index/openssh":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenSSH Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openssh?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openssh_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenSSH-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openssh\"","tags":["indices"]}},"/v3/index/openssl-secadv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenSSL Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openssl-secadv?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openssl-secadv_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenSSLSecAdv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openssl-secadv\"","tags":["indices"]}},"/v3/index/openstack":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenStack Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openstack?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openstack_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OpenStack-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openstack\"","tags":["indices"]}},"/v3/index/openwrt":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OpenWrt Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/openwrt?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_openwrt_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WRT-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"openwrt\"","tags":["indices"]}},"/v3/index/oracle":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_oracle_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_MetaData-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"oracle\"","tags":["indices"]}},"/v3/index/oracle-cpu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Critical Patch Update Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle-cpu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_oracle-cpu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OracleCPU-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"oracle-cpu\"","tags":["indices"]}},"/v3/index/oracle-cpu-csaf":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Oracle Critical Patch Updates CSAF\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/oracle-cpu-csaf?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_oracle-cpu-csaf_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OracleCPUCSAF-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"oracle-cpu-csaf\"","tags":["indices"]}},"/v3/index/osv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the osv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Open Source Vulnerabilities Database\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/osv?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_osv_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OSV-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"osv\"","tags":["indices"]}},"/v3/index/otrs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OTRS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/otrs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_otrs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OTRS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"otrs\"","tags":["indices"]}},"/v3/index/owncloud":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** OwnCloud Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/owncloud?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_owncloud_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_OwnCloud-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"owncloud\"","tags":["indices"]}},"/v3/index/packetstorm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PacketStorm\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/packetstorm?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_packetstorm_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PacketstormExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"packetstorm\"","tags":["indices"]}},"/v3/index/palantir":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Palantir Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/palantir?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_palantir_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Palantir-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"palantir\"","tags":["indices"]}},"/v3/index/palo-alto":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Palo Alto Networks Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/palo-alto?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_palo-alto_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PaloAltoAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"palo-alto\"","tags":["indices"]}},"/v3/index/panasonic":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Panasonic Vulnerability Advisory List\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/panasonic?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_panasonic_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Panasonic-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"panasonic\"","tags":["indices"]}},"/v3/index/papercut":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PaperCut Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/papercut?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_papercut_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PaperCut-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"papercut\"","tags":["indices"]}},"/v3/index/pega":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pega index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pega Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pega?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pega_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Pega-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pega\"","tags":["indices"]}},"/v3/index/philips":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the philips index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Philips Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/philips?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_philips_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PhilipsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"philips\"","tags":["indices"]}},"/v3/index/phoenix-contact":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Phoenix Contact Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/phoenix-contact?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_phoenix-contact_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PhoenixContactAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"phoenix-contact\"","tags":["indices"]}},"/v3/index/php-my-admin":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** phpMyAdmin Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/php-my-admin?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_php-my-admin_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PHPMyAdmin-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"php-my-admin\"","tags":["indices"]}},"/v3/index/pkcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PK CERT Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pkcert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pkcert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PKCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pkcert\"","tags":["indices"]}},"/v3/index/postgressql":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PostgresSQL Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/postgressql?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_postgressql_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PostgresSQL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"postgressql\"","tags":["indices"]}},"/v3/index/powerdns":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PowerDNS Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/powerdns?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_powerdns_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PowerDNS-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"powerdns\"","tags":["indices"]}},"/v3/index/progress":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the progress index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Progress Product Alert Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/progress?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_progress_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Progress-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"progress\"","tags":["indices"]}},"/v3/index/proofpoint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Proofpoint Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/proofpoint?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_proofpoint_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Proofpoint-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"proofpoint\"","tags":["indices"]}},"/v3/index/ptc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PTC Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ptc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ptc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PTC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ptc\"","tags":["indices"]}},"/v3/index/pub":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pub index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pub (Dart/Flutter) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pub?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pub_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pub\"","tags":["indices"]}},"/v3/index/pure-storage":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Pure Storage Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pure-storage?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pure-storage_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PureStorage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pure-storage\"","tags":["indices"]}},"/v3/index/pypa-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PyPA Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pypa-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pypa-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_PyPAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pypa-advisories\"","tags":["indices"]}},"/v3/index/pypi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** PyPi (Python) packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/pypi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_pypi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"pypi\"","tags":["indices"]}},"/v3/index/qnap":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** QNAP Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qnap?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qnap_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QNAPAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qnap\"","tags":["indices"]}},"/v3/index/qqids":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys QIDs\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qqids?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qqids_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QQID-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qqids\"","tags":["indices"]}},"/v3/index/qualcomm":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualcomm Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualcomm?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qualcomm_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Qualcomm-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qualcomm\"","tags":["indices"]}},"/v3/index/qualys":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualys?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qualys_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Qualys-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qualys\"","tags":["indices"]}},"/v3/index/qualys-qids":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qualys QID\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qualys-qids?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qualys-qids_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QualysQID-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qualys-qids\"","tags":["indices"]}},"/v3/index/qubes-qsb":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Qubes Security Bulletin\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/qubes-qsb?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_qubes-qsb_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_QSB-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"qubes-qsb\"","tags":["indices"]}},"/v3/index/ransomware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Ransomware\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ransomware?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ransomware_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RansomwareExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ransomware\"","tags":["indices"]}},"/v3/index/red-lion":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Red-Lion Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/red-lion?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_red-lion_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RedLion-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"red-lion\"","tags":["indices"]}},"/v3/index/redhat":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Red Hat Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/redhat?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_redhat_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RedhatCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"redhat\"","tags":["indices"]}},"/v3/index/redhat-cves":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CSAF data for redhat\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/redhat-cves?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_redhat-cves_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RhelCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"redhat-cves\"","tags":["indices"]}},"/v3/index/renesas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Renesas Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/renesas?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_renesas_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Renesas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"renesas\"","tags":["indices"]}},"/v3/index/revive":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the revive index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Revive Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/revive?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_revive_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Revive-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"revive\"","tags":["indices"]}},"/v3/index/roche":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the roche index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Roche Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/roche?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_roche_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Roche-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"roche\"","tags":["indices"]}},"/v3/index/rockwell":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rockwell Automation Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rockwell?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rockwell_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Rockwell-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rockwell\"","tags":["indices"]}},"/v3/index/rocky":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Linux Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rocky_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_Update-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rocky\"","tags":["indices"]}},"/v3/index/rocky-errata":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Errata\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky-errata?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rocky-errata_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RockyErrata-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rocky-errata\"","tags":["indices"]}},"/v3/index/rocky-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rocky Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rocky-purls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rocky-purls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rocky-purls\"","tags":["indices"]}},"/v3/index/rsync":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Rsync Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rsync?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rsync_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Rsync-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rsync\"","tags":["indices"]}},"/v3/index/ruckus":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ruckus Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ruckus?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ruckus_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ruckus-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ruckus\"","tags":["indices"]}},"/v3/index/rustsec-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** RustSec Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/rustsec-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_rustsec-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_RustsecAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"rustsec-advisories\"","tags":["indices"]}},"/v3/index/sacert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Saudi CERT\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sacert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sacert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SAAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sacert\"","tags":["indices"]}},"/v3/index/safran":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the safran index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Safran Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/safran?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_safran_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Safran-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"safran\"","tags":["indices"]}},"/v3/index/saint":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the saint index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SAINT Exploits\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/saint?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_saint_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SaintExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"saint\"","tags":["indices"]}},"/v3/index/salesforce":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SalesForce Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/salesforce?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_salesforce_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SalesForce-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"salesforce\"","tags":["indices"]}},"/v3/index/samba":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the samba index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Samba Security Releases\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/samba?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_samba_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Samba-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"samba\"","tags":["indices"]}},"/v3/index/sandisk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sandisk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sandisk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sandisk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sandisk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sandisk\"","tags":["indices"]}},"/v3/index/sans-dshield":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SANS DShield Honeypot Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sans-dshield?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sans-dshield_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SansDshield-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sans-dshield\"","tags":["indices"]}},"/v3/index/sap":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sap index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SAP Security Patch Days\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sap?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sap_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SAP-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sap\"","tags":["indices"]}},"/v3/index/schneider-electric":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schneider Electric Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/schneider-electric?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_schneider-electric_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SchneiderElectricAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"schneider-electric\"","tags":["indices"]}},"/v3/index/schutzwerk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schutzwerk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/schutzwerk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_schutzwerk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Schutzwerk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"schutzwerk\"","tags":["indices"]}},"/v3/index/sec-consult":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SEC Consult Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sec-consult?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sec-consult_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SECConsult-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sec-consult\"","tags":["indices"]}},"/v3/index/securitylab":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Security Lab Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/securitylab?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_securitylab_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SecurityLab-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"securitylab\"","tags":["indices"]}},"/v3/index/seebug":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Seebug Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/seebug?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_seebug_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SeebugExploit-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"seebug\"","tags":["indices"]}},"/v3/index/sel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Schweitzer Engineering Laboratories Security Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sel\"","tags":["indices"]}},"/v3/index/sentinelone":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SentinelOne Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sentinelone?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sentinelone_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SentinelOne-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sentinelone\"","tags":["indices"]}},"/v3/index/servicenow":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ServiceNow CVE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/servicenow?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_servicenow_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ServiceNow-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"servicenow\"","tags":["indices"]}},"/v3/index/shadowserver-exploited":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Shadowserver Foundation Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/shadowserver-exploited?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_shadowserver-exploited_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ShadowServerExploitedVulnerability-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"shadowserver-exploited\"","tags":["indices"]}},"/v3/index/shielder":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Shielder Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/shielder?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_shielder_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Shielder-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"shielder\"","tags":["indices"]}},"/v3/index/sick":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sick index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SICK Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sick?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sick_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sick-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sick\"","tags":["indices"]}},"/v3/index/siemens":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Siemens Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/siemens?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_siemens_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SiemensAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"siemens\"","tags":["indices"]}},"/v3/index/sierra-wireless":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sierra Wireless Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sierra-wireless?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sierra-wireless_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SierraWireless-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sierra-wireless\"","tags":["indices"]}},"/v3/index/sigmahq-sigma-rules":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sigma Rules\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sigmahq-sigma-rules?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sigmahq-sigma-rules_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SigmaRule-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sigmahq-sigma-rules\"","tags":["indices"]}},"/v3/index/singcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CSA Alerts and Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/singcert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_singcert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SingCert-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"singcert\"","tags":["indices"]}},"/v3/index/sitecore":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sitecore Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sitecore?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sitecore_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sitecore-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sitecore\"","tags":["indices"]}},"/v3/index/slackware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Slackware Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/slackware?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_slackware_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Slackware-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"slackware\"","tags":["indices"]}},"/v3/index/solarwinds":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SolarWinds Security Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/solarwinds?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_solarwinds_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SolarWindsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"solarwinds\"","tags":["indices"]}},"/v3/index/solr":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the solr index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Solr CVE Reports\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/solr?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_solr_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Solr-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"solr\"","tags":["indices"]}},"/v3/index/sonatype":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sonatype Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sonatype?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sonatype_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sonatype-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sonatype\"","tags":["indices"]}},"/v3/index/sonicwall":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SonicWall Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sonicwall?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sonicwall_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SonicWallAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sonicwall\"","tags":["indices"]}},"/v3/index/spacelabs-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Spacelabs Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/spacelabs-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_spacelabs-healthcare_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SpacelabsHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"spacelabs-healthcare\"","tags":["indices"]}},"/v3/index/splunk":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Splunk Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/splunk?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_splunk_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Splunk-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"splunk\"","tags":["indices"]}},"/v3/index/spring":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the spring index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Spring Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/spring?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_spring_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Spring-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"spring\"","tags":["indices"]}},"/v3/index/ssd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SSD Secure Disclosure Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ssd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ssd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SSDAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ssd\"","tags":["indices"]}},"/v3/index/stormshield":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Stormshield Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/stormshield?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_stormshield_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Stormshield-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"stormshield\"","tags":["indices"]}},"/v3/index/stryker":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Stryker Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/stryker?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_stryker_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_StrykerAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"stryker\"","tags":["indices"]}},"/v3/index/sudo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Sudo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/sudo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_sudo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Sudo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"sudo\"","tags":["indices"]}},"/v3/index/suse":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the suse index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SUSE Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/suse?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_suse_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Cvrf-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"suse\"","tags":["indices"]}},"/v3/index/suse-security":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Suse Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/suse-security?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_suse-security_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SuseSecurity-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"suse-security\"","tags":["indices"]}},"/v3/index/swift":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the swift index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Swift packages with package versions\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/swift?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_swift_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_OSSPackage-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"swift\"","tags":["indices"]}},"/v3/index/swisslog-healthcare":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Swisslog Healthcare CVE Disclosures\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/swisslog-healthcare?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_swisslog-healthcare_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SwisslogHealthcareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"swisslog-healthcare\"","tags":["indices"]}},"/v3/index/symfony":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Symfony Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/symfony?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_symfony_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Symfony-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"symfony\"","tags":["indices"]}},"/v3/index/synacktiv":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Synacktiv Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/synacktiv?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_synacktiv_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Synacktiv-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"synacktiv\"","tags":["indices"]}},"/v3/index/syncrosoft":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** SyncroSoft Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/syncrosoft?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_syncrosoft_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_SyncroSoft-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"syncrosoft\"","tags":["indices"]}},"/v3/index/synology":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the synology index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Synology Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/synology?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_synology_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Synology-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"synology\"","tags":["indices"]}},"/v3/index/syss":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the syss index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Syss Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/syss?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_syss_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Syss-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"syss\"","tags":["indices"]}},"/v3/index/tailscale":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tailscale Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tailscale?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tailscale_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tailscale-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tailscale\"","tags":["indices"]}},"/v3/index/target-intel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the target-intel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Target Intelligence\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/target-intel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_target-intel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Country name ISO-3166?? format","in":"query","name":"country","schema":{"type":"string"}},{"description":"Country code in ISO-3166?? format","in":"query","name":"country_code","schema":{"type":"string"}},{"description":"Autonomous system number","in":"query","name":"asn","schema":{"type":"string"}},{"description":"CPE string","in":"query","name":"cpe","schema":{"type":"string"}},{"description":"Vendor name","in":"query","name":"vendor","schema":{"type":"string"}},{"description":"Product name","in":"query","name":"product","schema":{"type":"string"}},{"description":"Product version","in":"query","name":"version","schema":{"type":"string"}},{"description":"Protocol","in":"query","name":"protocol","schema":{"type":"string"}},{"description":"Transport (tcp/udp)","in":"query","name":"transport","schema":{"type":"string"}},{"description":"Port number","in":"query","name":"port","schema":{"type":"string"}},{"description":"Filter to records that have (true) or do not have (false) an associated CVE","in":"query","name":"contains_cve","schema":{"type":"boolean"}},{"description":"Filter to records with at least one CVE match that is (true) or is not (false) confirmed","in":"query","name":"confirmed","schema":{"type":"boolean"}},{"description":"Match one or more classification values","in":"query","name":"classifications","schema":{"type":"string"}},{"description":"Match a string in the hostname","in":"query","name":"hostname","schema":{"type":"string"}},{"description":"Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix)","in":"query","name":"domain","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_TargetIntel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"target-intel\"","tags":["indices"]}},"/v3/index/teamviewer":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the teamviewer index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TeamViewer Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/teamviewer?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/teamviewer?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_teamviewer_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TeamViewer-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"teamviewer\"","tags":["indices"]}},"/v3/index/tenable-research-advisories":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tenable-research-advisories index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tenable Research Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tenable-research-advisories?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tenable-research-advisories?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tenable-research-advisories_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TenableResearchAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tenable-research-advisories\"","tags":["indices"]}},"/v3/index/tencent":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tencent index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Tencent Vulnerability Risk Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tencent?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tencent?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tencent_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tencent-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tencent\"","tags":["indices"]}},"/v3/index/thales":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the thales index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Thales Security Updates\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/thales?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/thales?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_thales_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Thales-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"thales\"","tags":["indices"]}},"/v3/index/themissinglink":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the themissinglink index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** the missing link Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/themissinglink?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/themissinglink?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_themissinglink_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TheMissingLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"themissinglink\"","tags":["indices"]}},"/v3/index/thermo-fisher":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the thermo-fisher index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Thermo Fisher Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/thermo-fisher?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/thermo-fisher?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_thermo-fisher_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ThermoFisher-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"thermo-fisher\"","tags":["indices"]}},"/v3/index/threat-actors":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the threat-actors index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Threat Actors Data\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/threat-actors?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/threat-actors?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_threat-actors_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ThreatActorWithExternalObjects-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"threat-actors\"","tags":["indices"]}},"/v3/index/ti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Texas Instruments Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ti?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ti_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TI-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ti\"","tags":["indices"]}},"/v3/index/tibco":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tibco index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TIBCO Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tibco?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tibco?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tibco_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Tibco-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tibco\"","tags":["indices"]}},"/v3/index/tp-link":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the tp-link index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** TP-Link Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/tp-link?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/tp-link?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_tp-link_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TPLink-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"tp-link\"","tags":["indices"]}},"/v3/index/trane-technology":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trane-technology index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trane Technology Product Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trane-technology?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trane-technology?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_trane-technology_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TraneTechnology-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"trane-technology\"","tags":["indices"]}},"/v3/index/trendmicro":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trendmicro index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trend Micro Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trendmicro?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trendmicro?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_trendmicro_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TrendMicro-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"trendmicro\"","tags":["indices"]}},"/v3/index/trustwave":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the trustwave index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Trustwave Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/trustwave?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/trustwave?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_trustwave_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Trustwave-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"trustwave\"","tags":["indices"]}},"/v3/index/twcert":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the twcert index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Taiwan CERT Vulnerability Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/twcert?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/twcert?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_twcert_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_TWCertAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"twcert\"","tags":["indices"]}},"/v3/index/ubiquiti":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubiquiti index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubiquiti Security Advisory Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubiquiti?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubiquiti?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ubiquiti_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Ubiquiti-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ubiquiti\"","tags":["indices"]}},"/v3/index/ubuntu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubuntu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubuntu Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubuntu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubuntu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ubuntu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_UbuntuCVE-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ubuntu\"","tags":["indices"]}},"/v3/index/ubuntu-purls":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the ubuntu-purls index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Ubuntu Purls\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/ubuntu-purls?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/ubuntu-purls?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_ubuntu-purls_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_purls_PurlResponse-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"ubuntu-purls\"","tags":["indices"]}},"/v3/index/unify":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the unify index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Unify Product Security Advisories and Security Notes\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/unify?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/unify?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_unify_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Unify-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"unify\"","tags":["indices"]}},"/v3/index/unisoc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the unisoc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** UNISOC Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/unisoc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/unisoc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_unisoc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Unisoc-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"unisoc\"","tags":["indices"]}},"/v3/index/usd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the usd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** usd Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/usd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/usd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_usd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_USD-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"usd\"","tags":["indices"]}},"/v3/index/usom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the usom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** USOM Security Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/usom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/usom?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_usom_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_USOMAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"usom\"","tags":["indices"]}},"/v3/index/vandyke":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vandyke index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VanDyke Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vandyke?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vandyke?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vandyke_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VanDyke-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vandyke\"","tags":["indices"]}},"/v3/index/vapidlabs":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vapidlabs index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VapidLabs Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vapidlabs?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vapidlabs?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vapidlabs_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VapidLabsAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vapidlabs\"","tags":["indices"]}},"/v3/index/vc-cpe-dictionary":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vc-cpe-dictionary index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck CPE Dictionary\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vc-cpe-dictionary?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vc-cpe-dictionary?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vc-cpe-dictionary_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VCCPEDictionary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vc-cpe-dictionary\"","tags":["indices"]}},"/v3/index/vde":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vde index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VDE CERT Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vde?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vde?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vde_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VDEAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vde\"","tags":["indices"]}},"/v3/index/veeam":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the veeam index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Veeam Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/veeam?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/veeam?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_veeam_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Veeam-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"veeam\"","tags":["indices"]}},"/v3/index/veritas":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the veritas index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Veritas Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/veritas?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/veritas?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_veritas_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Veritas-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"veritas\"","tags":["indices"]}},"/v3/index/virtuozzo":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the virtuozzo index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Virtuozzo Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/virtuozzo?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/virtuozzo?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_virtuozzo_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Virtuozzo-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"virtuozzo\"","tags":["indices"]}},"/v3/index/vlc":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vlc index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VLC Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vlc?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vlc?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vlc_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VLC-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vlc\"","tags":["indices"]}},"/v3/index/vmware":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vmware index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VMWare Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vmware?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vmware?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vmware_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VMWareAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vmware\"","tags":["indices"]}},"/v3/index/voidsec":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the voidsec index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VoidSec Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/voidsec?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/voidsec?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_voidsec_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VoidSec-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"voidsec\"","tags":["indices"]}},"/v3/index/vulncheck":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheck-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck\"","tags":["indices"]}},"/v3/index/vulncheck-canaries":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries\"","tags":["indices"]}},"/v3/index/vulncheck-canaries-10d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-10d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (10 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-10d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-10d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries-10d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-10d\"","tags":["indices"]}},"/v3/index/vulncheck-canaries-30d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-30d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (30 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-30d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-30d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries-30d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-30d\"","tags":["indices"]}},"/v3/index/vulncheck-canaries-3d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-3d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (3 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-3d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-3d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries-3d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-3d\"","tags":["indices"]}},"/v3/index/vulncheck-canaries-90d":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-canaries-90d index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Canary Intel (90 day)\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-canaries-90d?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-canaries-90d?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-canaries-90d_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"src_country","schema":{"type":"string"}},{"description":"Country code in ISO-3166 format","in":"query","name":"dst_country","schema":{"type":"string"}},{"description":"Source IP address","in":"query","name":"src_ip","schema":{"type":"string"}},{"description":"Source ASN in format AS12345","in":"query","name":"src_asn","schema":{"type":"string"}},{"description":"Specify an IPv4 or IPv6 CIDR","in":"query","name":"cidr","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnCheckCanary-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-canaries-90d\"","tags":["indices"]}},"/v3/index/vulncheck-config":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-config index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck Configurations\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-config?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-config?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-config_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckConfig-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-config\"","tags":["indices"]}},"/v3/index/vulncheck-cvelist-v5":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-cvelist-v5 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck CVEList V5\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-cvelist-v5?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-cvelist-v5?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-cvelist-v5_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckCVEListV5-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-cvelist-v5\"","tags":["indices"]}},"/v3/index/vulncheck-kev":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-kev index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck KEV\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-kev?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-kev?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-kev_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VulnCheckKEV-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-kev\"","tags":["indices"]}},"/v3/index/vulncheck-nvd":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-nvd index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck NVD\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-nvd?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-nvd?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-nvd_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_CveItemsExtended-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-nvd\"","tags":["indices"]}},"/v3/index/vulncheck-nvd2":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulncheck-nvd2 index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** VulnCheck NVD V2\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulncheck-nvd2?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulncheck-nvd2?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulncheck-nvd2_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_NVD20CVEExtended-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulncheck-nvd2\"","tags":["indices"]}},"/v3/index/vulnerability-aliases":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulnerability-aliases index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vulnerability Aliases\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulnerability-aliases?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulnerability-aliases?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulnerability-aliases_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_api_VulnerabilityAlias-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulnerability-aliases\"","tags":["indices"]}},"/v3/index/vulnrichment":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vulnrichment index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** CISA Vulnrichment\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vulnrichment?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vulnrichment?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vulnrichment_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Vulnrichment-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vulnrichment\"","tags":["indices"]}},"/v3/index/vyaire":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the vyaire index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Vyaire Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/vyaire?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/vyaire?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_vyaire_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_VYAIREAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"vyaire\"","tags":["indices"]}},"/v3/index/watchguard":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the watchguard index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Watchguard Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/watchguard?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/watchguard?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_watchguard_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WatchGuard-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"watchguard\"","tags":["indices"]}},"/v3/index/whatsapp":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the whatsapp index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** WhatsApp Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/whatsapp?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/whatsapp?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_whatsapp_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WhatsApp-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"whatsapp\"","tags":["indices"]}},"/v3/index/wibu":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wibu index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wibu Systems Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wibu?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wibu?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wibu_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wibu-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wibu\"","tags":["indices"]}},"/v3/index/wireshark":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wireshark index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wireshark Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wireshark?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wireshark?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wireshark_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wireshark-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wireshark\"","tags":["indices"]}},"/v3/index/with-secure":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the with-secure index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** With Secure Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/with-secure?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/with-secure?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_with-secure_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WithSecure-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"with-secure\"","tags":["indices"]}},"/v3/index/wolfi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wolfi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wolfi Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wolfi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wolfi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wolfi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wolfi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wolfi\"","tags":["indices"]}},"/v3/index/wolfssl":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wolfssl index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** WolfSSL Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wolfssl?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wolfssl?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wolfssl_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_WolfSSL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wolfssl\"","tags":["indices"]}},"/v3/index/wordfence":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the wordfence index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Wordfence Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/wordfence?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/wordfence?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_wordfence_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Wordfence-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"wordfence\"","tags":["indices"]}},"/v3/index/xen":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xen index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xen Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xen?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xen?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_xen_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xen-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"xen\"","tags":["indices"]}},"/v3/index/xerox":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xerox index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xerox Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xerox?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xerox?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_xerox_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xerox-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"xerox\"","tags":["indices"]}},"/v3/index/xiaomi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xiaomi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xiaomi Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xiaomi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xiaomi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_xiaomi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xiaomi-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"xiaomi\"","tags":["indices"]}},"/v3/index/xylem":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the xylem index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Xylem Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/xylem?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/xylem?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_xylem_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Xylem-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"xylem\"","tags":["indices"]}},"/v3/index/yamaha":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yamaha index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yamaha Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yamaha?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yamaha?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_yamaha_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Yamaha-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"yamaha\"","tags":["indices"]}},"/v3/index/yokogawa":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yokogawa index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yokogawa Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yokogawa?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yokogawa?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_yokogawa_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_YokogawaAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"yokogawa\"","tags":["indices"]}},"/v3/index/yubico":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the yubico index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Yubico Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/yubico?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/yubico?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_yubico_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Yubico-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"yubico\"","tags":["indices"]}},"/v3/index/zdi":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zdi index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zero Day Initiative Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zdi?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zdi?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zdi_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ZeroDayAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zdi\"","tags":["indices"]}},"/v3/index/zebra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zebra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zebra Security Alerts\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zebra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zebra?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zebra_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zebra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zebra\"","tags":["indices"]}},"/v3/index/zebra-eol":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zebra-eol index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zebra End of Life Notices\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zebra-eol?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zebra-eol?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zebra-eol_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_GenericEOL-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zebra-eol\"","tags":["indices"]}},"/v3/index/zeroscience":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zeroscience index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ZeroScience Vulnerabilities\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zeroscience?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zeroscience?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zeroscience_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_ZeroScienceAdvisory-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zeroscience\"","tags":["indices"]}},"/v3/index/zimbra":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zimbra index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zimbra Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zimbra?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zimbra?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zimbra_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zimbra-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zimbra\"","tags":["indices"]}},"/v3/index/zoom":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zoom index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zoom Security Bulletins\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zoom?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zoom?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zoom_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zoom-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zoom\"","tags":["indices"]}},"/v3/index/zscaler":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zscaler index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zscaler Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zscaler?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zscaler?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zscaler_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zscaler-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zscaler\"","tags":["indices"]}},"/v3/index/zuso":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zuso index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** ZUSO Vulnerability Notifications\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zuso?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zuso?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zuso_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zuso-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zuso\"","tags":["indices"]}},"/v3/index/zyxel":{"get":{"description":"### Overview\nThis endpoint allows you to retrieve a paginated list of all documents from the zyxel index. \\\nBy default, a maximum of 100 documents are shown per page.\n\n**Index Description:** Zyxel Security Advisories\n\n### Paging Over Large Data (cursor)\nIn order to allow users to iterate over large index datasets, this endpoint provides a server-side\n\"cursor\" mechanism. To use the cursor, first call `GET /index/zyxel?start_cursor`, the response will\nhave a `next_cursor` id that clients will need to pass as a query parameter to the next request like\n`GET /index/zyxel?cursor=\u003cnext_cursor_id\u003e`\n","operationId":"index_zyxel_get","parameters":[{"description":"set the page number of the response","in":"query","name":"page","schema":{"type":"integer"}},{"description":"limit the number of findings in the response","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"continue server-side paging using a cursor id","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"request server-side paging","in":"query","name":"start_cursor","schema":{"enum":["true"],"type":"string"}},{"description":"direction of the sort","in":"query","name":"order","schema":{"enum":["asc","desc"],"type":"string"}},{"description":"field by which to sort the results","in":"query","name":"sort","schema":{"type":"string"}},{"description":"Specify a CVE ID to search with.","in":"query","name":"cve","schema":{"type":"string"}},{"description":"Specify a vulnerability alias to search with.","in":"query","name":"alias","schema":{"type":"string"}},{"description":"Specify an IAVA ID to search with.","in":"query","name":"iava","schema":{"type":"string"}},{"description":"Specify a JVNDB ID to search with.","in":"query","name":"jvndb","schema":{"type":"string"}},{"description":"Specify an ILVN ID to search with.","in":"query","name":"ilvn","schema":{"type":"string"}},{"description":"Specify a threat actor name to search with.","in":"query","name":"threat_actor","schema":{"type":"string"}},{"description":"Specify a MITRE ID to search with.","in":"query","name":"mitre_id","schema":{"type":"string"}},{"description":"Specify a MISP ID to search with.","in":"query","name":"misp_id","schema":{"type":"string"}},{"description":"Specify a ransomeware family name to search with.","in":"query","name":"ransomware","schema":{"type":"string"}},{"description":"Specify a botnet name to search with.","in":"query","name":"botnet","schema":{"type":"string"}},{"description":"Specify a published date","in":"query","name":"published","schema":{"type":"string"}},{"description":"Specify an exact published date to filter with.","in":"query","name":"date","schema":{"type":"string"}},{"description":"Specify a starting 'updated-at' date to filter with.","in":"query","name":"updatedAtStartDate","schema":{"type":"string"}},{"description":"Specify an ending 'updated-at' date to filter with.","in":"query","name":"updatedAtEndDate","schema":{"type":"string"}},{"description":"Specify a starting last modified date to filter with.","in":"query","name":"lastModStartDate","schema":{"type":"string"}},{"description":"Specify an ending last modified date to filter with.","in":"query","name":"lastModEndDate","schema":{"type":"string"}},{"description":"Specify a starting published date to filter with.","in":"query","name":"pubStartDate","schema":{"type":"string"}},{"description":"Specify an ending published date to filter with.","in":"query","name":"pubEndDate","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_advisory_Zyxel-paginate_Pagination"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return vulnerability data stored in index \"zyxel\"","tags":["indices"]}},"/v3/openapi":{"get":{"description":"Return the VulnCheck API (v3) OpenAPI specification","operationId":"openapi_get","responses":{"200":{"content":{"application/json":{"schema":{"additionalProperties":{},"type":"object"}}},"description":"OK"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return OpenAPI specification","tags":["endpoints"]}},"/v3/pdns/vulncheck-c2":{"get":{"description":"Retrieve a list of hostnames, identified as running Command \u0026 Control infrastructure.","operationId":"pdns_vulncheck-c2_get","parameters":[{"description":"Format of the Hostnames in the response (Defaults To: text)","in":"query","name":"format","schema":{"enum":["txt","json","text"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve a list of C2 Hostnames","tags":["endpoints"]}},"/v3/purl":{"get":{"description":"Based on the specified PURL, this endpoint will return a list of vulnerabilities that are related to the package. We currently support hex, golang, hackage, npm, and pypi","operationId":"purl_get","parameters":[{"description":"URL string used to identify and locate a software package","in":"query","name":"purl","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_PurlResponseData-v3controllers_PurlResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Request vulnerabilities related to a PURL","tags":["endpoints"]}},"/v3/purls":{"post":{"description":"Accepts a JSON array of PURLs in the request body and returns a list of vulnerabilities","operationId":"purls_post","requestBody":{"content":{"application/json":{"schema":{"items":{"type":"string"},"title":"purls","type":"array"}}},"description":"PURL strings used to identify and locate software packages","required":true},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-v3controllers_PurlsResponseData-v3controllers_PurlsResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Request vulnerabilities related to a list of PURLs","tags":["endpoints"]}},"/v3/rules/initial-access/{type}":{"get":{"description":"Retrieve set of initial-access detection rules by type","operationId":"rules_initial-access_type_get","parameters":[{"description":"Type of ruleset to retrieve","in":"path","name":"type","required":true,"schema":{"enum":["snort","suricata"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve set of initial-access detection rules","tags":["endpoints"]}},"/v3/search/cpe":{"get":{"description":"Based on the specified CPE (Common Platform Enumeration) fields, this endpoint will return a list of matching CPEs and the related CVE vulnerabilities.","operationId":"search_cpe_get","parameters":[{"description":"CPE part to lookup","example":"[a]pplication, [o]perating system, [h]ardware","in":"query","name":"part","schema":{"type":"string"}},{"description":"CPE vendor to lookup","in":"query","name":"vendor","schema":{"type":"string"}},{"description":"CPE product to lookup","in":"query","name":"product","schema":{"type":"string"}},{"description":"CPE version to lookup","in":"query","name":"version","schema":{"type":"string"}},{"description":"Filter by vulnerability status (true/false). Defaults to false if not provided.","in":"query","name":"isVulnerable","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-search_Responses-search_ResponseMetadata"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Return CPEs and associated CPEs by searching CPE fields","tags":["endpoints"]}},"/v3/search/cve":{"get":{"description":"Returns all records referencing the specified CVE across all accessible indices. Results are aggregated\nfrom multiple data sources including advisories, exploits, threat intelligence, and vulnerability databases.\nMetadata is returned in the _meta field.","operationId":"search_cve_get","parameters":[{"description":"CVE ID to search for (e.g. CVE-2024-1234)","in":"query","name":"cve","required":true,"schema":{"type":"string"}},{"description":"Page number (default: 1, page mode only)","in":"query","name":"page","schema":{"type":"integer"}},{"description":"Maximum number of results per page (default: 500, max: 1000)","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"Continue cursor paging, or use an empty value to start cursor paging","in":"query","name":"cursor","schema":{"type":"string"}},{"description":"Start cursor paging","in":"query","name":"start_cursor","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/render.ResponseWithMetadata-array_index_CveSearchHit-index_CveSearchMeta"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Unauthorized"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Search all indices for a CVE","tags":["endpoints"]}},"/v3/tags/vulncheck-c2":{"get":{"description":"Retrieve a list of IP addresses, identified as running Command \u0026 Control infrastructure","operationId":"tags_vulncheck-c2_get","parameters":[{"description":"Format of the IP Addresses in the response (Defaults To: text)","in":"query","name":"format","schema":{"enum":["txt","json","text"],"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"OK"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"500":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Internal Server Error"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Retrieve a list of C2 IP addresses","tags":["endpoints"]}},"/v4/advisory":{"get":{"description":"Query the VulnCheck v4 advisory index","operationId":"v4QueryAdvisories","parameters":[{"description":"Filter by advisory feed name (e.g. 'vulncheck')","in":"query","name":"name","schema":{"type":"string"}},{"description":"Filter by CVE ID (e.g. 'CVE-2024-1234')","in":"query","name":"cve_id","schema":{"type":"string"}},{"description":"Filter by vendor name","in":"query","name":"vendor","schema":{"type":"string"}},{"description":"Filter by product name","in":"query","name":"product","schema":{"type":"string"}},{"description":"Filter by OS/platform","in":"query","name":"platform","schema":{"type":"string"}},{"description":"Filter by product version (semver-aware)","in":"query","name":"version","schema":{"type":"string"}},{"description":"Filter by CPE (e.g. 'cpe:2.3:a:vendor:product:*')","in":"query","name":"cpe","schema":{"type":"string"}},{"description":"Filter by package name","in":"query","name":"package_name","schema":{"type":"string"}},{"description":"Filter by package URL (PURL)","in":"query","name":"purl","schema":{"type":"string"}},{"description":"Filter by reference URL","in":"query","name":"reference_url","schema":{"type":"string"}},{"description":"Filter by reference tag (e.g. 'patch', 'advisory')","in":"query","name":"reference_tag","schema":{"type":"string"}},{"description":"Filter by description language (e.g. 'en')","in":"query","name":"description_lang","schema":{"type":"string"}},{"description":"Return advisories updated after this date (RFC3339 or date-math e.g. 'now-30d')","in":"query","name":"updatedAfter","schema":{"type":"string"}},{"description":"Return advisories updated before this date (RFC3339 or date-math)","in":"query","name":"updatedBefore","schema":{"type":"string"}},{"description":"Page number (default: 1)","in":"query","name":"page","schema":{"type":"integer"}},{"description":"Results per page, max 100 (default: 10)","in":"query","name":"limit","schema":{"type":"integer"}},{"description":"Presence activates cursor mode from the first page (value is ignored; cannot be combined with page)","in":"query","name":"start_cursor","schema":{"type":"string"}},{"description":"Cursor from previous response _meta.next_cursor to fetch the next page","in":"query","name":"cursor","schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.V4AdvisoryReturnValue"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Unauthorized"},"402":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Payment Required"},"503":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Query advisories","tags":["advisory"]}},"/v4/advisory/list":{"get":{"description":"Return a list of available advisory feed names","operationId":"v4ListAdvisoryFeeds","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.V4ListFeedReturnValue"}}},"description":"OK"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Bad Request"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Unauthorized"},"402":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Payment Required"},"503":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/search.ErrorResponse"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"List advisory feeds","tags":["advisory"]}},"/v4/backup":{"get":{"description":"Returns the list of advisory feeds for which a backup can be requested","operationId":"v4ListBackups","responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/backup.ListBackupsResponse"}}},"description":"OK"},"401":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Unauthorized"},"503":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"List available backups","tags":["backup"]}},"/v4/backup/{index}":{"get":{"description":"Validates the feed, generates a fresh backup zip if the source parquet is newer, and returns a pre-signed download URL","operationId":"v4GetBackupByName","parameters":[{"description":"Feed name (e.g. 'vulncheck')","in":"path","name":"index","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/backup.BackupResponse"}}},"description":"OK"},"401":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Unauthorized"},"404":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Not Found"},"503":{"content":{"application/json":{"schema":{"type":"string"}}},"description":"Service Unavailable"}},"security":[{"Bearer":[]}],"servers":[{"url":"https://api.vulncheck.com"}],"summary":"Get backup by feed name","tags":["backup"]}}},"servers":[{"url":"https://api.vulncheck.com"}]} \ No newline at end of file diff --git a/poetry.lock b/poetry.lock index 387f56ca..f87254e2 100644 --- a/poetry.lock +++ b/poetry.lock @@ -2,143 +2,143 @@ [[package]] name = "aiohappyeyeballs" -version = "2.6.2" +version = "2.7.1" description = "Happy Eyeballs for asyncio" optional = false python-versions = ">=3.10" groups = ["main"] files = [ - {file = "aiohappyeyeballs-2.6.2-py3-none-any.whl", hash = "sha256:4708045e2d7a6c6bdf8aafa8ed39649eaf926a4543b54560659129e3365953c4"}, - {file = "aiohappyeyeballs-2.6.2.tar.gz", hash = "sha256:e202810ee718bd01fc6ef49e8ea53d023d5cb6b581076d7925aa499fa55dbe64"}, + {file = "aiohappyeyeballs-2.7.1-py3-none-any.whl", hash = "sha256:9243213661e29250eb41368e5daa826fc017156c3b8a11440826b2e3ed376472"}, + {file = "aiohappyeyeballs-2.7.1.tar.gz", hash = "sha256:065665c041c42a5938ed220bdcd7230f22527fbec085e1853d2402c8a3615d9d"}, ] [[package]] name = "aiohttp" -version = "3.14.1" +version = "3.14.3" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.10" groups = ["main"] files = [ - {file = "aiohttp-3.14.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8f6bb621e5863cfe8fe5ff5468002d200ec31f30f1280b259dc505b02595099e"}, - {file = "aiohttp-3.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4f7215cb3933784f79ed20e5f050e15984f390424339b22375d5a53c933a0491"}, - {file = "aiohttp-3.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d9d4e294455b23a68c9b8f042d0e8e377a265bcb15332753695f6e5b6819e0ce"}, - {file = "aiohttp-3.14.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b238af795833d5731d049d82bc84b768ae6f8f97f0495963b3ed9935c5901cc3"}, - {file = "aiohttp-3.14.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e4e5e0ae56914ecdbf446493addefc0159053dd53962cef37d7839f37f73d505"}, - {file = "aiohttp-3.14.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:092e4ce3619a7c6dee52a6bdabda973d9b34b66781f840ce93c7e0cec30cf521"}, - {file = "aiohttp-3.14.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:bb33777ea21e8b7ecde0e6fc84f598be0a1192eab1a63bc746d75aa75d38e7bd"}, - {file = "aiohttp-3.14.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:23119f8fd4f5d16902ed459b63b100bcd269628075162bddac56cc7b5273b3fb"}, - {file = "aiohttp-3.14.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:57fc6745a4b7d0f5a9eb4f40a69718be6c0bc1b8368cc9fe89e90118719f4f42"}, - {file = "aiohttp-3.14.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:6fd35beba67c4183b09375c5fff9accb47524191a244a99f95fd4472f5402c2b"}, - {file = "aiohttp-3.14.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:672b9d65f42eb877f5c3f234a4547e4e1a226ca8c2eed879bb34670a0ce51192"}, - {file = "aiohttp-3.14.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:24ba13339fed9251d9b1a1bec8c7ab84c0d1675d79d33501e11f94f8b9a84e05"}, - {file = "aiohttp-3.14.1-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:94da27378da0610e341c4d30de29a191672683cc82b8f9556e8f7c7212a020fe"}, - {file = "aiohttp-3.14.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:52cdac9432d8b4a719f35094a818d95adcae0f0b4fe9b9b921909e0c87de9e7d"}, - {file = "aiohttp-3.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:672ac254412a24d0d0cf00a9e6c238877e4be5e5fa2d188832c1244f45f31966"}, - {file = "aiohttp-3.14.1-cp310-cp310-win32.whl", hash = "sha256:2fe3607e71acc6ebb0ec8e492a247bf7a291226192dc0084236dfc12478916f6"}, - {file = "aiohttp-3.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:30099eda75a53c32efb0920e9c33c195314d2cc1c680fbfd30894932ac5f27df"}, - {file = "aiohttp-3.14.1-cp310-cp310-win_arm64.whl", hash = "sha256:5a837f49d901f9e368651b676912bff1104ed8c1a83b280bcd7b29adccef5c9c"}, - {file = "aiohttp-3.14.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:aa00140699487bd435fde4342d85c94cb256b7cd3a5b9c3396c67f19922afda2"}, - {file = "aiohttp-3.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1c1af67559445498b502030c35c59db59966f47041ca9de5b4e707f86bd10b5f"}, - {file = "aiohttp-3.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d44ec478e713ee7f29b439f7eb8dc2b9d4079e11ae114d2c2ac3d5daf30516c8"}, - {file = "aiohttp-3.14.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d3b1a184a9a8f548a6b73f1e26b96b052193e4b3175ed7342aaf1151a1f00a04"}, - {file = "aiohttp-3.14.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:5f2504bc0322437c9a1ff6d3333ca56c7477b727c995f036b976ae17b98372c8"}, - {file = "aiohttp-3.14.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:73f05ea02013e02512c3bf42714f1208c57168c779cc6fe23516e4543089d0a6"}, - {file = "aiohttp-3.14.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:797457503c2d426bee06eef808d07b31ede30b65e054444e7de64cad0061b7af"}, - {file = "aiohttp-3.14.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b821a1f7dedf7e37450654e620038ac3b2e81e8fa6ea269337e97101978ec730"}, - {file = "aiohttp-3.14.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4cd96b5ba05d67ed0cf00b5b405c8cd99586d8e3481e8ee0a831057591af7621"}, - {file = "aiohttp-3.14.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1d459b98a932296c6f0e94f87511a0b1b90a8a02c30a50e60a297619cd5a58ee"}, - {file = "aiohttp-3.14.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:764457a7be60825fb770a644852ff717bcbb5042f189f2bd16df61a81b3f6573"}, - {file = "aiohttp-3.14.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f7a16ef45b081454ef844502d87a848876c490c4cb5c650c230f6ec79ed2c1e7"}, - {file = "aiohttp-3.14.1-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:2fbc3ed048b3475b9f0cbcb9978e9d2d3511acd91ead203af26ed9f0056004cf"}, - {file = "aiohttp-3.14.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:bedb0cd073cc2dc035e30aeb99444389d3cd2113afe4ef9fcd23d439f5bade85"}, - {file = "aiohttp-3.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b6feea921016eb3d4e04d65fc4e9ca402d1a3801f562aef94989f54694917af3"}, - {file = "aiohttp-3.14.1-cp311-cp311-win32.whl", hash = "sha256:313701e488100074ce99850404ee36e741abf6330179fec908a1944ecf570126"}, - {file = "aiohttp-3.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:03ab4530fdcb3a543a122ba4b65ac9919da9fe9f78a03d328a6e38ff962f7aa5"}, - {file = "aiohttp-3.14.1-cp311-cp311-win_arm64.whl", hash = "sha256:486f7d16ed54c39c2cbd7ca71fd8ba2b8bb7860df65bd7b6ed640bab96a38a8b"}, - {file = "aiohttp-3.14.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d35143e27778b4bb0fb189562d7f275bff79c62ab8e98459717c0ea617ff2480"}, - {file = "aiohttp-3.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bcfb80a2cc36fba2534e5e5b5264dc7ae6fcd9bf15256da3e53d2f499e6fa29d"}, - {file = "aiohttp-3.14.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:27fd7c91e51729b4f7e1577865fa6d34c9adccbc39aabe9000285b48af9f0ec2"}, - {file = "aiohttp-3.14.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:64c567bf9eaf664280116a8688f63016e6b32db2505908e2bdaca1b6438142f2"}, - {file = "aiohttp-3.14.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:f5e6ff2bdbb8f4cd3fbe41f99e25bbcd58e3bf9f13d3dd31a11e7917251cc77a"}, - {file = "aiohttp-3.14.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2f73e01dc37122325caf079982621262f96d74823c179038a82fddfc50359264"}, - {file = "aiohttp-3.14.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:bb2c0c80d431c0d03f2c7dbf125150fedd4f0de17366a7ca33f7ccb822391842"}, - {file = "aiohttp-3.14.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3e6fc1a85fa7194a1a7d19f44e8609180f4a8eb5fa4c7ed8b4355f080fad235c"}, - {file = "aiohttp-3.14.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:686b6c0d3911ec387b444ddf5dc62fb7f7c0a7d5186a7861626496a5ab4aff95"}, - {file = "aiohttp-3.14.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c6fa4dc7ad6f8109c70bb1499e589f76b0b792baf39f9b017eb92c8a81d0a199"}, - {file = "aiohttp-3.14.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:87a5eea1b2a5e21e1ebdbb33ad4165359189327e63fc4e4894693e7f821ac817"}, - {file = "aiohttp-3.14.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:1c1421eb01d4fd608d88cc8290211d177a58532b55ad94076fb349c5bf467f0a"}, - {file = "aiohttp-3.14.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:34b257ec41345c1e8f2df68fa908a7952f5de932723871eb633ecbbff396c9a4"}, - {file = "aiohttp-3.14.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:de538791a80e5d862addbc183f70f0158ac9b9bb872bb147f1fd2a683691e087"}, - {file = "aiohttp-3.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:6f71173be42d3241d428f760122febb748de0623f44308a6f120d0dd9ec572e3"}, - {file = "aiohttp-3.14.1-cp312-cp312-win32.whl", hash = "sha256:ec8dc383ee57ea3e883477dcca3f11b65d58199f1080acaf4cd6ad9a99698be4"}, - {file = "aiohttp-3.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:2aa92c87868cd13674989f9ee83e5f9f7ea4237589b728048e1f0c8f6caa3271"}, - {file = "aiohttp-3.14.1-cp312-cp312-win_arm64.whl", hash = "sha256:2c840c90759922cb5e6dda94596e079a30fb5a5ba548e7e0dc00574703940847"}, - {file = "aiohttp-3.14.1-cp313-cp313-android_21_arm64_v8a.whl", hash = "sha256:b3a03285a7f9c7b016324574a6d92a1c895da6b978cb8f1deee3ac72bc6da178"}, - {file = "aiohttp-3.14.1-cp313-cp313-android_21_x86_64.whl", hash = "sha256:2a73f487ab8ef5abbb24b7aa9b73e98eaba9e9e031804ff2416f02eca315ccaf"}, - {file = "aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:915fbb7b41b115192259f8c9ae58f3ddc444d2b5579917270211858e606a4afd"}, - {file = "aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:7fb4bdf95b0561a79f259f9d28fbc109728c5ee7f27aff6391f0ca703a329abe"}, - {file = "aiohttp-3.14.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:1b9748363260121d2927704f5d4fc498150669ca3ae93625986ee89c8f80dcd4"}, - {file = "aiohttp-3.14.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:86a6dab78b0e43e2897a3bbe15745aa60dc5423ca437b7b0b164c069bf91b876"}, - {file = "aiohttp-3.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4dfd6e47d3c44c2279907607f73a4240b88c69eb8b90da7e2441a8045dfd21da"}, - {file = "aiohttp-3.14.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:317acd9f8602858dc7d59679812c376c7f0b97bcbbf16e0d6237f54141d8a8a6"}, - {file = "aiohttp-3.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd869c427324e5cb15195793de951295710db28be7d818247f3097b4ab5d4b96"}, - {file = "aiohttp-3.14.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:93b032b5ec3255473c143627d21a69ac74ae12f7f33974cb587c564d11b1066f"}, - {file = "aiohttp-3.14.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f234b4deb12f3ad59127e037bc57c40c21e45b45282df7d3a55a0f409f595296"}, - {file = "aiohttp-3.14.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9af6779bfb46abf124068327abcdf9ce95c9ef8287a3e8da76ccf2d0f16c28fa"}, - {file = "aiohttp-3.14.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:faccab372e66bc76d5731525e7f1143c922271725b9d38c9f97edcc66266b451"}, - {file = "aiohttp-3.14.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f380468b09d2a81633ee863b0ec5648d364bd17bb8ecfb8c2f387f7ac1faf42c"}, - {file = "aiohttp-3.14.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:97e704dcd26271f5bda3fa07c3ce0fb76d6d3f8659f4baa1a24442cc9ba177ca"}, - {file = "aiohttp-3.14.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:269b76ac5394092b95bc4a098f4fc6c191c083c3bd12775d1e30e663132f6a09"}, - {file = "aiohttp-3.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:5c0b3e614340c889d575451696374c9d17affd54cd607ca0babed8f8c37b9397"}, - {file = "aiohttp-3.14.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:5663ee9257cfa1add7253a7da3035a02f31b6600ec48261585e1800a81533080"}, - {file = "aiohttp-3.14.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:603a2c834142172ffddc054067f5ec0ca65d57a0aa98a71bc81952573208e345"}, - {file = "aiohttp-3.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:cb21957bb8aca671c1765e32f58164cf0c50e6bf41c0bbbd16da20732ecaf588"}, - {file = "aiohttp-3.14.1-cp313-cp313-win32.whl", hash = "sha256:e509a55f681e6158c20f70f102f9cf61fb20fbc382272bc6d94b7343f2582780"}, - {file = "aiohttp-3.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:1ac8531b638959718e18c2207fbfe297819875da46a740b29dfa29beba64355a"}, - {file = "aiohttp-3.14.1-cp313-cp313-win_arm64.whl", hash = "sha256:250d14af67f6b6a1a4a811049b1afa69d61d617fca6bf33149b3ab1a6dbcf7b8"}, - {file = "aiohttp-3.14.1-cp314-cp314-android_24_arm64_v8a.whl", hash = "sha256:7c106c26852ca1c2047c6b80384f17100b4e439af276f21ef3d4e2f450ae7e15"}, - {file = "aiohttp-3.14.1-cp314-cp314-android_24_x86_64.whl", hash = "sha256:20205f7f5ade7aaec9f4b500549bbc071b046453aed72f9c06dcab87896a83e8"}, - {file = "aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:62a759436b29e677181a9e76bab8b8f689a29cb9c535f45f7c48c9c830d3f8c3"}, - {file = "aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:2964cbf553df4d7a57348da44d961d871895fc1ee4e8c322b2a95612c7b17fba"}, - {file = "aiohttp-3.14.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:237651caadc3a59badd39319c54642b5299e9cc98a3a194310e55d5bb9f5e397"}, - {file = "aiohttp-3.14.1-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:896e12dfdbbab9d8f7e16d2b28c6769a60126fa92095d1ebf9473d02593a2448"}, - {file = "aiohttp-3.14.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:d03f281ed22579314ba00821ce20115a7c0ac430660b4cc05704a3f818b3e004"}, - {file = "aiohttp-3.14.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:07eabb979d236335fed927e137a928c9adfb7df3b9ec7aa31726f133a62be983"}, - {file = "aiohttp-3.14.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4fe1f1087cbadb280b5e1bb054a4f00d1423c74d6626c5e48400d871d34ecefe"}, - {file = "aiohttp-3.14.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:367a9314fdc79dab0fac96e216cb41dd73c85bdca85306ce8999118ba7e0f333"}, - {file = "aiohttp-3.14.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a24f677ebe83749039e7bdf862ff0bbb16818ae4193d4ef96505e269375bcce0"}, - {file = "aiohttp-3.14.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c83afe0ba876be7e943d2e0ba645809ad441575d2840c895c21ee5de93b9377a"}, - {file = "aiohttp-3.14.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:634e385930fb6d2d479cf3aa66515955863b77a5e3c2b5894ca259a25b308602"}, - {file = "aiohttp-3.14.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:eeea07c4397bbc57719c4eed8f9c284874d4f175f9b6d57f7a1546b976d455ca"}, - {file = "aiohttp-3.14.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:335c0cc3e3545ce98dcb9cfcb836f40c3411f43fa03dab757597d80c89af8a35"}, - {file = "aiohttp-3.14.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:ae6be797afdef264e8a84864a85b196ca06045586481b3df8a967322fd2fa844"}, - {file = "aiohttp-3.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:8560b4d712474335d08907db7973f71912d3a9a8f1dee992ec06b5d2fe359496"}, - {file = "aiohttp-3.14.1-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7edd08e0a5deb1e8564a2fcd8f4561014a3f05252334671bbf55ddd47db0e5"}, - {file = "aiohttp-3.14.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:b6ff7fcee63287ae57b5df3e4f5957ce032122802509246dec1a5bcc55904c95"}, - {file = "aiohttp-3.14.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6ffbb2f4ec1ceaff7e07d43922954da26b223d188bf30658e561b98e23089444"}, - {file = "aiohttp-3.14.1-cp314-cp314-win32.whl", hash = "sha256:a9875b46d910cff3ea2f5962f9d266b465459fe634e22556ab9bd6fc1192eea0"}, - {file = "aiohttp-3.14.1-cp314-cp314-win_amd64.whl", hash = "sha256:af8b4b81a960eeaf1234971ac3cd0ba5901f3cd42eae42a46b4d089a8b492719"}, - {file = "aiohttp-3.14.1-cp314-cp314-win_arm64.whl", hash = "sha256:cf4491381b1b57425c315a56a439251b1bdac07b2275f19a8c44bc57744532ec"}, - {file = "aiohttp-3.14.1-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:819c054312f1af92947e6a55883d1b66feefab11531a7fc45e0fb9b63880b5c2"}, - {file = "aiohttp-3.14.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:10ee9c1753a8f706345b22496c79fbddb5be0599e0823f3738b1534058e25340"}, - {file = "aiohttp-3.14.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1601cc37baf5750ccacae618ec2daf020769581695550e3b654a911f859c563d"}, - {file = "aiohttp-3.14.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4d6e0ac9da31c9c04c84e1c0182ad8d6df35965a85cae29cd71d089621b3ae94"}, - {file = "aiohttp-3.14.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:9e8f2d660c350b3d0e259c7a7e3d9b7fc8b41210cbcc3d4a7076ff0a5e5c2fdc"}, - {file = "aiohttp-3.14.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4691802dda97be727f79d86818acaad7eb8e9252626a1d6b519fedbb92d5e251"}, - {file = "aiohttp-3.14.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c389c482a7e9b9dc3ee2701ac46c4125297a3818875b9c305ddb603c04828fd1"}, - {file = "aiohttp-3.14.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fc0cacab7ba4e56f0f81c82a98c09bed2f39c940107b03a34b168bdf7597edd3"}, - {file = "aiohttp-3.14.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:979ed4717f59b8bb12e3963378fa285d93d367e15bcd66c721311826d3c44a6c"}, - {file = "aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:38e1e7daaea81df51c952e18483f323d878499a1e2bfe564790e0f9701d6f203"}, - {file = "aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:4132e72c608fe9fecb8f409113567605915b83e9bdd3ea56538d2f9cd35002f1"}, - {file = "aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:eefd9cc9b6d4a2db5f00a26bc3e4f9acf71926a6ec557cd56c9c6f27c290b665"}, - {file = "aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:b165790117eea512d7f3fb22f1f6dad3d55a7189571993eb015591c1401276d1"}, - {file = "aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:ed09c7eb1c391271c2ed0314a51903e72a3acb653d5ccfc264cdf3ef11f8269d"}, - {file = "aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:99abd37084b82f5830c635fddd0b4993b9742a66eb746dacf433c8590e8f9e3c"}, - {file = "aiohttp-3.14.1-cp314-cp314t-win32.whl", hash = "sha256:47ddf841cdecc810749921d25606dee45857d12d2ad5ddb7b5bd7eab12e4b365"}, - {file = "aiohttp-3.14.1-cp314-cp314t-win_amd64.whl", hash = "sha256:5e78b522b7a6e27e0b25d19b247b75039ac4c94f99823e3c9e53ae1603a9f7e9"}, - {file = "aiohttp-3.14.1-cp314-cp314t-win_arm64.whl", hash = "sha256:90d53f1609c29ccc2193945ef732428382a28f78d0456ae4d3daf0d48b74f0f6"}, - {file = "aiohttp-3.14.1.tar.gz", hash = "sha256:307f2cff90a764d329e77040603fa032db89c5c24fdad50c4c15334cba744035"}, + {file = "aiohttp-3.14.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:eb0495d778817619273c108784292be161a924b9f5ae5cbbc70a2caa6838250b"}, + {file = "aiohttp-3.14.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c3c200cf9757edd785051dc699c7ecbec22110dbfcb3fefc7a9f9695eda8ea7a"}, + {file = "aiohttp-3.14.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd51ebf9d3a00c074df4ede271023f4d2dba289bcc740b88191872716014e3c5"}, + {file = "aiohttp-3.14.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:134ac5ddcf61c6fad984b9a5727d83492ada43d63471db20fb73042c13fca62f"}, + {file = "aiohttp-3.14.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:70c987b27534f9ae1a723f47ae921571d616da21d3208282bf4c52af5164ac43"}, + {file = "aiohttp-3.14.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1b59533861b70a2185c8f4f350f791f39d64358ef6944ce71c5240c9ec0982c9"}, + {file = "aiohttp-3.14.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1c5281acc88b92396f88c7e1e2748f8466689df22b80170e4f51efa712fb47a8"}, + {file = "aiohttp-3.14.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:48d67b87db6279c044760787eb01f6413032c2e6f3ba1cafaa492b1c8e578479"}, + {file = "aiohttp-3.14.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f53bcd52f585e1ac3e590d61434eb61f9a88c38df041b4ea126d97144344a77b"}, + {file = "aiohttp-3.14.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0fdea2281997af69da84c77ffa6f5938a0285f21fb3887c249d67419ca865b3d"}, + {file = "aiohttp-3.14.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:cda5fd5c95ad7a125a2e8464acc78b98b94c475a3780d6aa0aa157c93f470f4d"}, + {file = "aiohttp-3.14.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:6debfa7312ff9d4c124dc71d72e9a0a4b9e0879e48ba6fcb42bef5c3300289e2"}, + {file = "aiohttp-3.14.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:f4e05329faa0ea1a404b37de4f034fd2c2defcca06a68dc6745e4e56c88e8a48"}, + {file = "aiohttp-3.14.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:a3a8296e7ab5c295f53f1041487cb088e1480775aafbf7fe545d93b770a0f96f"}, + {file = "aiohttp-3.14.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5373dc80ad1aa2fb9ad95c83f24eef418bbda3a61375f128e5b0192e4f3f9b32"}, + {file = "aiohttp-3.14.3-cp310-cp310-win32.whl", hash = "sha256:a3e22975f905b89a55a488c2a08f2fdb2186175349e917d48985cc468a3d4c6e"}, + {file = "aiohttp-3.14.3-cp310-cp310-win_amd64.whl", hash = "sha256:bdd0e2834dce1a26c1bbe26464861e16bbe217042cbff619247c11594472518c"}, + {file = "aiohttp-3.14.3-cp310-cp310-win_arm64.whl", hash = "sha256:eac645b09bcfdf73df7536331f0678c1086ea250981118ddb5199e17ccef72bb"}, + {file = "aiohttp-3.14.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e568e14940c09955aa51f4e645b6daa18a581c5dcfcd73744dcc86a856e3ced3"}, + {file = "aiohttp-3.14.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:54cfcdee2770dac994417cbb0ee1f3eb0e7cb6b30c79bf44f2c02ff79ec5124a"}, + {file = "aiohttp-3.14.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:21c016079415ed3fd676963e9793700a566d85dbbd6bfc564b9b2d209147dcc8"}, + {file = "aiohttp-3.14.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d6088ec9894113802bddb3c09e974929aed2c7b3a8c456219b8aab4481f1a239"}, + {file = "aiohttp-3.14.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:16ea7e24c309fb7c0bbd505d149abe4fe4dccfb8db911db7dbec0921bc889a6f"}, + {file = "aiohttp-3.14.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:56f355e79f71aef2a85c80305cc915f894b170dba76de5fe84f6351939b83c06"}, + {file = "aiohttp-3.14.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:18c441d0a8fca6de8d1f546849b9f0ab20d435993e2c5b59562b2fae6be2f929"}, + {file = "aiohttp-3.14.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:53e7b4ce82b54a8bcc71b3b67a5cbd177ca1d7f592cbc92cd38b7349f73482db"}, + {file = "aiohttp-3.14.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f55119f7bf25f49ed210f6096090715da24f2943c62102448915fde3c62877ce"}, + {file = "aiohttp-3.14.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9aa6e61fdf20105c4144e755bd586008ff450791d67b1c8146fdc15959c4d51c"}, + {file = "aiohttp-3.14.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ccd4893707b3e2a13e39c90d43cf80edf2e4d0457935bcc103bf2346214c3f15"}, + {file = "aiohttp-3.14.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b2466434105a4e03113c36ec775cc2ebe6676b62eae326fa670bb607ef788c1c"}, + {file = "aiohttp-3.14.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:ba59d59aba08ac02fc03b0c8983ccd5ee39a199d0552ce9e6d2b4845b34d59ae"}, + {file = "aiohttp-3.14.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:ed099d105449c4f9e84f24af203cd131349d4761d8813fa7e02c32e7128cd910"}, + {file = "aiohttp-3.14.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:152516815ef926786a0b6ae2b8f1fd2e0c71582dee0b435636865316fd4891b7"}, + {file = "aiohttp-3.14.3-cp311-cp311-win32.whl", hash = "sha256:a4af35c443e0b1a1bd6a8af3f3485d7fda15c142751a00f3ff8090f0b93346fa"}, + {file = "aiohttp-3.14.3-cp311-cp311-win_amd64.whl", hash = "sha256:e1e74298bab6ee0d6e749ed4fd1901c7e604bdda32c03d787a2cc71c46d0433d"}, + {file = "aiohttp-3.14.3-cp311-cp311-win_arm64.whl", hash = "sha256:03cd2bde3d7f085b64e549c985f4bb928cad7e8ecf5323bfca320db548d81b39"}, + {file = "aiohttp-3.14.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:39aded8c7f3b935b54aab1d8d73c70ec0ee2d3ec3b943e0e86611bc150ba47f5"}, + {file = "aiohttp-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5bcb6ff3fdab1258a192679ff1a05d44f59626430aa05cd1a9d2447423599228"}, + {file = "aiohttp-3.14.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:617105e2c3018ee38d0c8ce5ee3c84f621a6d8b9f723202aacaff28449ca91ee"}, + {file = "aiohttp-3.14.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f631fe87a6f30df5fbe6d79640b25e4cffb38c31c7fb6f10871517b84b0f8c1a"}, + {file = "aiohttp-3.14.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a94dbaae5ae27bd849c93570669bff91e0510f33a80805738e3de72a7be0447b"}, + {file = "aiohttp-3.14.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8f2f1c4c032c7cedd7d8da6f54c97b70266c6570c3108d3fdffee7188bb70529"}, + {file = "aiohttp-3.14.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ea05e1f97ceea523942d9b2a7d7c0359d781d683d6b043f5943a602b14da4787"}, + {file = "aiohttp-3.14.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:543906c127fb1d929b95076db19b83fa2d46751006ff1e23b093aa5ac4d8db42"}, + {file = "aiohttp-3.14.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0a5ff2dfbb9ce645fa5b8ef3e02c6c0b9cc3f6030ff863d0c51fffc50cb5541b"}, + {file = "aiohttp-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:041badb8f84396357c4d3ad26de6afd7a32b112f43d3c63045c0c8278cfd2043"}, + {file = "aiohttp-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:530125ee1163c4219af35dc3aa1206e541e7b31b6efc1a3f93b70a136f65d427"}, + {file = "aiohttp-3.14.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c8653fd547c93a61aadc612007790f5555cdd18946fa48cf45e26d8ea4ea473d"}, + {file = "aiohttp-3.14.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:89176250f686cb9853c0fb7ead90e639e915b84a6f43eedc2a4e7ec21f1037f0"}, + {file = "aiohttp-3.14.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:3a26434dafe408229ff3403458ca58de24fb51936504decac49ce6755f77e59d"}, + {file = "aiohttp-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d1558173930a5a8d3069cee5c92fc91c87c4dbcb099debbb3622053717145a19"}, + {file = "aiohttp-3.14.3-cp312-cp312-win32.whl", hash = "sha256:16100ad3ab8d649fdfbee87602d9d2dcdca9df0b9eda8a1b5fdc0d41f96da559"}, + {file = "aiohttp-3.14.3-cp312-cp312-win_amd64.whl", hash = "sha256:33a2d7c28d33797a2e99923dffa63f83d908a19b6bf26cfe80fa790aa5e1a75a"}, + {file = "aiohttp-3.14.3-cp312-cp312-win_arm64.whl", hash = "sha256:362a3fd481769cac1a824514bcd86fda51c65e8fe6e051099e008fddde6db17c"}, + {file = "aiohttp-3.14.3-cp313-cp313-android_21_arm64_v8a.whl", hash = "sha256:2e9878ae68e4a5f1c0abe4dd497dbc3d51946f5837b56759e2a02e78fa90ef86"}, + {file = "aiohttp-3.14.3-cp313-cp313-android_21_x86_64.whl", hash = "sha256:f3d2669fe7dec7fc359ecdb5984b29b50d85d5d00f8c1cb61de4f4a24ee42627"}, + {file = "aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:cc7cb243a68167172f48c1fd43cee91ec4b1d40cefd190edd43369d1a6bc9c82"}, + {file = "aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:78253b573e6ffab5028924fc98bc281aae05445969982a10864bc360dea2016c"}, + {file = "aiohttp-3.14.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:7041d52c3a7fa20c9e8c182b534704abb19502c8bdcbde7ab23bfda6f642394f"}, + {file = "aiohttp-3.14.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ac74facc01463f138b0da5580329cfcc82818dea5656e83ddcd11268fc12ff80"}, + {file = "aiohttp-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d6218d92e450824e9b4881f44e8c09f1853b490f9a64130801024a4793b1b3b0"}, + {file = "aiohttp-3.14.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:11fb37ef075669eee52ab1928fbf6e1741fada40409fa309ebde9607a962aebf"}, + {file = "aiohttp-3.14.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:55bdcc472aafe2de4a253045cc128007a64f1e0264fb675791e132ea5edaa3bd"}, + {file = "aiohttp-3.14.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c39846c3aad97a8530c89d7a3869a8f8e9e3762c6ac0504481e5c80948f7e807"}, + {file = "aiohttp-3.14.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5895ef58c4620afe02fa16044f023dc4dafec08158f9d08874a46a7dbc0341b8"}, + {file = "aiohttp-3.14.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:fa9467a8113aa69d3d7c55a70ef0b7c636010a40993f3df9d9d0d73b3eb7ef24"}, + {file = "aiohttp-3.14.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d7d2deec16eeedf55f2c7cf75b521ea3856a5177e123844f8fd0f114ce252cb5"}, + {file = "aiohttp-3.14.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:dd54d0e8717de95939766febac482ac0474d8ac3b048115f9f2b1d23a16e7db4"}, + {file = "aiohttp-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:df82f3787c940c94986b34222d59c9e38843fba85139f36e85255a82ad5355a9"}, + {file = "aiohttp-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:42a67efc36300d052fb4508a53e8b6901b9284b599ae63945c377569c5fcc1e1"}, + {file = "aiohttp-3.14.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7a75aa63cbf9b21cfaf60dc2657e19df2c2867d91707d653fee171ffeedd1371"}, + {file = "aiohttp-3.14.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:e92eb8acc45eb6a9f4935071a77edf5b85cc6f8dfad5cd99e97653c26593cdde"}, + {file = "aiohttp-3.14.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b014a6ed7cf912e787149fdc529166d3ceabac23f26efeea3158c9aba2354e7e"}, + {file = "aiohttp-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3d4f72af88ac2474bb5bca640030320e3d38a0163a1d7533500e87be458eef71"}, + {file = "aiohttp-3.14.3-cp313-cp313-win32.whl", hash = "sha256:5f08ec777f35ee70720233b8b9811d3bb5d728137f30ac91b7457709c3261ac0"}, + {file = "aiohttp-3.14.3-cp313-cp313-win_amd64.whl", hash = "sha256:dff9461ec275f22135650d5ba4b4931a11f3958df7dfbb8db630000d4dee0883"}, + {file = "aiohttp-3.14.3-cp313-cp313-win_arm64.whl", hash = "sha256:ddcac3c6b382e81f1dd0499199d4136b877beb4cb5ef770bbbfba56c4b8f55d2"}, + {file = "aiohttp-3.14.3-cp314-cp314-android_24_arm64_v8a.whl", hash = "sha256:49f7325beb0f85ef4aef5f48f490269575f83e6e2acad00a1d80b807eb027062"}, + {file = "aiohttp-3.14.3-cp314-cp314-android_24_x86_64.whl", hash = "sha256:e3be98a7c30b8c25d573dafba7171d66dfb05ee6a9070fc46535464ff97700a6"}, + {file = "aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:614c61d478b83953e261d02bb2df750f17227cd33ef8002945bf5aebbde21919"}, + {file = "aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:1caa7b0d05f3e3a36f87788c59e970a7ee1cefcfcbb924a9f138c4a6551c9cb7"}, + {file = "aiohttp-3.14.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:dfa68deb2a443bdaa3ea5297b0699c1464f08aef3812b486d1348eee61b07dc0"}, + {file = "aiohttp-3.14.3-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:e72ee89e28d907a18f46959b4eb0bb06701cc7f8cf4366e00029e2ccfaaf5924"}, + {file = "aiohttp-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:ad4c8b7488d745d2ca4838ebd8ae5ba9b56341d30b1da43640e4ce87f9f49646"}, + {file = "aiohttp-3.14.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:db332af25642007330fca8be5c4d194caf2bea7a7fc84415aff3497af5dfee6b"}, + {file = "aiohttp-3.14.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:25bd2708db6bdf6a6630dd37bdcdfcb47c4434d22ac69c64665b802910140b30"}, + {file = "aiohttp-3.14.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:cef89a58e628c4efcac3275c2d68083f82426dcdc89c1492a6f654f9f7ea6ab9"}, + {file = "aiohttp-3.14.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c23ec8ee9d5ab2f5421f9c7fffce208435607af27fd46d4a44e031954352838f"}, + {file = "aiohttp-3.14.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e2667f0bbe7eb6c74eae5e9691441ad186e5845ca3cff63230fc09c4e7514f5d"}, + {file = "aiohttp-3.14.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:18cb43369747b2ae007bd2655fb8e63a099c2ff1d207962943636dac989b3147"}, + {file = "aiohttp-3.14.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d77640cc618c1d99fc4f8589c0f24a730adfa54eb1e57ef7bf0c8dfb78da898c"}, + {file = "aiohttp-3.14.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:53e5179d8abb5710f8e83ba207c41c8d1261fcffd4616500e15ca2b7a33be10a"}, + {file = "aiohttp-3.14.3-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:cd817772b2fcf2b8c0905795318485f9ec16eae60b29feb7f4c77085311637f0"}, + {file = "aiohttp-3.14.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:4e3ac92d90e92773b2362d506068e9a948192bd553e743c5b2429e28527c8661"}, + {file = "aiohttp-3.14.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:3f42e9b78301f11c8f861746175d8b9c1ccef713fcad9eab396e2f6db8ed4a22"}, + {file = "aiohttp-3.14.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:9d9edccfe496b476db5f398d97b865e9a6752bcf8aec4eef8390ce20fb64bb41"}, + {file = "aiohttp-3.14.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:1c5ec8fb1bcc31a8466f74aaf26c345d5c386fa4bd08a3f0eb9c7a4a3fe8b5bf"}, + {file = "aiohttp-3.14.3-cp314-cp314-win32.whl", hash = "sha256:38901a84da3ce22249f6e860bf8f90d141bcab7da090cc398f8bb58c0e44b7da"}, + {file = "aiohttp-3.14.3-cp314-cp314-win_amd64.whl", hash = "sha256:8b3b60de05f3dcb6f6a00f818bb2ec781cee4de0645f59ccaf99b1d1823b6100"}, + {file = "aiohttp-3.14.3-cp314-cp314-win_arm64.whl", hash = "sha256:1576145bdceeb92382d899751e12743a3a5b8e460a841e3e50543859e54864dc"}, + {file = "aiohttp-3.14.3-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:8800c996b01c2772a783e3e46f3e1abd5823029adca0df54231960de9bfefa5b"}, + {file = "aiohttp-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:ebe8e504f058fe91223351cecd2d9d6946c9d241bb0250d898ffbdf584cc72b0"}, + {file = "aiohttp-3.14.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:30402d03a7c0ff52bce290b57e564e9079fd9d0cb545c8aba73f86a103162d2e"}, + {file = "aiohttp-3.14.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9fc7b5bfec6573f3ae844f457fdde5adeb713f8b8e4a81ad64fc207b49383716"}, + {file = "aiohttp-3.14.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:8a5fd34f7f7410d1730d5c2ba873cacb2eed3fede366feb268a70ba22581ed8f"}, + {file = "aiohttp-3.14.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:270d3dace9ca2f10f0da5d8ebe519b7a310fc6112ed916e32df5866df0888553"}, + {file = "aiohttp-3.14.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3ae5b3a59436d089b5395d910121a390feed4d00578eb95a0fd1a329fe963100"}, + {file = "aiohttp-3.14.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2498f0fe69ead802f9675beca44a7c21c62fdaa4ec5145ea1c3ad6edbee29f85"}, + {file = "aiohttp-3.14.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a0dc483c00da8b673abbb367eb6f8d8f4bcec30eb58529ea13cb42e7fd2dfa33"}, + {file = "aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:c7d3a97c678d34fc5b59da671ee9cd630096ddc643e7b5a30d54a2a6f3574d3f"}, + {file = "aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:f8fb78a83c9e5f741ca3a68cfb455c1f5bb83b4e7249a3848b3cd78d0a8563b0"}, + {file = "aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:74ab5b6a9fb13e873e5a90946588baecaf488745e1db1a4a5c433f971f035098"}, + {file = "aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:bd52f811e65f6fb634b1047159657c98f52b407f8efec907bcfc09da9a4c0a25"}, + {file = "aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:f0f177d1b195b9e06376cfd7d308d8a1b920909a609d03ac82a8c73bbb16d3b9"}, + {file = "aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:498c6c623134f8e09a3c4e60bcd607a0b4590dd7dbf08dd40851b27cbb520ccb"}, + {file = "aiohttp-3.14.3-cp314-cp314t-win32.whl", hash = "sha256:b304db572b4368edd8dda8a2274f73156fe15558fca4a917cb8a09fc47af5963"}, + {file = "aiohttp-3.14.3-cp314-cp314t-win_amd64.whl", hash = "sha256:b20032766aedf6261c7a566585a40867d092ac03a0d81592d5370ef9b054f99b"}, + {file = "aiohttp-3.14.3-cp314-cp314t-win_arm64.whl", hash = "sha256:2e1161602f45a54de2ce0905243a95f58cb42dcd378402f3697f5e0b21e9d2e7"}, + {file = "aiohttp-3.14.3.tar.gz", hash = "sha256:9491196535a88924a60afd5b5f434b5b203b6cc616250878dbdb223a8f7844bc"}, ] [package.dependencies] @@ -187,57 +187,58 @@ typing-extensions = {version = ">=4.2", markers = "python_version < \"3.13\""} [[package]] name = "annotated-types" -version = "0.7.0" +version = "0.8.0" description = "Reusable constraint types to use with typing.Annotated" optional = false -python-versions = ">=3.8" +python-versions = ">=3.10" groups = ["main"] files = [ - {file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"}, - {file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"}, + {file = "annotated_types-0.8.0-py3-none-any.whl", hash = "sha256:f072f4d804ea359e4eaf198b1af7a8b0943881a87f31bb764f8bf219bb9419e0"}, + {file = "annotated_types-0.8.0.tar.gz", hash = "sha256:13b2beaad985e05e2d6407ee4c4f35590b11f8d693a258a561055cac8f64cab7"}, ] [[package]] name = "ast-serialize" -version = "0.5.0" +version = "0.6.0" description = "Python bindings for mypy AST serialization" optional = false python-versions = ">=3.7" groups = ["dev"] files = [ - {file = "ast_serialize-0.5.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:8f5c14f169eb0972c0c21bada5358b23d6047c76583b005234f865b11f1fa00a"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7d1a2de9de5be04652f0ed60738356ef94f66db37924a9499fffe98dc491aa0b"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be5173fb66f9b49026d9d5a2ff0fc7c7009077107c0eb285b2d60fdf1fe10bd1"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f8015cd071ac1339924ee2b8098c93e00e155f30a16f40ec9816fcf84f4753f6"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5499e8797edff2a9186aa313ed382c6b422e798e9332d9953badcee6e69a88f2"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6848f2a093fb5548751a9a09bff8fcd229e2bbeb0e3331f391b6ae6d26cd9903"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:832d4c998e0b091fd60a6d6bceee535483c4d490de9ba85003af835225719261"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:16db7c62ec0b8efe1d7afd283a388d8f74f2605d56032e5a37747d2de8dba027"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:baf5eb061eb5bccade4128ad42da33787d72f6013809cd1b590376ece8b3c937"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:104e4a35bd7c124173c41760ef9aaea17ddb3f86c65cb643671d59afbe3ee94c"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:36be371028fc1675acb38a331bde160dbab7ff907fdf00b67eb6911aa106951b"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:061ee58bdb52341c8201a6df41182a977736bae3b7ded87ca7176ca25a8a47ab"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:b15219e9cdc9f53f6f4cb51c009203507228226148c05c5e8fe451c28b435eb3"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-win32.whl", hash = "sha256:842d1c004bb466c7df036f95fabef789570541922b10976b12f5592a69cf0b38"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b0c06d760909b095cc466356dfccd05a1c7233a6ca191c020dca2c6a6f16c24c"}, - {file = "ast_serialize-0.5.0-cp314-cp314t-win_arm64.whl", hash = "sha256:787baedb0262cc49e8ce37cc15c00ae818e46a165a3b36f5e21ed174998104cb"}, - {file = "ast_serialize-0.5.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:0668aa9459cfa8c9c49ddd2163ebcf43088ba045ef7492af6fe22e0098303101"}, - {file = "ast_serialize-0.5.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:bf683d6363edf2b39eed6b6d4fe22d34b6203867a67e27134d9e2a2680c4bc4a"}, - {file = "ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cc22cf0c9be65e71cf88fda130af60d61eb4a79370ad4cfe7900d48a4aa2211"}, - {file = "ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f66173891548c9f2726bf27957b41cabce12fa679dc6da505ddbde4d4b3b31cf"}, - {file = "ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e42d729ef2be96a14efbad355093284739e3670ece3e534f82cc8832790911d9"}, - {file = "ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b725026bafa801dbd7310eb13a75f0a2e370e7e51b2cb225f9d21fcfadf919ee"}, - {file = "ast_serialize-0.5.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b54f60c1d78767a53b67eaa663f0dfac3afe606aa07f1301572f588b73d64809"}, - {file = "ast_serialize-0.5.0-cp39-abi3-manylinux_2_31_riscv64.whl", hash = "sha256:27d51654fc240a1e87e742d353d98eb45b75f62f129086b3596ab53df2ac2a43"}, - {file = "ast_serialize-0.5.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2782c36237c46dd1674542f2109740ea5ea485a169bf1431939ada0434e17934"}, - {file = "ast_serialize-0.5.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:1943db345233cc7194a470f13afa9c59772c0b123dea0c9414c4d4ca54369759"}, - {file = "ast_serialize-0.5.0-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:df1c00022cbbcb064bfaa505aa9c9295362443ce5dacb459d1331d3da353f887"}, - {file = "ast_serialize-0.5.0-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:cae65289fc456fde04af979a2be09302ef5d8ab92ef23e596d6746dc267ada27"}, - {file = "ast_serialize-0.5.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:239a4c354e8d676e9d94631d1d4a64edc6b266f86ff3a5a80aedd344f342c01d"}, - {file = "ast_serialize-0.5.0-cp39-abi3-win32.whl", hash = "sha256:143a4ef63285a075871908fda3672dc21864b83a8ec3ee12304aa3e4c5387b9a"}, - {file = "ast_serialize-0.5.0-cp39-abi3-win_amd64.whl", hash = "sha256:cf25572c526add400f26a4750dc6ce0c3bb93fc1f75e7ae0cad4ce4f2cd5c590"}, - {file = "ast_serialize-0.5.0-cp39-abi3-win_arm64.whl", hash = "sha256:92a31c9c20d25a076edaeec76b128a3535d74a24f340b9a8a7e96c9b86dc9642"}, - {file = "ast_serialize-0.5.0.tar.gz", hash = "sha256:5880091bfe6f4f986f22866375c2e884843e7a0b6343ae41aeea659613d879b6"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:a7520b672827885bafeae7501f684d14d47d17e5f45256f9df547686cca52264"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a14191beec7e0c078d2fc1f6edc0aee88bcd4db9f18e1bc9f8052b559c22dddc"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32ef62ec34cf6be20ad77d4799556638fbdf187f3ae10698dfb20ef9f2c89516"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:13b7769970a39983b0adf2f38917b1cd3b8946f76df045756c3d741bc689f089"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6f7a408601bb3edaefb3bc67a4c01f5235e3253653b6a5729a2ee2382b35341c"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8670bfa51208a2c0c8d138928e40e998fab158f9200d53bb80c088b5b8eda7b8"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4826809eb8597a8cd59fd924b6d7c285b8969a1e0007e2cb652cab62376270f"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:577a6c189068686869f5f1ddc38363f3ae1808a4753b577266f9202071a7bb66"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:085de7f62dc9cc247eb01e965a362707d1d90b1d89a82c5bf78301a60a3c417b"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:9f8a8b78b13173de6a9ec22111d9be674874cd5bdccda04f14ae5ebc2bef403a"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:f2ff3baffc3a29c1f15bc9098aa0c09763410262d5e6cef42116f7356c184554"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:0067b25fce104eaae5b88383de9ab803faeb671831e14ca698b771b356e2600f"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c617417f9cbb0cb144f6283c3cbe0d2e0f01beaf9f608f662b21191058a626ec"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-win32.whl", hash = "sha256:5337cb256dcea3df9288205213d1601581536526b8f4da44b6974f1180f3252a"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2d947e45cafc4b09bd7528917fa84c517654a43de173c79785574b7b3068ac24"}, + {file = "ast_serialize-0.6.0-cp314-cp314t-win_arm64.whl", hash = "sha256:6e15ec740436e1a0d62de848641abe5f3a2f89a7f94907d534795ac91bbacf14"}, + {file = "ast_serialize-0.6.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:093cb8bb91b720d8523580498d031791bb1bbaa048599c3d21085d380e11a596"}, + {file = "ast_serialize-0.6.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:e61580a69faf47e3689795367ed211f2a10fd741478cc0f36a0f128793360aad"}, + {file = "ast_serialize-0.6.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:305802f2ce2a7c4e87835078ea85c58b586ddda8095b92fe2ead9364ae19c80a"}, + {file = "ast_serialize-0.6.0-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c7b8b8f0c42f752ea00b2b7d7c090b3f80d9c1c5c75cadf16423790a0cc74081"}, + {file = "ast_serialize-0.6.0-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cd5b91b9e6f2356ace3a556963b0cd783b395fbbb0bb17b4defc283415466e77"}, + {file = "ast_serialize-0.6.0-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d6ef91590258ada18909b9caea344dac4de2013906b035473cd674a43f4b790"}, + {file = "ast_serialize-0.6.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcbed41e9386059fc0261d602445ede0976c2ecec2939688bcbcb9ed0b6f28b7"}, + {file = "ast_serialize-0.6.0-cp39-abi3-manylinux_2_31_riscv64.whl", hash = "sha256:cdc4e6f930b9090c2f92c9036ad12ffb8e6e44d4a5ba06f1458a05d60f203f7b"}, + {file = "ast_serialize-0.6.0-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:897ac47b5637be41c0c07061c8a912fafa967ef1dc73fa115e4bfa70882a093b"}, + {file = "ast_serialize-0.6.0-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c4af9a1386166e40ed01464991806f89038a2d89782576c7774876fa77034e32"}, + {file = "ast_serialize-0.6.0-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:c901adbd750029b9ac4ad3d6aa56853e0ad4875119fbf52b7b8298afc223828b"}, + {file = "ast_serialize-0.6.0-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:3ae22a366b752ab4496191525b78b097b5b72d531752e3c1dd7e383a8f2c8a1a"}, + {file = "ast_serialize-0.6.0-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:4ed29121da8b3fdc291002801a1de0f76248fa07dce89157a5f277842cf6126e"}, + {file = "ast_serialize-0.6.0-cp39-abi3-pyemscripten_2026_0_wasm32.whl", hash = "sha256:b1dac4e09d341c1300ba69cdcbe62867b32a8c75d90db9bf4d083bec3b039f0b"}, + {file = "ast_serialize-0.6.0-cp39-abi3-win32.whl", hash = "sha256:82c312a7844d2fdeb4d5c48bd3d215bf940dafd4704e1a9bcf252a99010a99b1"}, + {file = "ast_serialize-0.6.0-cp39-abi3-win_amd64.whl", hash = "sha256:113b58346f9ceb664352032770caca817d4a3c86f611c6088e6ef65ddaa70f0e"}, + {file = "ast_serialize-0.6.0-cp39-abi3-win_arm64.whl", hash = "sha256:ccd132fe8db56f61fe743b1f644d01b8d65b83248a8da506f3132bda86d6ed5e"}, + {file = "ast_serialize-0.6.0.tar.gz", hash = "sha256:aadd3ffcf4858c9726bf3515f7b199c7eadbe504f96028e4a87172c0da65a8fe"}, ] [[package]] @@ -254,153 +255,117 @@ files = [ [[package]] name = "certifi" -version = "2026.6.17" +version = "2026.7.22" description = "Python package for providing Mozilla's CA Bundle." optional = false python-versions = ">=3.7" groups = ["dev"] files = [ - {file = "certifi-2026.6.17-py3-none-any.whl", hash = "sha256:2227dcbaafe0d2f59279d1762ddddc37783ed4354594f194ffc31d20f41fc3db"}, - {file = "certifi-2026.6.17.tar.gz", hash = "sha256:024c88eeec92ca068db80f02b8b07c9cef7b9fe261d1d535abfd5abd6f6af432"}, + {file = "certifi-2026.7.22-py3-none-any.whl", hash = "sha256:62f22742b58a1a33014a2b6b706588a8d7e2a88ae7bd1a6ebe8c992928483775"}, + {file = "certifi-2026.7.22.tar.gz", hash = "sha256:741e2c3b351ddf169a738da9f2c048608ff7f2c5cc02f1ebc6b118bb090d5d55"}, ] [[package]] name = "charset-normalizer" -version = "3.4.7" +version = "3.4.9" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." optional = false python-versions = ">=3.7" groups = ["dev"] files = [ - {file = "charset_normalizer-3.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cdd68a1fb318e290a2077696b7eb7a21a49163c455979c639bf5a5dcdc46617d"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e17b8d5d6a8c47c85e68ca8379def1303fd360c3e22093a807cd34a71cd082b8"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:511ef87c8aec0783e08ac18565a16d435372bc1ac25a91e6ac7f5ef2b0bff790"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:007d05ec7321d12a40227aae9e2bc6dca73f3cb21058999a1df9e193555a9dcc"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cf29836da5119f3c8a8a70667b0ef5fdca3bb12f80fd06487cfa575b3909b393"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:12d8baf840cc7889b37c7c770f478adea7adce3dcb3944d02ec87508e2dcf153"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d560742f3c0d62afaccf9f41fe485ed69bd7661a241f86a3ef0f0fb8b1a397af"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b14b2d9dac08e28bb8046a1a0434b1750eb221c8f5b87a68f4fa11a6f97b5e34"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:bc17a677b21b3502a21f66a8cc64f5bfad4df8a0b8434d661666f8ce90ac3af1"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:750e02e074872a3fad7f233b47734166440af3cdea0add3e95163110816d6752"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:4e5163c14bffd570ef2affbfdd77bba66383890797df43dc8b4cc7d6f500bf53"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:6ed74185b2db44f41ef35fd1617c5888e59792da9bbc9190d6c7300617182616"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:94e1885b270625a9a828c9793b4d52a64445299baa1fea5a173bf1d3dd9a1a5a"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-win32.whl", hash = "sha256:6785f414ae0f3c733c437e0f3929197934f526d19dfaa75e18fdb4f94c6fb374"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:6696b7688f54f5af4462118f0bfa7c1621eeb87154f77fa04b9295ce7a8f2943"}, - {file = "charset_normalizer-3.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:66671f93accb62ed07da56613636f3641f1a12c13046ce91ffc923721f23c008"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7641bb8895e77f921102f72833904dcd9901df5d6d72a2ab8f31d04b7e51e4e7"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:202389074300232baeb53ae2569a60901f7efadd4245cf3a3bf0617d60b439d7"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:30b8d1d8c52a48c2c5690e152c169b673487a2a58de1ec7393196753063fcd5e"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:532bc9bf33a68613fd7d65e4b1c71a6a38d7d42604ecf239c77392e9b4e8998c"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2fe249cb4651fd12605b7288b24751d8bfd46d35f12a20b1ba33dea122e690df"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:65bcd23054beab4d166035cabbc868a09c1a49d1efe458fe8e4361215df40265"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:08e721811161356f97b4059a9ba7bafb23ea5ee2255402c42881c214e173c6b4"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e060d01aec0a910bdccb8be71faf34e7799ce36950f8294c8bf612cba65a2c9e"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:38c0109396c4cfc574d502df99742a45c72c08eff0a36158b6f04000043dbf38"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1c2a768fdd44ee4a9339a9b0b130049139b8ce3c01d2ce09f67f5a68048d477c"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:1a87ca9d5df6fe460483d9a5bbf2b18f620cbed41b432e2bddb686228282d10b"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:d635aab80466bc95771bb78d5370e74d36d1fe31467b6b29b8b57b2a3cd7d22c"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ae196f021b5e7c78e918242d217db021ed2a6ace2bc6ae94c0fc596221c7f58d"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-win32.whl", hash = "sha256:adb2597b428735679446b46c8badf467b4ca5f5056aae4d51a19f9570301b1ad"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:8e385e4267ab76874ae30db04c627faaaf0b509e1ccc11a95b3fc3e83f855c00"}, - {file = "charset_normalizer-3.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:d4a48e5b3c2a489fae013b7589308a40146ee081f6f509e047e0e096084ceca1"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-win32.whl", hash = "sha256:2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6"}, - {file = "charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-win32.whl", hash = "sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110"}, - {file = "charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1c2aed2e5e41f24ea8ef1590b8e848a79b56f3a5564a65ceec43c9d692dc7d8a"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:54523e136b8948060c0fa0bc7b1b50c32c186f2fceee897a495406bb6e311d2b"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:715479b9a2802ecac752a3b0efa2b0b60285cf962ee38414211abdfccc233b41"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:c45e9440fb78f8ddabcf714b68f936737a121355bf59f3907f4e17721b9d1aae"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3534e7dcbdcf757da6b85a0bbf5b6868786d5982dd959b065e65481644817a18"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e8ac484bf18ce6975760921bb6148041faa8fef0547200386ea0b52b5d27bf7b"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:a5fe03b42827c13cdccd08e6c0247b6a6d4b5e3cdc53fd1749f5896adcdc2356"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:2d6eb928e13016cea4f1f21d1e10c1cebd5a421bc57ddf5b1142ae3f86824fab"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:e74327fb75de8986940def6e8dee4f127cc9752bee7355bb323cc5b2659b6d46"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d6038d37043bced98a66e68d3aa2b6a35505dc01328cd65217cefe82f25def44"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7579e913a5339fb8fa133f6bbcfd8e6749696206cf05acdbdca71a1b436d8e72"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-win32.whl", hash = "sha256:5b77459df20e08151cd6f8b9ef8ef1f961ef73d85c21a555c7eed5b79410ec10"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-win_amd64.whl", hash = "sha256:92a0a01ead5e668468e952e4238cccd7c537364eb7d851ab144ab6627dbbe12f"}, - {file = "charset_normalizer-3.4.7-cp314-cp314-win_arm64.whl", hash = "sha256:67f6279d125ca0046a7fd386d01b311c6363844deac3e5b069b514ba3e63c246"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:effc3f449787117233702311a1b7d8f59cba9ced946ba727bdc329ec69028e24"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fbccdc05410c9ee21bbf16a35f4c1d16123dcdeb8a1d38f33654fa21d0234f79"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:733784b6d6def852c814bce5f318d25da2ee65dd4839a0718641c696e09a2960"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a89c23ef8d2c6b27fd200a42aa4ac72786e7c60d40efdc76e6011260b6e949c4"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c114670c45346afedc0d947faf3c7f701051d2518b943679c8ff88befe14f8e"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:a180c5e59792af262bf263b21a3c49353f25945d8d9f70628e73de370d55e1e1"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3c9a494bc5ec77d43cea229c4f6db1e4d8fe7e1bbffa8b6f0f0032430ff8ab44"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:8d828b6667a32a728a1ad1d93957cdf37489c57b97ae6c4de2860fa749b8fc1e"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:cf1493cd8607bec4d8a7b9b004e699fcf8f9103a9284cc94962cb73d20f9d4a3"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0c96c3b819b5c3e9e165495db84d41914d6894d55181d2d108cc1a69bfc9cce0"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:752a45dc4a6934060b3b0dab47e04edc3326575f82be64bc4fc293914566503e"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:8778f0c7a52e56f75d12dae53ae320fae900a8b9b4164b981b9c5ce059cd1fcb"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ce3412fbe1e31eb81ea42f4169ed94861c56e643189e1e75f0041f3fe7020abe"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-win32.whl", hash = "sha256:c03a41a8784091e67a39648f70c5f97b5b6a37f216896d44d2cdcb82615339a0"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-win_amd64.whl", hash = "sha256:03853ed82eeebbce3c2abfdbc98c96dc205f32a79627688ac9a27370ea61a49c"}, - {file = "charset_normalizer-3.4.7-cp314-cp314t-win_arm64.whl", hash = "sha256:c35abb8bfff0185efac5878da64c45dafd2b37fb0383add1be155a763c1f083d"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e5f4d355f0a2b1a31bc3edec6795b46324349c9cb25eed068049e4f472fb4259"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:16d971e29578a5e97d7117866d15889a4a07befe0e87e703ed63cd90cb348c01"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:dca4bbc466a95ba9c0234ef56d7dd9509f63da22274589ebd4ed7f1f4d4c54e3"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e80c8378d8f3d83cd3164da1ad2df9e37a666cdde7b1cb2298ed0b558064be30"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:36836d6ff945a00b88ba1e4572d721e60b5b8c98c155d465f56ad19d68f23734"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-manylinux_2_31_armv7l.whl", hash = "sha256:bd9b23791fe793e4968dba0c447e12f78e425c59fc0e3b97f6450f4781f3ee60"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:aef65cd602a6d0e0ff6f9930fcb1c8fec60dd2cfcb6facaf4bdb0e5873042db0"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:82b271f5137d07749f7bf32f70b17ab6eaabedd297e75dce75081a24f76eb545"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:1efde3cae86c8c273f1eb3b287be7d8499420cf2fe7585c41d370d3e790054a5"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:c593052c465475e64bbfe5dbd81680f64a67fdc752c56d7a0ae205dc8aeefe0f"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_riscv64.whl", hash = "sha256:af21eb4409a119e365397b2adbaca4c9ccab56543a65d5dbd9f920d6ac29f686"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:84c018e49c3bf790f9c2771c45e9313a08c2c2a6342b162cd650258b57817706"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:dd915403e231e6b1809fe9b6d9fc55cf8fb5e02765ac625d9cd623342a7905d7"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-win32.whl", hash = "sha256:320ade88cfb846b8cd6b4ddf5ee9e80ee0c1f52401f2456b84ae1ae6a1a5f207"}, - {file = "charset_normalizer-3.4.7-cp38-cp38-win_amd64.whl", hash = "sha256:1dc8b0ea451d6e69735094606991f32867807881400f808a106ee1d963c46a83"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:177a0ba5f0211d488e295aaf82707237e331c24788d8d76c96c5a41594723217"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e0d51f618228538a3e8f46bd246f87a6cd030565e015803691603f55e12afb5"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:14265bfe1f09498b9d8ec91e9ec9fa52775edf90fcbde092b25f4a33d444fea9"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:87fad7d9ba98c86bcb41b2dc8dbb326619be2562af1f8ff50776a39e55721c5a"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f22dec1690b584cea26fade98b2435c132c1b5f68e39f5a0b7627cd7ae31f1dc"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-manylinux_2_31_armv7l.whl", hash = "sha256:d61f00a0869d77422d9b2aba989e2d24afa6ffd552af442e0e58de4f35ea6d00"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6370e8686f662e6a3941ee48ed4742317cafbe5707e36406e9df792cdb535776"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:a6c5863edfbe888d9eff9c8b8087354e27618d9da76425c119293f11712a6319"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:ed065083d0898c9d5b4bbec7b026fd755ff7454e6e8b73a67f8c744b13986e24"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:2cd4a60d0e2fb04537162c62bbbb4182f53541fe0ede35cdf270a1c1e723cc42"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:813c0e0132266c08eb87469a642cb30aaff57c5f426255419572aaeceeaa7bf4"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:07d9e39b01743c3717745f4c530a6349eadbfa043c7577eef86c502c15df2c67"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c0f081d69a6e58272819b70288d3221a6ee64b98df852631c80f293514d3b274"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-win32.whl", hash = "sha256:8751d2787c9131302398b11e6c8068053dcb55d5a8964e114b6e196cf16cb366"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-win_amd64.whl", hash = "sha256:12a6fff75f6bc66711b73a2f0addfc4c8c15a20e805146a02d147a318962c444"}, - {file = "charset_normalizer-3.4.7-cp39-cp39-win_arm64.whl", hash = "sha256:bb8cc7534f51d9a017b93e3e85b260924f909601c3df002bcdb58ddb4dc41a5c"}, - {file = "charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d"}, - {file = "charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd6280cf040f233bd7d3407b743b4b4c74f70e8e1c4199cb112a62c941c0772a"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aa99adc8f081b475a12843953db36831eaf83ec33eb46a90629ca6a5de45a616"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c1225416b463483160e4af85d5fc3a9690ccb53fd4b1865a6437825f5ede3209"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:16d10d789dd9bcca1173c95af82c58433122564b7bc39385124be735a35cbe99"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9bb41182d93ea91f60b4bc8fbf4c820c69ef8a12ab2d917f3f1834f1acad07e8"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:bcf74c1df76758a395bf0af608c04c82257523f55c9868b334f06270d0f2112b"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b5314963fce9b0b12743891de876e724997864ee22aa496f903f426c7e2fa5b2"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e9701d0049d92c16703a42771b98d560b95248949f23f8cf7b4eddd201814fb9"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:65a7ff3f705e57d392f7261b6d0550fe137c3019477431f1c355e0db0a7d3e15"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79580094b00d1789d1f93ea55bc43cb2f611910c72235b7657f3482ddcc1b22d"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-win32.whl", hash = "sha256:432786d3561e69aeeae6c7e8648964ce0ad05736120135601f87ac26b9c83381"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-win_amd64.whl", hash = "sha256:8c041122946b7ba21bb32c45b1aa57b1be35527690aeb3c5c234521085632eee"}, + {file = "charset_normalizer-3.4.9-cp310-cp310-win_arm64.whl", hash = "sha256:375b83ed0aecfce76c16d198fbc21f3b11b337d68662bea0a995046682a11419"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0e94703ec9684807f20cfb5eed95c70f67f2a8f21ad620146d7b5a13677b93e5"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2a441ea71902098ffe78c5abe6c494f44160b4af614ed16c3d9a3b1d17fd8ee2"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:304b13570067b2547562e308af560b3963857b1fa90bd6afd978130130fe2d6a"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:4773092f8019072343a7447203308b176e10199920eb02d6195e81bbb3274c29"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:04ce310cb89c15df659582aee80a0603788732a5e017d5bd5c81158106ce249c"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:c0323c9daef75ef2e5083624b4585018a0c9d5e3b40f607eed81a311270b934b"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:871ff67ea1aad4dfd91736464934d56b32dac49f9fbe16cddba36198a7b3a0db"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:67830fc78e67501f47bb950471b2dcb9b35b140084429318e862895a8e89c993"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:3d92613ec25e43b05f042302531ec0f00b8445190e43325880cbd6ab7c2581da"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:280081916dc341820640489a66e4696049401ef1cf6dd672f672e70ad915aca3"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-win32.whl", hash = "sha256:ac351b3b8014eead140e77e9717e2992c6bbe30b63bc3422422eb84865412e3d"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-win_amd64.whl", hash = "sha256:6366a16e1a25018694d6a5d784d09b046edc9eac40ea2b54065c3052672516a1"}, + {file = "charset_normalizer-3.4.9-cp311-cp311-win_arm64.whl", hash = "sha256:1d22856ffbe153a602df38e4a5464f0b748a54002e0d69ac6d2ad0a197cc99ec"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:45b0cc4e3556cd875e09102988d1ab8356c998b596c9fced84547c8138b487a0"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9b2aff1c7b3884512b9512c3eaadd9bab39fb45042ffaaa1dd08ff2b9f8109d9"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9104ed0bd76a429d46f9ec0dbc9b08ad1d2dcdf2b00a5a0daa1c145329b35b44"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7b86a2b16095d250c6f58b3d9b2eee6f4147754344f3dab0922f7c9bf7d226c9"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5e226f6218febc71f6c1fc2fafb91c226f75bdc1d8fb12d66823716e891608fd"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:90c44bc373b7687f6948b693cceaea1348ae0975d7474746559494468e3c1d84"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9cdef90ae47919cae358d8ab15797a800ed41da7aba5d72419fb510729e2ed4b"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:60f44ade2cf573dad7a277e6f8ca9a51a21dda572b13bd7d8539bb3cd5dbedde"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a1786910334ed46ab1dd73222f2cd1e05c2c3bb39f6dddb4f8b36fc382058a39"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:03d07803992c6c7bbc976327f34b18b6160327fc81cb82c9d504720ac0be3b62"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-win32.whl", hash = "sha256:78841cccf1af7b40f6f716338d50c0902dbe88d9f800b3c973b7a9a0a693a642"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-win_amd64.whl", hash = "sha256:4b3dac63058cc36820b0dd072f89898604e2d39686fe05321729d00d8ac185a0"}, + {file = "charset_normalizer-3.4.9-cp312-cp312-win_arm64.whl", hash = "sha256:78fa18e436a1a0e58dbd7e02fc4473f3f32cceb12df9dfca542d075961c307d2"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:440eede837960000d74978f0eba527be106b5b9aee0daf779d395276ed0b0614"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:21e764fd1e70b6a3e205a0e46f3051701f98a8cb3fad66eeb80e48bb502f8698"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e4fd89cc178bced6ad29cb3e6dd4aa63fa5017c3524dbd0b25998fb64a87cc8b"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:bd47ba7fc3ca94896759ea0109775132d3e7ab921fbf54038e1bab2e46c313c9"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:84fd18bcc17526fc2b3c1af7d2b9217d32c9c04448c16ec693b9b4f1985c3d33"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:5b10cd92fc5c498b35a8635df6d5a100207f88b63a4dc1de7ef9a548e1e2cd63"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a4fbdde9dd4a9ce5fd52c2b3a347bb50cc89483ef783f1cb00d408c13f7a96c0"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:416c229f77e5ea25b3dfd4b582f8d73d7e43c22320302b9ab128a2d3a0b38efe"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:75286256590a6320cf106a0d28970d3560aad9ee09aa7b34fb40524792436d35"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:69b157c5d3292bcd443faca052f3096f637f1e074b98212a933c074ae23dc3b8"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-win32.whl", hash = "sha256:51307f5c71007673a2bf8232ad973483d281e74cb99c8c5a990af1eefa6277d9"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-win_amd64.whl", hash = "sha256:fe2c7201c642b7c308f1675355ad7ff7b66acfe3541625efe5a3ad38f29d6115"}, + {file = "charset_normalizer-3.4.9-cp313-cp313-win_arm64.whl", hash = "sha256:611057cc5d5c0afc743ba8be6bd828c17e0aaa8643f9d0a9b9bb7dea80eb8012"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:0327fcd59a935777d83410750c50600ee9571af2846f71ce40f25b13da1ef380"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a79d9f4d8001473a30c163556b3c3bfebec837495a412dde78b51672f6134f9"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:33bdcc2a32c0a0e861f60841a512c8acc658c87c2ac59d89e3a46dacf7d866e4"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f840ed6d8ecba8255df8c42b87fadeda98ddfc6eeec05e2dc66e26d46dd6f58a"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c25fe15c70c59eb7c5ce8c06a1f3fa1da0ecc5ea1e7a5922c40fd2fa9b0d5046"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:f7fb7d750cfa0a070d2c24e831fd3481019a60dd317ea2b39acbcebc08b6ed81"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4d1c96a7a18b9690a4d46df09e3e3382406ae3213727cd1019ebade1c4a81917"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:a4cfde78a9f2880208d16a93b795726a3017d5977e08d1e162a7a31322479c41"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:d4d6fcde76f94f5cb9e43e9e9a61f16dacefd228cbbf6f1a09bd9b219a92f1a1"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:898f0e9068ca27d37f8e83a5b962821df851532e6c4a7d615c1c033f9da6eedf"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-win32.whl", hash = "sha256:c1c948747b03be832dceed96ca815cef7360de9aa19d37c730f8e3f6101aca48"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-win_amd64.whl", hash = "sha256:16b65ea0f2465b6fb52aa22de5eca612aa964ddfec00a912e26f4656cbef890b"}, + {file = "charset_normalizer-3.4.9-cp314-cp314-win_arm64.whl", hash = "sha256:40a126142a56b2dfc0aacbad1de8310cbf60da7656db0e6b16eebd48e3e93519"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:609b3ba8fcc0fb5ab7af00719d0fb6ad0cb518e48e7712d12fd68f1327951198"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51447e9aa2684679af07ca5021c3db526e0284347ebf4ffcec1154c3350cfe32"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cc1b0fff8ead343dae06305f954eb8468ba0ec1a97881f42489d198e4ce3c632"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:fa36ec09ef71d158186bc79e359ff5fdd6e7996fe8ab638f00d6b93139ba4fcf"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:df115d4d83168fdf2cae48ef1ff6d1cb4c466364e30861b37121de0f3bf1b990"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-manylinux_2_31_armv7l.whl", hash = "sha256:f86c6358749bd4fda175388691e3ba8c46e24c5347d0afd20f9b7edfc9faf07d"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:32286a2c8d167e897177b673176c1e3e00d4057caf5d2b64eef9a3666b03018e"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:83aed2c10721ddd90f68140685391b50811a880af20654c59af6b6c66c40513c"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:cd6c3d4b783c556fa00bf540854e42f135e2f256abd29669fcd0da0f2dec79c2"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:ee2f2a527e3c1a6e6411eb4209642e138b544a2d72fe5d0d76daf77b24063534"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-win32.whl", hash = "sha256:0d861473f743244d349b50f850d10eb87aeb22bbdcc8e64f79273c94af5a8226"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-win_amd64.whl", hash = "sha256:9b8e0f3107e2200b76f6054de99016eac3ee6762713587b36baaa7e4bd2ae177"}, + {file = "charset_normalizer-3.4.9-cp314-cp314t-win_arm64.whl", hash = "sha256:19ac87f93086ce37b86e098888555c4b4bc48102279bae3350098c0ed664b501"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:253a4a220747e8b5faf57ec320c4f5efb0cef05f647420bf267143ec15dba10a"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:68ce9f4d6b26d5ccbf7fd4459bf75f74a0a146677ebba80597df60cbdb20e6f4"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:58150c9f9b9a552505912d182ccdf26f6396fb6094816ceebcbb20eecabaed94"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:df7276909358e5635ae203673ab7e509ddd224225a8d6b0790bf13eb2bde1cc5"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3c09a49d6cde137258beb3d551994a2927fd35ad5cf96aed573f61bbd67c5f84"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-manylinux_2_31_armv7l.whl", hash = "sha256:231ddcbb35e2ff8973e1365db41fe0572662893b99a05deb183b68ad4c0c8bd4"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:920079c3f7456fa213e0829ed2073aaa727fd39d889ead5b4f35d0de5460d04f"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:0fa1aec2d32bcc03c8fa0f6f1712caad1adc38509f31142112e5c9daf5b9c833"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:ad41ba96094304aa090f5a30cb6e4fb3b3f1c264c523394b4c39bbacc4dc92ba"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:43b9e366a31fdd1c87d0eb08f579b4a82b723ea54338f040d6b4e518a026ea29"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-win32.whl", hash = "sha256:93d59d504b230e83c7a843251681959a0b6a9cd76f6e146ce1b8a80eb8739af9"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-win_amd64.whl", hash = "sha256:ddf4af30b417d9fe16481e9b81c27ab2a7cde1ff7ba3e85653b02db7d145dc7b"}, + {file = "charset_normalizer-3.4.9-cp39-cp39-win_arm64.whl", hash = "sha256:476743fe6dfe14a2da12e3ac79125dc84a3b2cf8094369a47a1529b0cd8549fe"}, + {file = "charset_normalizer-3.4.9-py3-none-any.whl", hash = "sha256:68e5f26a1ad57ded6d1cfb85331d1c1a195314756471d97758c48498bb4dcdf5"}, + {file = "charset_normalizer-3.4.9.tar.gz", hash = "sha256:673611bbd43f0810bec0b0f028ddeaaa501190339cac411f347ac76917c3ae7b"}, ] [[package]] @@ -418,118 +383,103 @@ files = [ [[package]] name = "coverage" -version = "7.14.1" +version = "7.15.3" description = "Code coverage measurement for Python" optional = false python-versions = ">=3.10" groups = ["dev"] files = [ - {file = "coverage-7.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3e3680291c4a1d0dadfa84a2c459576a4af5133abb617905714339a0c73138cf"}, - {file = "coverage-7.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a5274669f37f2343635a347b91a60777621341ab3378e9c6ac9335eee704bddf"}, - {file = "coverage-7.14.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:cfe5a5fec635799ef33428f1e5e61bafa45a92a96190ba731561ba558ccc214d"}, - {file = "coverage-7.14.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:62a9f70b52e0b5a95cfef4a5c5641b06983cadc5e538a3feeb5c00211f523ac2"}, - {file = "coverage-7.14.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3c18ebc343e15be53049b3a2dce38fe82d58f37e20ab9094b3a39c0aa4f6bb47"}, - {file = "coverage-7.14.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b84ffdf877644e7096aa936991efeed873f7f3df57b9cd001312b7668ab08550"}, - {file = "coverage-7.14.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e854312c4103f2ad4c0dc023b69b77ebfd2c89db5f86c4c94dc2353f9a92167e"}, - {file = "coverage-7.14.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c643734307300234fafa36bf2a040a7235f8f177ea1fd6ec1423aea6fb7b929f"}, - {file = "coverage-7.14.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:84ac9499e48700399a5dd0ea7085b5091961fec52c68d66b4ec0d3cf7f4441b1"}, - {file = "coverage-7.14.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:7f02d09f70776579b926d889a4c9c235070a1f47c40458aeaca563fae5acfdb5"}, - {file = "coverage-7.14.1-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:ce66d8e46da2bb5ee313a745cbd2e391d319176c1f7a9451bfcd3a2fb920859b"}, - {file = "coverage-7.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c912c259304cfb5ee584481cfb7ce1ff932b4d61e6c9140b8f19cb7b5ed82332"}, - {file = "coverage-7.14.1-cp310-cp310-win32.whl", hash = "sha256:1238cb94638e610e972c60dac68e813f868dc7d6e982535270558443058d9d59"}, - {file = "coverage-7.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:fc459e5d73be2d6332fcfe8dbf3d8994671fe33c700f4565988ecfa511547253"}, - {file = "coverage-7.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:478b5bcd63c2e1357c5c7e16c070690df7b07f676b1c114d7b93e533c664309f"}, - {file = "coverage-7.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a24a81f9715ee42ef59a316cc11611c98fe23920f7c81861315c9f3ff4a230f4"}, - {file = "coverage-7.14.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:196a13319ad88d6d8ef5ab489ec4f44ddde2143c0c7d5b27786f6c3ffd56a7e1"}, - {file = "coverage-7.14.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:3d452fd08b5c72c5167c93e6867b5c08500bd40f2a21e1e854a500550b6cc36f"}, - {file = "coverage-7.14.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:23bf7fa51ac02e07fc7c96849b82946da47ae862dc8f86d183b2a4864fc38129"}, - {file = "coverage-7.14.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bcaa50684dcaadfa599ac48f81103c756d791cfd85c97203d2217c593d48b860"}, - {file = "coverage-7.14.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4ea1c034f95c9b056e856b794630b17f9fa3d57e4800ff1e503d3be0f9c9078c"}, - {file = "coverage-7.14.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c7e057326434e441306226fbeb5d1aaf14a2637efe97ba668306635835f32ad7"}, - {file = "coverage-7.14.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:59baf88468dbc8d63b1887afd92bda52e40bb1561696e5819670601403810cec"}, - {file = "coverage-7.14.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:d34d75f892b3ab73ba11cab5442cce7b3e168fd64162b16f0e1e0d09c508edef"}, - {file = "coverage-7.14.1-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:3a56abc20a472baf0304c455721bc601477440d28ecfde8a03dde79ede07e0df"}, - {file = "coverage-7.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:6a3cb83d1552c0cd1b4906655b6a33fd4a8473229633a901c6b73bf86914dee9"}, - {file = "coverage-7.14.1-cp311-cp311-win32.whl", hash = "sha256:10274a1fbeb8ec5d72966e17bb198a3104257aca4ac09d98667c5f8aca8c8548"}, - {file = "coverage-7.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:87ebdf787d4888e3f3f2d523eadc6e18c6d18c6d0eb173801a189641627fb37e"}, - {file = "coverage-7.14.1-cp311-cp311-win_arm64.whl", hash = "sha256:dd34767fa19848d35659ffc0a75314f58c7af3f1cd87ec521e8292a1238398a3"}, - {file = "coverage-7.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a06c76364a9360e33d6d23769aefdf7f66f38e2ffb60ceb1baaa4989d83b695c"}, - {file = "coverage-7.14.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fad54e871165f6ec2f536063ac74c3104508a12963e64072ba44bd822de52b0c"}, - {file = "coverage-7.14.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:84b535f00655ecafe1d929d1fb00ed5d6fa3051ea643ab2c161a3887b86f294b"}, - {file = "coverage-7.14.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6b6b0853b895fe0e98cbfc580d1ec3393d9302b4b1e96a77b3f5c91fdab899e6"}, - {file = "coverage-7.14.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:442cc9c952b2df400cda54bb04ab87330cf2cd08a8692cbbea36773531eb6f37"}, - {file = "coverage-7.14.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8270544c361ed405a27a060dbc9ed2c124b084d96dfdc2d9a2510482aef981ad"}, - {file = "coverage-7.14.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:48b283b1dd6372e8de2a7a9a4c4d5dc06f4d4fd209b876f3c88a7a205a0c8f84"}, - {file = "coverage-7.14.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5b0c99ba93a07d56f6df340bb79be53202a082b2fdb81bfe6190b741a3470d54"}, - {file = "coverage-7.14.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e471bc5769ff073b058cfadb0d736b56ce067c8560eabeb0da88462df98c23e7"}, - {file = "coverage-7.14.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f497a1ea81d4cd7c10ddcaa685135b9aabd291af3d55775a9ddf3cb7a364cdd9"}, - {file = "coverage-7.14.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:2222be86d0b54f5dd5a38f45f17f315f737245e857bf0bdedc70734f84a13c02"}, - {file = "coverage-7.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:85e85586565842f6932abebd4c18bcb1074223dc0b3576e7d173ca710622813a"}, - {file = "coverage-7.14.1-cp312-cp312-win32.whl", hash = "sha256:4a28fd227808366b196a75476dced2eb35b351d6766ba9c858dc93319e87f4f1"}, - {file = "coverage-7.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:54acdb6674a4661768d7bf7db32dfb9f46ab1d764f8aba6df75ce1a6a088724e"}, - {file = "coverage-7.14.1-cp312-cp312-win_arm64.whl", hash = "sha256:99cd41ff91afd94896fea3bc002706b6ae4ce95727d06e4a0f39c0a8d8bd8b1a"}, - {file = "coverage-7.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:be9f2c802dcfce3f71298303aa5dad0dce440a76c52f2f60dacd8656dab78793"}, - {file = "coverage-7.14.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6223a72fd0e4c7156353ec0f08a5f93623e1d3034d0e2683b9bb8ea674131b1d"}, - {file = "coverage-7.14.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:7279d2110a28cebc738b6459ecda2771735a4c18465fbbd36b3288fe5ed92247"}, - {file = "coverage-7.14.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9eeb3fcbc13ba40dfbdb22d01d196a28e9cef9ed4c29b60061a1e0e823a9929d"}, - {file = "coverage-7.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f0cfc27c539f07cf5c0a4cfe211d0b6cae039f8f40526dbaa71944e64b50a7b"}, - {file = "coverage-7.14.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:221c70f316241a78e77e607c227cefc8808d4e08f28d99c04f35694690e940be"}, - {file = "coverage-7.14.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:da028256b04ec30e5e0114b6f76172938c313991f0a2d3d894271315cf5d5e43"}, - {file = "coverage-7.14.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:76a085d7005236a767e3426148b2c407e53ad61695c562f8a81da2d373324901"}, - {file = "coverage-7.14.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b553d04b5e778a8e56d57eb134aff42a92718ecba45e79c4764ecfa40efd92ff"}, - {file = "coverage-7.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:46f714d2fb8ae2f4f29f23ada7f1e79b759fff5a70f94a1dac23af204c3ec9e4"}, - {file = "coverage-7.14.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:1896f5e19ff3f0431c7ce2172adc54890fd97f86b59ced8ca1649145d9ffe35d"}, - {file = "coverage-7.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:62fd185ef9df3c33d1c8178c5af105f762afbad96038de9a4ae100aa6297ca33"}, - {file = "coverage-7.14.1-cp313-cp313-win32.whl", hash = "sha256:ab4af6352741a604c431c6072fce5bee33bf0f20dc7a56618d6bf6bb89e9810c"}, - {file = "coverage-7.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:7af486dabe8954d03b087f0021540897afe084f04e16ff5579e08cc46f871416"}, - {file = "coverage-7.14.1-cp313-cp313-win_arm64.whl", hash = "sha256:2224f89ffd0c5605ccce1ed7a584da162bc7c55f601ab1c946bc9de31a486b42"}, - {file = "coverage-7.14.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:de286598cc65d2b489411174b1faec2f5a7775fb3201fd925db2a76b4030f37d"}, - {file = "coverage-7.14.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:042c46ded7c288aeb07cf14a28b6c1e10b78fcba40171c3fa1e939377eeef0b5"}, - {file = "coverage-7.14.1-cp313-cp313t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:f4ddbe407477f04c45115d1a4e5bc480f753553b534d338d4c3358b1cdd0ea52"}, - {file = "coverage-7.14.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:d13e6725992e2d2fd7d81d4f5241952d13740121dfd501da09201be39b2c003a"}, - {file = "coverage-7.14.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f747dc8edcfe740130f28f32f3995e955494285717e86ee25af51db2219df08a"}, - {file = "coverage-7.14.1-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ced2f09ef276fd58611a1ef502164ad266d2b75174e5a40cabbdb4033f9f6cf2"}, - {file = "coverage-7.14.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b84800013769a78ccb9ef4659402e26d06867e337b61ec365f77ad008adea80e"}, - {file = "coverage-7.14.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ea8cd6ca0ee9f616aaef3afc6882e32c2cbf18b00d96313ffd76af650574034d"}, - {file = "coverage-7.14.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:aa5e304a873fabddc11e484e9b6b738bd38bd7bed17b09aa84eecf5332e8b8bb"}, - {file = "coverage-7.14.1-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:5a1c5215be81035e629d5bc756650634d0bf31991038db7a0eccb90f025ce16d"}, - {file = "coverage-7.14.1-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:79058c47dae6788504b5effb319961bcd72d7240551464b91d474bc0ed186d69"}, - {file = "coverage-7.14.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:370c5afae3fa0658e11694a32b24c2778f6bc2d17718121f94ee185e69f26b54"}, - {file = "coverage-7.14.1-cp313-cp313t-win32.whl", hash = "sha256:3758dd0a7f1fa57365ef2e781df0f0731d38b6e3772259d13dae4bd8a958d4b1"}, - {file = "coverage-7.14.1-cp313-cp313t-win_amd64.whl", hash = "sha256:6ff665fb023a77386fe11685190cee1f60a7d635994a30d9b0a061533d470fce"}, - {file = "coverage-7.14.1-cp313-cp313t-win_arm64.whl", hash = "sha256:17a5a241e5997621a956a7f402a7433ef4221e5152809b785bec79e2323799f1"}, - {file = "coverage-7.14.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:d5ed429d0b8edaac649e889b4ffcedb6c80b06629a3f93050e3dddfb99235bee"}, - {file = "coverage-7.14.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:8011224a62280e50dab346960c03cf47aca1a1e09e608c0fb33fd6e0cc8e9500"}, - {file = "coverage-7.14.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:12c42ec1e14f553c4f817e989365982e646e27211f10a0f717855b94a79c8906"}, - {file = "coverage-7.14.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:06144cd511cf2624873a035c5069cf297144f6e77a73ee3d7a55b605ec5efb42"}, - {file = "coverage-7.14.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a311d8e1da24be5c1ccf85cbfb06315dbaa1703d5a1eab3f6432c72b837917c8"}, - {file = "coverage-7.14.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c79cead5b5bc584d9c71451cb984d0e3a84e0c0937379c8efcbf27c8d661b851"}, - {file = "coverage-7.14.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:dcbf65f1f66a26cdd88c35cf68fb4729c5d1cd2e88added72420541dfb212034"}, - {file = "coverage-7.14.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fd86572566fb40189a8260446158235159bc7a82dfbc87a3b39cf4fb57fcec1c"}, - {file = "coverage-7.14.1-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:7771b601718fdde84832c3a434ca9bbf4ae9adbc49d84198b4110700c3c77c36"}, - {file = "coverage-7.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:39b21e212c55af06fa375e3dbf90a8a8e38792f3a910c580066d23563830ddd5"}, - {file = "coverage-7.14.1-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:f2302660e32562a532b442480121aef8aa61a5bdb20b30bf0adab29f10a5a4b4"}, - {file = "coverage-7.14.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:03a6f93c1ec3b7f2e77b5dbcc5573a2c21f12529a5c6bbe0f16f72303cc2fa4d"}, - {file = "coverage-7.14.1-cp314-cp314-win32.whl", hash = "sha256:8a3ce026d73290f42f08dafecbd82c193a74df280461fbf97300fec51fd133ee"}, - {file = "coverage-7.14.1-cp314-cp314-win_amd64.whl", hash = "sha256:114c95ef29302423b87d159075805f4ab973254a2638a5d7d046c94887cc87d7"}, - {file = "coverage-7.14.1-cp314-cp314-win_arm64.whl", hash = "sha256:a07891c3f4805442b31b71e84ba3cf29ed1aa9a428284e06deeb4b23e5b46343"}, - {file = "coverage-7.14.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1101a5ebb083aecb625ebb6209d4105b58f647b093cb2dc8122d7b33f743cfe1"}, - {file = "coverage-7.14.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:851b9e1e4e8a4608e77c79714b2e77c0970d2ed7202a05e92ae407817481887b"}, - {file = "coverage-7.14.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:d5b89cdfb2ee051b71e8c3c70bd81a9eff81100f736a269136fe1a68efe00474"}, - {file = "coverage-7.14.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:0177614a0370f227888b4e436a7c55686d6a9f90eb1ade2b624ba685a1686e86"}, - {file = "coverage-7.14.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2d69af5dea2de76fc485a83032a630523f985198b7e25be901ec60181587b01e"}, - {file = "coverage-7.14.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:35ab22d91de736e8966b980dc355cbcdd2c6dbbcfe275f9a2991bc8a91b3df65"}, - {file = "coverage-7.14.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:357d4e32935c36588aaba057d734fa32428c360c9fc2e4442afbf1b646beee6e"}, - {file = "coverage-7.14.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:51bd64741cc6fa065abd300ede1afe5a5291ece9c31da8b24884deda48bcc3f8"}, - {file = "coverage-7.14.1-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:9132cd363a68a4c3daa7c8704a654b1e39d3360f6f5b8ddd470608a945236c07"}, - {file = "coverage-7.14.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:07c6290b1697b862c0478eab545eec949a0d0e4d6d03497f446d706da3b4f2de"}, - {file = "coverage-7.14.1-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:5ea0c297e27133853b4d8a3eb799bff5a2dbd9f2f41537a240d337ac9b4df890"}, - {file = "coverage-7.14.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:01b7733daad0237daa01ef80fe2dfceffc911e6a17fa7b55d14aa8214eaaaecd"}, - {file = "coverage-7.14.1-cp314-cp314t-win32.whl", hash = "sha256:6adc5a36984624a70bf11d7184e20fa0a49aa7c47ffab43804106a1a695ea22e"}, - {file = "coverage-7.14.1-cp314-cp314t-win_amd64.whl", hash = "sha256:ddf799247318f34dbcd2efa8c95a8d0642674e926bb1774cf9b63dfd2a389d1c"}, - {file = "coverage-7.14.1-cp314-cp314t-win_arm64.whl", hash = "sha256:145986fe66647eb489f18d9a997567a3fd358584c4b5a808769113abc07466af"}, - {file = "coverage-7.14.1-py3-none-any.whl", hash = "sha256:a252f21c27e38347e60111a3266b03827422a7d5525951aceee313aa68bab1d2"}, - {file = "coverage-7.14.1.tar.gz", hash = "sha256:30c08f7d90415aa98b3c990385dea2939b0da55f38515e5b369b83655f8523be"}, + {file = "coverage-7.15.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3a82b2ceee91ba353e59fe2436d8a9eae799ff9825e5385423ea205d693e2949"}, + {file = "coverage-7.15.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3088cce65e54c2eefc08e7e1ca0b0acec1e95e8cf084ac848599103ed0367f74"}, + {file = "coverage-7.15.3-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:a65e09efb0b5ab21fc54a8a65c5b2e533c0a4c0d064af0259a005dc656dc1b13"}, + {file = "coverage-7.15.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:b51f279a2477b0e1f288b98f141fd227acfdd1d3f0370400e473788879b47871"}, + {file = "coverage-7.15.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7835176988cbcf1f014db683bc33aa15e0558e412bf08deaa99757335b88df15"}, + {file = "coverage-7.15.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f24896dc8863167f6732f4142f5d37e6195eccc8fe5fe528d35d49597d29fdb3"}, + {file = "coverage-7.15.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9490d43e5d041fdf376770a886a29722adb05f6b9c21a65c48c81fc8f1c33fd7"}, + {file = "coverage-7.15.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:225e359bd5dedaff6d68e36091af20555866c557d968167308b677379bf575c3"}, + {file = "coverage-7.15.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:22119e2e3b2ac5ac024d50131fdd4b22ab4c6cf8aa2fc792cce73c0d94c5812d"}, + {file = "coverage-7.15.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:12d555badc462b0f6037ce8bec8b4af8d71f90eb55b57d0a358731f7ee7883e2"}, + {file = "coverage-7.15.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:c4e2cf9cf774939b3dc581c6e31dfe7e8d7608b24f0f17524d6161f8235c3d2c"}, + {file = "coverage-7.15.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cea1b3e19d710f67e2ba9ce0b0b51032c2a9b4808a65ced48ddf336ef7e58058"}, + {file = "coverage-7.15.3-cp310-cp310-win32.whl", hash = "sha256:25c77560309f157e7b7ee8fe0bf78d047ba900b7ae42f0e50e559305b366fea2"}, + {file = "coverage-7.15.3-cp310-cp310-win_amd64.whl", hash = "sha256:179fbf847e6c3d90ea71bfd570fe57f1ddb1c51474754894871c1e11099efaa0"}, + {file = "coverage-7.15.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5f3f854ab4599d98f7799ac9b91e34e8ec9ebc9a6372ee8c1f3413a68cc8b5e9"}, + {file = "coverage-7.15.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75268348fee1f199653b8a846262aec5581c6bb008c4f58824959fb708cc688f"}, + {file = "coverage-7.15.3-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:21081739f6264cc594cad2d42b62befbd17633824022866c68720eb0c4b8d6b4"}, + {file = "coverage-7.15.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:718d366251b060c10731c7dd359de6caea72250036eb94576aa56dacbf830a11"}, + {file = "coverage-7.15.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fa1bbaa502a6e877f3ee67cbac3eba2bb637f623e454e6c37b81b38896dbd48f"}, + {file = "coverage-7.15.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:494880c9e60782610683f4eb9b65cce4f886673596b8f3cb2dfa079fc551c743"}, + {file = "coverage-7.15.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3db264ea689f9e8f9fa4fb9005fee4048c3bff4a547f4cfa27f5086cb0804ec0"}, + {file = "coverage-7.15.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4e869d4799674d67778e76ddbe2e26cf1673369262e231a8ec259421b1015fea"}, + {file = "coverage-7.15.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:696fc7a28bbf717aba8d2c6963d26702945c7832cb313ba3b323aa5b1afb3156"}, + {file = "coverage-7.15.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:3fe9be1c527497d047f770d88a0110189714c36383bb88384508f750c302bffa"}, + {file = "coverage-7.15.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:2400591f4b2e33746c70846388f8bb4c7e33b820e31cb8c6cb2f25305310438b"}, + {file = "coverage-7.15.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2e557178799282269412a672e5753f2179edfe1b3f0f19b0c98f8e72d482326a"}, + {file = "coverage-7.15.3-cp311-cp311-win32.whl", hash = "sha256:68ea6c947375982ae907e19e9d2ef156bd6e68e11f3566dd568d7f4ec974e715"}, + {file = "coverage-7.15.3-cp311-cp311-win_amd64.whl", hash = "sha256:28743dad31622e8c474b17446118037361f5b1f4f2ecdf72d4f6fde246d64446"}, + {file = "coverage-7.15.3-cp311-cp311-win_arm64.whl", hash = "sha256:c4398918c4fda32718191239e451fd86ac5ad1e8979b592f1921ee2d1f038965"}, + {file = "coverage-7.15.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:79a3e32e83227d83d9684459ed579769b56c369ac2d7313099b2d9e031d2e10f"}, + {file = "coverage-7.15.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:767feb87c5886d781d0a69fafd450a20826ddab7b79bce1665deb64d21441b60"}, + {file = "coverage-7.15.3-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:50951e37033c40548d777b8a8454a2cd622dba1136780065678dccaec307c47f"}, + {file = "coverage-7.15.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:63a4ff67364afb2cac826b8bbd78a5c50ce656a7b7137436b44d7b96a9271088"}, + {file = "coverage-7.15.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e95e42856509675fe26560310313a6117640e96f9a1e19bb3d220116a27c94c"}, + {file = "coverage-7.15.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:abad631cba27094b4631993f4c72e89ac0ca1b3a0236c7abaf8ca79aea619851"}, + {file = "coverage-7.15.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:2b0807f1f051dd82a234ad6acdb6f1425baede60be1e84e862496c8cc9262ab9"}, + {file = "coverage-7.15.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d8d6df7aeb5bc464040bbc9ae173d875785d3677ebc4307817997d622d74225e"}, + {file = "coverage-7.15.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:974471c506c9f5758808b47c1ebf7949ecd0848f5c1020e78675fefe5ff46866"}, + {file = "coverage-7.15.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:5cba0c9c13e35c86df7998f1afaf6b1da224a3a39e4da59bdabf60c148046dcb"}, + {file = "coverage-7.15.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:4d608dc36a364dce33acbf4fc3a50f9d2054c945f233bb0a2cdb4b90bfa17646"}, + {file = "coverage-7.15.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2395869280554a1941da904423c12660c39f721315e1c02d076a7fe0971382f0"}, + {file = "coverage-7.15.3-cp312-cp312-win32.whl", hash = "sha256:24f3b21840c3eb76cef3cc70b2bf6649010c64471a84a446538a39306e1ba04d"}, + {file = "coverage-7.15.3-cp312-cp312-win_amd64.whl", hash = "sha256:fa7b17902c3c1dd8a7adb52679b7f6340bba08443d710c8838e04db8cf62be2a"}, + {file = "coverage-7.15.3-cp312-cp312-win_arm64.whl", hash = "sha256:fcbe83fb7258eacd293bf5322d88807acb35ed12a5cfa99dd8215c083e3b0235"}, + {file = "coverage-7.15.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1182eed05674c63d40951fae27c43e822749f04d25f75df64c2e4fa3168678de"}, + {file = "coverage-7.15.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:c0c4b0d7c4cd56e470d0c9d8441f42e8a96cdfd95050fec027f1d4dd9f11006c"}, + {file = "coverage-7.15.3-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:5c9fce9f4998b0d50a753da765b9215a14decc7863822c89d72da7a89ca625b3"}, + {file = "coverage-7.15.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:7a47e2a0a0ace9241e70ee00e44520f88b843094603dd54303f1bafecd929c30"}, + {file = "coverage-7.15.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:95bad94f83807ae60ed76f3ac012f69b2605ac9ea81bee959a5a483f7fa09c10"}, + {file = "coverage-7.15.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:228e172a76c428bb17d1ab78a2ff188990b0597e5dbd291f52a4edf7412de049"}, + {file = "coverage-7.15.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cea9fb33887c99349996266f1fd60abe5af3577a90633392001d27ef46b4b66e"}, + {file = "coverage-7.15.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:81760de3155d7f52c21860c4046628dc6bed182f72e3c028e2b4fd46f65aa040"}, + {file = "coverage-7.15.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b47ea0a1d3a3d089826c6cbfad8429d7d8872e28e86baa95ddef330f6875da21"}, + {file = "coverage-7.15.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:5459ba486b2a5d58a6c05254779ecdf525e7f20174d0210ceda75ba40fdb8f2c"}, + {file = "coverage-7.15.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c59209f80a08dbfcdd5109a80dc623cd3b9d22895c85757d34f57a6e6e95570f"}, + {file = "coverage-7.15.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f863856c1779d4a5bb6a94698a2f9073e09c6706501f76f3e7780e72df97d21c"}, + {file = "coverage-7.15.3-cp313-cp313-win32.whl", hash = "sha256:00cbdc5e322927dc30c5e42b863819b1bb867cc66f26ab5372c585850876ab93"}, + {file = "coverage-7.15.3-cp313-cp313-win_amd64.whl", hash = "sha256:835528518a1d823cf336740324b2f335f7c01e609e74abcb5d5163b3e66661e3"}, + {file = "coverage-7.15.3-cp313-cp313-win_arm64.whl", hash = "sha256:0d2e1f2cbbf36b842f3e2aff8d118c60d677adb498bc6c7fa9c6838738f82767"}, + {file = "coverage-7.15.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:1e3bb08ad574bd9fb6a991f645728f70d333c1c1958dd5fcde65e24cb862813d"}, + {file = "coverage-7.15.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9e5860eaff02a0b7f1b73304bdf846596ee62ab3a78d25c68044ebf684cb1fef"}, + {file = "coverage-7.15.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:60874e5bd67f0b1bdbe42ab42c7bafa66a6fb8de88721af6df3f7a02713960cd"}, + {file = "coverage-7.15.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f9147be876e9d83765e0b82176674dc248a6b9283e25e01e7462611b97e9b731"}, + {file = "coverage-7.15.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61a01f8c3804760fcc5a3d31c4f3cab792d660d44e17bf7adeaf0ea51e07821e"}, + {file = "coverage-7.15.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:95bf3e7f26f792e25eb185f85a5a659d48479265176dcfe22b6f334fd0081b5c"}, + {file = "coverage-7.15.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:44c41eff9e413fed8740eca75d5438ebeb9d3e45e7cd37c67329213e7a72c764"}, + {file = "coverage-7.15.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:54146bafb61f3ba9895b43af0dd17eba01561d586d44ce84ea221b0cbbee5a9e"}, + {file = "coverage-7.15.3-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:af000dd1bb859ff8066fda4c79512ff938c798116540307226b373099c7b151f"}, + {file = "coverage-7.15.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:a1b82490577f3889950b5a04f18712aef0207243e0749d60fe28c3c73ebfd5fd"}, + {file = "coverage-7.15.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:c4fc90a60154c3e4b8a2dc206d6dbe852f1c235c249e0dc0cef909d032c9591a"}, + {file = "coverage-7.15.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f25bb884814a892948b4c20394db3f2364dd452d9492736479e7a493e63b0eb6"}, + {file = "coverage-7.15.3-cp314-cp314-win32.whl", hash = "sha256:722dbf8e7828fbcfe0dc8586167dc0a5ce85ad6ea171dbb21ed3f8d6581d3cb8"}, + {file = "coverage-7.15.3-cp314-cp314-win_amd64.whl", hash = "sha256:64d0845f9c3ed47302bed265c15ab4dbb64aa4ec1490839b8e328f4e7fa914d2"}, + {file = "coverage-7.15.3-cp314-cp314-win_arm64.whl", hash = "sha256:69bc14684f8fbbee9f9dbaa4fe79719b0da9725fc37956785c06ec365acf6926"}, + {file = "coverage-7.15.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:f92df943c24b96cb215ca26b4f6a2283e63c5db80f1635aceea7fff11311917b"}, + {file = "coverage-7.15.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:66591c46bdd2971d3ae2bc503a5f0459c2edcaf6b7e045b292000cc95bc6cb95"}, + {file = "coverage-7.15.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:caa64458b81b18bfc67cdf1f6dc02b23e3edc672f2f8e11771fad75865415a43"}, + {file = "coverage-7.15.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:447f5421ccf5475956cf516d4ca1d575f487947b6f4e11f9d80c6aefe24b3dc8"}, + {file = "coverage-7.15.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a0c77ef8cd483a4987a5d12d1d9d5f7ee598dfdc6c0844417d847e5768dc779"}, + {file = "coverage-7.15.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0b273f4ff657446a06c2d85bf80e134fa869a92852ba5f87854a70e1fb44da77"}, + {file = "coverage-7.15.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:daea8c4fafa22488600405be2c2be525a9406fba3fc0a83acc726db3e14e2005"}, + {file = "coverage-7.15.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:93ff57c530f3fa7aa69f92fb9b8892b8aa82712aa970842f4abf28657f42fb57"}, + {file = "coverage-7.15.3-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:4df21bef8b800eebda9018f53d49c9ace3aeb0090c850139b27923aafcb83e91"}, + {file = "coverage-7.15.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:db567b02685f26034adcbd85055f80d12cdf02111b8ed00886093d98b2874ce2"}, + {file = "coverage-7.15.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:5318dd51b8600b947e058cf5a4fe54d183d9d13c49b97b64ca7be05a34df9bef"}, + {file = "coverage-7.15.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c995bfa383c54704839b6c4c2627a1c00895597ada0e5e8190c81d8bd620555c"}, + {file = "coverage-7.15.3-cp314-cp314t-win32.whl", hash = "sha256:6433fafb8da0e1d02eb53411e0ecdadb6b88f0224fdc23317e703c0e88937d42"}, + {file = "coverage-7.15.3-cp314-cp314t-win_amd64.whl", hash = "sha256:fe578952b1b29fe8c777f43f241d49efac4b56724a3434f5d22ebe3c208df429"}, + {file = "coverage-7.15.3-cp314-cp314t-win_arm64.whl", hash = "sha256:d2e1acb7aee29dfa8f3e48c23f36670898baca1209d9bdd3985a50c7f982165e"}, + {file = "coverage-7.15.3-py3-none-any.whl", hash = "sha256:da78fa6fc7dafe4212839173133ee85afcf42c5cd5f3e47fa7c1c210453b445e"}, + {file = "coverage-7.15.3.tar.gz", hash = "sha256:ae7ea5a4614acf399ef0483c4cb34f8f8f01df848d8fcbe7d3ce0865733f1c4d"}, ] [package.extras] @@ -721,103 +671,105 @@ files = [ [[package]] name = "librt" -version = "0.11.0" +version = "0.13.0" description = "Mypyc runtime library" optional = false python-versions = ">=3.9" groups = ["dev"] markers = "platform_python_implementation != \"PyPy\"" files = [ - {file = "librt-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6e94ebfcfa2d5e9926d6c3b9aa4617ffc42a845b4321fb84021b872358c82a0f"}, - {file = "librt-0.11.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ae627397a2f351560440d872d6f7c8dbb4072e57868e7b2fc5b8b430fe489d45"}, - {file = "librt-0.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:dc329359321b67d24efdf4bc69012b0597001649544db662c001db5a0184794c"}, - {file = "librt-0.11.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:7e82e642ab0f7608ce2fe53d76ca2280a9ee33a1b06556142c7c6fe80a86fc33"}, - {file = "librt-0.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:88145c15c67731d54283d135b03244028c750cc9edc334a96a4f5950ebdb2884"}, - {file = "librt-0.11.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:9d36a51b3d93320b686588e27123f4995804dbf1bce81df78c02fc3c6eea9280"}, - {file = "librt-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d00f3ac06a2a8b246327f11e186a53a100a4d5c7ed52346367e5ec751d51586c"}, - {file = "librt-0.11.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:461bbceede621f1ffb8839755f8663e886087ee7af16294cab7fb4d782c62eeb"}, - {file = "librt-0.11.0-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:0cad8a4d6a8ff03c9b76f9414caccd78e7cfbc8a2e12fa334d8e1d9932753783"}, - {file = "librt-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f37aa505b3cf60701562eddb32df74b12a9e380c207fd8b06dd157a943ac7ea0"}, - {file = "librt-0.11.0-cp310-cp310-win32.whl", hash = "sha256:94663a21534637f0e787ec2a2a756022df6e5b7b2335a5cdd7d8e33d68a2af89"}, - {file = "librt-0.11.0-cp310-cp310-win_amd64.whl", hash = "sha256:dec7db73758c2b54953fd8b7fe348c45188fe26b39ee18446196edd08453a5d4"}, - {file = "librt-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:93d95bd45b7d58343d8b90d904450a545144eec19a002511163426f8ab1fae29"}, - {file = "librt-0.11.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ee278c769a713638cdacd4c0436d72156e75df3ebc0166ab2b9dc43acc386c9"}, - {file = "librt-0.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f230cb1cbc9faaa616f9a678f530ebcf186e414b6bcbd88b960e4ba1b92428d5"}, - {file = "librt-0.11.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:5d63c855d86938d9de93e265c9bd8c705b51ec494de5738340ee93767a686e4b"}, - {file = "librt-0.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:993f028be9e96a08d31df3479ac80d99be374d17f3b78e4796b3fd3c913d4e89"}, - {file = "librt-0.11.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:258d73a0aa66a055e65b2e4d1b8cdb23b9d132c5bb915d9547d804fcaed116cc"}, - {file = "librt-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0827efe7854718f04aaddf6496e96960a956e676fe1d0f04eb41511fd8ad06d5"}, - {file = "librt-0.11.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7753e57d6e12d019c0d8786f1c09c709f4c3fcc57c3887b24e36e6c06ec938b7"}, - {file = "librt-0.11.0-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:11bd19822431cc21af9f27374e7ae2e58103c7d98bda823536a6c47f6bb2bb3d"}, - {file = "librt-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:22bdf239b219d3993761a148ffa134b19e52e9989c84f845d5d7b71d70a17412"}, - {file = "librt-0.11.0-cp311-cp311-win32.whl", hash = "sha256:46c60b61e308eb535fbd6fa622b1ee1bb2815691c1ad9c98bf7b84952ec3bc8d"}, - {file = "librt-0.11.0-cp311-cp311-win_amd64.whl", hash = "sha256:902e546ff044f579ff1c953ff5fce97b636fe9e3943996b2177710c6ef076f73"}, - {file = "librt-0.11.0-cp311-cp311-win_arm64.whl", hash = "sha256:65ac3bc20f78aa0ee5ae84baa68917f89fef4af63e941084dd019a0d0e749f0c"}, - {file = "librt-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b87504f1690a23b9a2cca841191a04f83895d4fc2dd04df91d82b1a04ca2ad46"}, - {file = "librt-0.11.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40071fc5fe0ce8daa6de616702314a01e1250711682b0523d6ab8d4525910cb3"}, - {file = "librt-0.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:137e79445c896a0ea7b265f52d23954e05b64222ee1af69e2cb34219067cbb67"}, - {file = "librt-0.11.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:cca6644054e78746d8d4ef238681f9c34ff8b584fe6b988ecebb8db3b15e622a"}, - {file = "librt-0.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d5b0eea49f5562861ee8d757a32ef7d559c1d35be2aaaa1ec28941d74c9ffc8a"}, - {file = "librt-0.11.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0d1029d7e1ae1a7e647ed6fb5df8c4ce2dffefb7a9f5fd1376a4554d96dac09f"}, - {file = "librt-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bc3ce6b33c5828d9e80592011a5c584cb2ce86edbc4088405f70da47dc1d1b3b"}, - {file = "librt-0.11.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:936c5995f3514a42111f20099397d8177c79b4d7e70961e396c6f5a0a3566766"}, - {file = "librt-0.11.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:9bc0ca6ad9381cbe8e4aa6e5726e4c80c78115a6e9723c599ed1d73e092bc49d"}, - {file = "librt-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:070aa8c26c0a74774317a72df8851facc7f0f012a5b406557ac56992d92e1ec8"}, - {file = "librt-0.11.0-cp312-cp312-win32.whl", hash = "sha256:6bf14feb84b05ae945277395451998c89c54d0def4070eb5c08de544930b245a"}, - {file = "librt-0.11.0-cp312-cp312-win_amd64.whl", hash = "sha256:75672f0bc524ede266287d532d7923dbce94c7514ad07627bac3d0c6d92cc4d9"}, - {file = "librt-0.11.0-cp312-cp312-win_arm64.whl", hash = "sha256:2f10cf143e4a9bb0f4f5af568a00df94a2d69ef41c2579584454bb0fe5cc642c"}, - {file = "librt-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:78dc31f7fdfe9c9d0eb0e8f42d139db230e826415bbcabd9f0e9faaaee909894"}, - {file = "librt-0.11.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:fa475675db22290c3158e1d42326d0f5a65f04f44a0e68c3630a25b53560fb9c"}, - {file = "librt-0.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:621db29691044bdeda22e789e482e1b0f3a985d90e3426c9c6d17606416205ea"}, - {file = "librt-0.11.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:a9010e2ed5b3a9e158c5fd966b3ab7e834bb3d3aacc8f66c91dd4b57a3799230"}, - {file = "librt-0.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7c39513d8b7477a2e1ed8c43fc21c524e8d5a0f8d4e8b7b074dbdbe7820a08e2"}, - {file = "librt-0.11.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:7aef3cf1d5af86e770ab04bfd993dfc4ae8b8c17f66fb77dd4a7d50de7bbb1a3"}, - {file = "librt-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:557183ddc36babe46b27dd60facbd5adb4492181a5be887587d57cda6e092f21"}, - {file = "librt-0.11.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:83d3e1f72bd42f6c5c0b7daec530c3f829bd02db42c70b8ddf0c2d90a2459930"}, - {file = "librt-0.11.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:4ce1f21fbe589bc1afd7872dece84fb0e1144f794a288e58a10d2c54a55c43be"}, - {file = "librt-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:970b09f7044ea2b64c9da42fd3d335666518cfd1c6e8a182c95da73d0214b41e"}, - {file = "librt-0.11.0-cp313-cp313-win32.whl", hash = "sha256:78fddc31cd4d3caa897ad5d31f856b1faadc9474021ad6cb182b9018793e254e"}, - {file = "librt-0.11.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ca8aa88751a775870b764e93bad5135385f563cb8dcee399abf034ea4d3cb47"}, - {file = "librt-0.11.0-cp313-cp313-win_arm64.whl", hash = "sha256:96f044bb325fd9cf1a723015638c219e9143f0dfbc0ca54c565df2b7fc748b44"}, - {file = "librt-0.11.0-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:4a017a95e5837dc15a8c5661d60e05daa96b90908b1aa6b7acdf443cd25c8ebd"}, - {file = "librt-0.11.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:b1ecbd9819deccc39b7542bf4d2a740d8a620694d39989e58661d3763458f8d4"}, - {file = "librt-0.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7da327dacd7be8f8ec36547373550744a3cc0e536d54665cd83f8bcd961200e8"}, - {file = "librt-0.11.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:0dc56b1f8d06e60db362cc3fdae206681817f86ce4725d34511473487f12a34b"}, - {file = "librt-0.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:05fb8fb2ab90e21c8d12ea240d744ad514da9baf381ebfa70d91d20d21713175"}, - {file = "librt-0.11.0-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cae74872be221df4374d10fec61f93ed1513b9546ea84f2c0bf73ab3e9bd0b03"}, - {file = "librt-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:32bcc918c0148eb7e3d57385125bac7e5f9e4359d05f07448b09f6f778c2f31c"}, - {file = "librt-0.11.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:f9743fc99135d5f78d2454435615f6dec0473ca507c26ce9d92b10b562a280d3"}, - {file = "librt-0.11.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:5ba067f4aadae8fda802d91d2124c90c42195ff32d9161d3549e6d05cfe26f96"}, - {file = "librt-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:de3bf945454d032f9e390b85c4072e0a0570bf825421c8be0e71209fa65e1abe"}, - {file = "librt-0.11.0-cp314-cp314-win32.whl", hash = "sha256:d2277a05f6dcb9fd13db9566aac4fabd68c3ea1ea46ee5567d4eef8efa495a2f"}, - {file = "librt-0.11.0-cp314-cp314-win_amd64.whl", hash = "sha256:ab73e8db5e3f564d812c1f5c3a175930a5f9bc96ccb5e3b22a34d7858b401cf7"}, - {file = "librt-0.11.0-cp314-cp314-win_arm64.whl", hash = "sha256:aea3caa317752e3a466fa8af45d91ee0ea8c7fdd96e42b0a8dd9b76a7931eba1"}, - {file = "librt-0.11.0-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:d1b36540d7aaf9b9101b3a6f376c8d8e9f7a9aec93ed05918f2c69d493ffef72"}, - {file = "librt-0.11.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:efbb343ab2ce3540f4ecbe6315d677ed70f37cd9a72b1e58066c918ca83acbaa"}, - {file = "librt-0.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aa0dd688aab3f7914d3e6e5e3554978e0383312fb8e771d84be008a35b9ee548"}, - {file = "librt-0.11.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:f5fb36b8c6c63fdcbb1d526d94c0d1331610d43f4118cc1beb4efef4f3faacb2"}, - {file = "librt-0.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4a9a237d13addb93715b6fee74023d5ee3469b53fce527626c0e088aa585805f"}, - {file = "librt-0.11.0-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5ddd17bd87b2c56ddd60e546a7984a2e64c4e8eab92fb4cf3830a48ad5469d51"}, - {file = "librt-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bd43992b4473d42f12ff9e68326079f0696d9d4e6000e8f39a0238d482ba6ee2"}, - {file = "librt-0.11.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:f8e3e8056dd674e279741485e2e512d6e9a751c7455809d0114e6ebf8d781085"}, - {file = "librt-0.11.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:c1f708d8ae9c56cf38a903c44297243d2ec83fd82b396b977e0144a3e76217e3"}, - {file = "librt-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0add982e0e7b9fc14cf4b33789d5f13f66581889b88c2f58099f6ce8f92617bd"}, - {file = "librt-0.11.0-cp314-cp314t-win32.whl", hash = "sha256:2b481d846ac894c4e8403c5fd0e87c5d11d6499e404b474602508a224ff531c8"}, - {file = "librt-0.11.0-cp314-cp314t-win_amd64.whl", hash = "sha256:28edb433edde181112a908c78907af28f964eabc15f4dd16c9d66c834302677c"}, - {file = "librt-0.11.0-cp314-cp314t-win_arm64.whl", hash = "sha256:dee008f20b542e3cd162ba338a7f9ec0f6d23d395f66fe8aeeec3c9d067ea253"}, - {file = "librt-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6bd72d903911d995ab666dbd1871f8b1e80925a699af8063fbf50053329fb05f"}, - {file = "librt-0.11.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0ef69ac715f3cd8e5cd252cb2aebfa72c015492aacc339d5d7bf8fef3c62c677"}, - {file = "librt-0.11.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:624a40c4a4ad7773315c287276cd024509b2c66ff5904f504bfc08d2c70293ab"}, - {file = "librt-0.11.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:41dc19fe150b69716c8ece4f76773a9e8813fe3e35e032a58b4d46423fb8d7c0"}, - {file = "librt-0.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4e8bd98ea9c47ae90b319a087ab28dac493f1ffbc1ecd1f28fcdbf3b7e1108d1"}, - {file = "librt-0.11.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:84308fc49423ce6475d1c5d1985cd69a8ca9f0325fc7d5f81bb690a3f3625d4e"}, - {file = "librt-0.11.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:ff0fbaf5f44a21beeb0110f2ab64f45135a9536a834b79c0d1ef018f2786bbfa"}, - {file = "librt-0.11.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:9c028a9442a18e266955d364ce42259136e79a7ba14d773e0d778d5f70cd56f1"}, - {file = "librt-0.11.0-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:9f1692105a02bcf853f355032a5fdc5494358ef83d8fd22d16de375c85cec3f5"}, - {file = "librt-0.11.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7a80a71e1fda83cc752a9141e87aae7fef279538597564d670e9ce513f286192"}, - {file = "librt-0.11.0-cp39-cp39-win32.whl", hash = "sha256:140695816ddf3c86eb972981a26f35efd871c44b0c3aed44c8cd01749386617f"}, - {file = "librt-0.11.0-cp39-cp39-win_amd64.whl", hash = "sha256:92f7ff819c197fc30473190a12c2856f325ac90aabfccbeb2072d28cc2e234e3"}, - {file = "librt-0.11.0.tar.gz", hash = "sha256:075dc3ef4458a278e0195cbf6ac9d38808d9b906c5a6c7f7f79c3888276a3fb1"}, + {file = "librt-0.13.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:34e47058fcc69a313293d6dee94216a4f30c929ae6f2476e58c5ba635aa639d5"}, + {file = "librt-0.13.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dbdd5b6509d0c2a8fe72cf494c299a61dbd58142a90a4190664ae159e4a7b547"}, + {file = "librt-0.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2e56ea4ee4df77585a6b5c138f6538680886024fa559f5b55bd14b12e98e67b2"}, + {file = "librt-0.13.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:f1f9cc4d09a46d9cb3c2063ae100629d3f52a6517c3c08c2f4c9828261883929"}, + {file = "librt-0.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f125f5d46b20f89dc5587a55cc416b4ba2a5b2ffda36d048ee120e17598a653a"}, + {file = "librt-0.13.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:2608d3b39f9e0b4a66a130d9150c615cba40a5090d25eeeaa225e0e46de8c0ac"}, + {file = "librt-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9fd35e95ab5e45c3901d37110263c7db85a961110f5460588fe37f8c131f88a7"}, + {file = "librt-0.13.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5f31b0aa13c9b04370d4da6be1ab7779776b3a075cceb6747a39a4be85fe1e40"}, + {file = "librt-0.13.0-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:0b795f5fc70fbbb787ceaf79bb3a0d627bcc33c53de51741755263ec406b775a"}, + {file = "librt-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:36b306a623aaad96fe4b378692b54f9c0789fccd833b9851753d5fbf6138cfde"}, + {file = "librt-0.13.0-cp310-cp310-win32.whl", hash = "sha256:a3762e75fcac8c9e4dacaaf438bffd9003e2ca2c531b756f3c0035deefa674c8"}, + {file = "librt-0.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:d63bae12a8aeb51380be3438e4dc4bd27354d0f8e19166b2f44e3e94d6f552dc"}, + {file = "librt-0.13.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1b5a7bbff495baedbd9b916c367d66854008f8f3b575908ded477c499dc60082"}, + {file = "librt-0.13.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:34bc7938b9fdf14fe32a406c19c71faf894c5cee7e7474bd0be2f17200b82d14"}, + {file = "librt-0.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f40e56b61b41be5f7dec938cfeffd660668cf4b5e72c78e7bd671d66b7bc2c79"}, + {file = "librt-0.13.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:9c5d02b89de5acd0379a51ec44a89476fb03df6145442e1c8ecd6bee2f91b176"}, + {file = "librt-0.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7db9a3ff32ef5f7d1703d93831a3316cdf0b537de6a1cc03cc8fdd09b9194e89"}, + {file = "librt-0.13.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3dbb2a31882456cadc7053378e81ad7ed7693db4ac9f98ab5f81ef034aa8ec9f"}, + {file = "librt-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c6014e3c80f9c1fe268ef8b0e0ef113bac672cc032f2f93866e7ddad4f3e663d"}, + {file = "librt-0.13.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:091b60a4d2174fc1ec5c34cdc0b72efb6224753d76b7da61ebeab7a191aec8bd"}, + {file = "librt-0.13.0-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:66cb1138f384a191a6d75f986064841fcfdc0cea98f7bd9c9ab9b38049917588"}, + {file = "librt-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:17221a7569f8f292aa0014226e48aa25b8c2b08da18088cd230953d0ea0f9cd1"}, + {file = "librt-0.13.0-cp311-cp311-win32.whl", hash = "sha256:fc67741da44c6eaa90e01eafb586bbba9b51eb5b6ed381ee6f5ae72eb3316d21"}, + {file = "librt-0.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:cc99dfb62b23c9207c33d0be8a2e2af7a42e21e6ea388b380a0c948c7b88953b"}, + {file = "librt-0.13.0-cp311-cp311-win_arm64.whl", hash = "sha256:40ccd13c252d3fe473ffc8a57be7565abc8b64cf1b108344c859d5164f7f3e0c"}, + {file = "librt-0.13.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:30536798f4504c0fad0885b1d371b0539abb081e4570c9d7c641cb51141b49f0"}, + {file = "librt-0.13.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:93d24ebb82aa4420b1409c389e7857bc35bd0b668007ac8172427d5c73cc8cc5"}, + {file = "librt-0.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cb8a1adce42d8b75485a5d56a9623a50bcab995b6079f1dac59fc44034dd93d9"}, + {file = "librt-0.13.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:0763ca2ab66058174f9dee426dc64f5e0a89c24a7df8d3fe3f1836c04e25de4b"}, + {file = "librt-0.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b222493da6e7b6199db9bd79502436cf5a27da3c1f7fa83c7e285444fc93fd03"}, + {file = "librt-0.13.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:fadc63331f4388c3dc90090448f682a7e9feafc11481391c1e94f2f907a3976e"}, + {file = "librt-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:70d9c62a4cffd9f23396cd5ef93fc5d11b31596b9b7d6306074abe3d5fcf09bd"}, + {file = "librt-0.13.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:66c0e7e6b02a155576df2c77ec933a70b72da726e248c494abf690923e624348"}, + {file = "librt-0.13.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:ac04bcd3328eb91d99dfedf6a60d9c1f15d3434e6f6daf922f0420f7d90b85c7"}, + {file = "librt-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:db327e7271e653c32040b85ae6188059c924b57d7e1e29f935523fa017cd4e82"}, + {file = "librt-0.13.0-cp312-cp312-win32.whl", hash = "sha256:860bd1d8ba48456ce08feaf8d343a8aaeb2fa086f2bcaa2a923fa3f7a3ff9aa3"}, + {file = "librt-0.13.0-cp312-cp312-win_amd64.whl", hash = "sha256:e54a315caf843c8d77e388cadc56ea9ded569935ee2d2347d7ea94992e5aa6fa"}, + {file = "librt-0.13.0-cp312-cp312-win_arm64.whl", hash = "sha256:c718e99a0992127af84385378460db624103b559ab260435abcfe77a4e4ed1c1"}, + {file = "librt-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a468951af16155824e88bdd8326ebe5bdb371f3ec0ac04642994b98201d914f3"}, + {file = "librt-0.13.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ae01d8512cc17079e53425635327dbf3f7ff57a42c00dec348bf79791c56444c"}, + {file = "librt-0.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:32c26893cd085c1efe83219e78d866da23fb20a066101b8f68210004361d224c"}, + {file = "librt-0.13.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:5929da1981a46bcf4b28b1b9499905f0ff58e2419da402a048234e9783acbc4b"}, + {file = "librt-0.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:94b85d664d777bab6c0d709416cb42938251fda9e221b79e3a2215d85df5f4f9"}, + {file = "librt-0.13.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:531b2df3e9fe96b1fcf73a6d165921e4656be5f58d631d384ebce344298368db"}, + {file = "librt-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:109b84a9edf69ad89dc1f66358659e14a031baca95e3e5b0060bd903ede8efd6"}, + {file = "librt-0.13.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:1304368a3e7ffc3e9db986796cc5326fdb5943a3567ecc137cff318e4240c0e7"}, + {file = "librt-0.13.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:e4f9b472e7d308d94b62c801982065661158c6ed02790d6c7ddb4337cea0f9c1"}, + {file = "librt-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9f836c37478f167a81200d8c8b2c920a22224564bed2c23d7aeec760965c367a"}, + {file = "librt-0.13.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl", hash = "sha256:4000d961ff9598ac6ea603c6c836a5ed49bc205ade5fc378b998dfe1e2c36628"}, + {file = "librt-0.13.0-cp313-cp313-win32.whl", hash = "sha256:79e44cff71750d299d61a678e49995b0d5935a9cda238c2574daeca3ba536927"}, + {file = "librt-0.13.0-cp313-cp313-win_amd64.whl", hash = "sha256:54dab44a847d5ad1acd05c8a83fe518ae685516ecf4d3f7cc6e3df2a66767650"}, + {file = "librt-0.13.0-cp313-cp313-win_arm64.whl", hash = "sha256:d4cb6fbfdf874340ab5e51450753c0f817b6958a3621125ee695bbc3de866566"}, + {file = "librt-0.13.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:25218d94b1d2cbc0ba1d8a3f9dc9af578d9646e5ed16443a70cde1dfdcce6d71"}, + {file = "librt-0.13.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:f26629539d4893c2957a16c41bb058e1e135c1f150f6a2e25ed047f64cf3f5c6"}, + {file = "librt-0.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a4517d47b2b8af26975a406fba7d314de9696d864252e0257c6ea90238cfe27f"}, + {file = "librt-0.13.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:f19e181de5b3a1148bb3420b8c4b0b0ea0fce6950099724ad151d6cea5acc180"}, + {file = "librt-0.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:22034924f5b42d5a56371cf271771bfeaabf235a7a8b6264bef2d20013f786c6"}, + {file = "librt-0.13.0-cp314-cp314-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c7897db4e95e22468bdda33d8e012ceacd0182abf001e6389d763f0def6286b9"}, + {file = "librt-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1ce61b3746545029d4f5c17d6bd74b676254ad98433086c846ffb5e8fa73f007"}, + {file = "librt-0.13.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:46c330e82565962c761dbce7941be2cff7db674ee807455a8d0cadc5f9b759b0"}, + {file = "librt-0.13.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:375f5af8f99cbaa99dd293af986e3d57caabc9ba81a5d3f021603764854197a1"}, + {file = "librt-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:9320d34c3376ae204b2cd176e8d4883a013934e0aef822f1aed9c536490c275d"}, + {file = "librt-0.13.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl", hash = "sha256:9af313c66157a69dc69ea0059a66961692250e0dc95af9c385a48ffb770a0d16"}, + {file = "librt-0.13.0-cp314-cp314-win32.whl", hash = "sha256:f2a7253458e34f33543551394ae4fe104b497ec2a65ac266074de64c1df82e37"}, + {file = "librt-0.13.0-cp314-cp314-win_amd64.whl", hash = "sha256:a3dfe4edf10e8ed7e55b026a8bfc2c2a8704218b659cd4bffdf604fab966dc39"}, + {file = "librt-0.13.0-cp314-cp314-win_arm64.whl", hash = "sha256:68a5faee4bba381cb93b5961f684a514cf0053cb92308ff9c792c2fea0b174c6"}, + {file = "librt-0.13.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:a38fb81d8376dfa2f8963b265fec07637802b0d01e2a127c19c66cb070fb24f5"}, + {file = "librt-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:d4c8d9bd5abce34b2e75edb3bf37ab0f34e49b1f915a40ae8468eb7c85bc5b46"}, + {file = "librt-0.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:387e2f1d27e89bffe0d3f520f0da0662c973fd607ca16c1808f8a5085419485e"}, + {file = "librt-0.13.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:4f6db193d2e5e0ed60359b9a5a682cd67205d0d3b1e459a867dd4b5c4e7eaa7a"}, + {file = "librt-0.13.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d38604854e8d22faadf683ec6c02bb0f886e2ba56ef981a1c36ee275f21ea22"}, + {file = "librt-0.13.0-cp314-cp314t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:371f7ce73026815dafd51c50ce38416e91428b28c4b2ec97cd39271164b0045c"}, + {file = "librt-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:3aaedf52171bee90860704c560bc798fe83b76247df47568e0197e9b13c735a0"}, + {file = "librt-0.13.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:96bad8725a4f196a798366c25ce075d1f7543a4ec045ffc13e6a7ec095cdab04"}, + {file = "librt-0.13.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:6bf6a559ffe4a93bbea6cf31ddf01a7fd9ba342ef51f27beb178e318b74acd61"}, + {file = "librt-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:301067672387902c55f94b51d5022304b36c966ea9fe1f21caab99a9bef487c9"}, + {file = "librt-0.13.0-cp314-cp314t-win32.whl", hash = "sha256:5fdcf34f86de8fb66d7dc7589f96ba91c4aa46671200d400e6fd6f109a483f18"}, + {file = "librt-0.13.0-cp314-cp314t-win_amd64.whl", hash = "sha256:260c33e92263fa629b4f6d3c51967a1c2158fe6c33237aaa3ebeac586b085259"}, + {file = "librt-0.13.0-cp314-cp314t-win_arm64.whl", hash = "sha256:2f281549a4c52ac7bb97997f14353f8bd0e53a34ca0dad1c905cfd0b4a58ae99"}, + {file = "librt-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f442e3954b1addc759faae22a7c9a3f1e16d7d1db3f484279dc27d62e06968fa"}, + {file = "librt-0.13.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e786428f291dd2d2f1cbfc0e0caa45a2e395fab0ad3e2c9314daa8873414390"}, + {file = "librt-0.13.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:21b7ac084f701a9cdff6139745a6620579d65a9379ac2d9d50a86368b109e63c"}, + {file = "librt-0.13.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.manylinux_2_28_i686.whl", hash = "sha256:a6e556d6aba31c93dd97ce661d66614d2429c0a3923f9dc8f0af7e8df10223a4"}, + {file = "librt-0.13.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3657346f867469e962549435aa05fd15330b1d6a92829f8e27988e194382d005"}, + {file = "librt-0.13.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:791aa18a373b90da8ac3c44fc77544f33fdf53ae403acdce9b39f1c26b4a3b94"}, + {file = "librt-0.13.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d6fb0eaa108814581c4d3bfbd068c3fb6757812a81415008d1bae08267cca360"}, + {file = "librt-0.13.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:a001519c315d5db40710f2665d32c4791f1d4779fc96a9423fd18d92c8b9ac7b"}, + {file = "librt-0.13.0-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:d9188caac26e47671b52836a5e2a49873a7fc11c673b0c122d22515f98bc14e1"}, + {file = "librt-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:05d96b80b95d3a2721b619f8982b8558848b04875bb4772fd54842b59f61dd97"}, + {file = "librt-0.13.0-cp39-cp39-win32.whl", hash = "sha256:c3cd253cf32fe4f4662960d6bf7d55cb8be0c31a5d644a4d48aeafebaff3409a"}, + {file = "librt-0.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:b15e26cc0fe622d0c67e98bee6ef6bc8f792e20ee3006aa12627a00463d9399f"}, + {file = "librt-0.13.0.tar.gz", hash = "sha256:1d2a610c14ac0d0750ee0a3ab8548e83155258387891caaca04def4bf7289781"}, ] [[package]] @@ -990,61 +942,62 @@ files = [ [[package]] name = "mypy" -version = "2.1.0" +version = "2.3.0" description = "Optional static typing for Python" optional = false python-versions = ">=3.10" groups = ["dev"] files = [ - {file = "mypy-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:11a6beb180257a805961aea9ec591bbd0bd17f1e18d35b8456d57aee5bedfedc"}, - {file = "mypy-2.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8ef78c1d306bbf9a8a12f526c44902c9c28dffd6c52c52bf6a72641ce18d3849"}, - {file = "mypy-2.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c209a90853081ff01d01ee895cafe10f7db1474e0d95beaeef0f6c1db9119bbd"}, - {file = "mypy-2.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47cebf61abde7c088a4e27718a8b13a81655686b2e9c251f5c0915a802248166"}, - {file = "mypy-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d57a90ae5e872138a425ec328edbc9b235d1934c4377881a33ec05b341acc9a8"}, - {file = "mypy-2.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:aea7f7a8a55b459c34275fc468ada6ca7c173a5e43a68f5dbe588a563d8a06b8"}, - {file = "mypy-2.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:c989640253f0d76843e9c6c1bbf4bd48c5e85ada61bde4beb37cb3eca035685e"}, - {file = "mypy-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a683016b16fe2f572dc04c72be7ee0504ac1605a265d0200f5cea695fb788f41"}, - {file = "mypy-2.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1a293c534adb55271fef24a26da04b855540a8c13cc07bc5917b9fd2c394f2ca"}, - {file = "mypy-2.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7406f4d048e71e576f5356d317e5b0a9e666dfd966bd99f9d14ca06e1a341538"}, - {file = "mypy-2.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e0210d626fc8b31ccc90233754c7bc90e1f43205e85d96387f7db1285b55c398"}, - {file = "mypy-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3712c20deed54e814eaaa825603bada8ea1c390670a397c95b98405347acc563"}, - {file = "mypy-2.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fcaa0e479066e31f7cceb6a3bea39cb22b2ff51a6b2f24f193d19179ba17c389"}, - {file = "mypy-2.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:0b1a5260c95aa443083f9ed3592662941951bca3d4ca224a5dc517c38b7cf666"}, - {file = "mypy-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:244358bf1c0da7722230bce60683d52e8e9fd030554926f15b747a84efb5b3af"}, - {file = "mypy-2.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4ec7c57657493c7a75534df2751c8ae2cda383c16ecc55d2106c54476b1b16f6"}, - {file = "mypy-2.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d8161b6ff4392410023224f0969d17db93e1e154bc3e4ba62598e720723ae211"}, - {file = "mypy-2.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bf03e12003084a67395184d3eb8cbd6a489dc3655b5664b28c210a9e2403ab0b"}, - {file = "mypy-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:20509760fd791c51579d573153407d226385ec1f8bcce55d730b354f3336bc22"}, - {file = "mypy-2.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:6753d0c1fdd6b1a23b9e4f283ce80b2153b724adcb2653b20b85a8a28ac6436b"}, - {file = "mypy-2.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:98ebb6589bb3b6d0c6f0c459d53ca55b8091fbc13d277c4041c885392e8195e8"}, - {file = "mypy-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:35aac3bb114e03888f535d5eb51b8bafbb3266586b599da1940f9b1be3ec5bd5"}, - {file = "mypy-2.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8de55a8c861f2a49331f807be98d90caeceeef520bde13d43a160207f8af613e"}, - {file = "mypy-2.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5fdf2941a07434af755837d9880f7d7d25f1dacb1af9dcd4b9b66f2220a3024e"}, - {file = "mypy-2.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e195b817c13f02352a9c124301f9f30f078405444679b6753c1b96b6eed37285"}, - {file = "mypy-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5431d42af987ebd92ba2f71d45c85ed41d8e6ca9f5fd209a69f68f707d2469e5"}, - {file = "mypy-2.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:767fe8c66dc3e01e19e1737d4c38ebefead16125e1b8e58ad421903b376f5c65"}, - {file = "mypy-2.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:ecfe70d43775ab99562ab128ce49854a362044c9f894961f68f898c23cb7429d"}, - {file = "mypy-2.1.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:7354c5a7f69d9345c3d6e69921d57088eea3ddeeb6b20d34c1b3855b02c36ec2"}, - {file = "mypy-2.1.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:49890d4f76ac9e06ec117f9e09f3174da70a620a0c300953d8595c926e80947f"}, - {file = "mypy-2.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:761be68e023ef5d94678772396a8af1220030f80837a3afd8d0aef3b419666f4"}, - {file = "mypy-2.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c90345fc182dc363b891350457ec69c35140858538f38b4540845afcc32b1aef"}, - {file = "mypy-2.1.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b84802e7b5a6daf1f5e15bc9fcd7ddae77be13981ffab037f1c67bb84d67d135"}, - {file = "mypy-2.1.0-cp314-cp314-win_amd64.whl", hash = "sha256:022c771234936ceac541ebaf836fe9e2abeb3f5e09aff21588fe543ff006fe21"}, - {file = "mypy-2.1.0-cp314-cp314-win_arm64.whl", hash = "sha256:498207db725cec88829a6a5c2fc771205fd043719ef98bc49aba8fb9fc4e6d57"}, - {file = "mypy-2.1.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:7d5e5cad0efeba72b93cd17490cc0d69c5ac9ca132994fe3fb0314808aeeb83e"}, - {file = "mypy-2.1.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ff715050c127d724fd260a2e666e7747fdd83511c0c47d449d98238970aef780"}, - {file = "mypy-2.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:82208da9e09414d520e912d3e462d454854bed0810b71540bb016dcbca7308fd"}, - {file = "mypy-2.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e79ebc1b904b84f0310dff7469655a9c36c7a68bddb37bdd42b67a332df61d08"}, - {file = "mypy-2.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:e583edc957cfb0deb142079162ae826f58449b116c1d442f2d91c69d9fced081"}, - {file = "mypy-2.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b33b6cd332695bba180d55e717a79d3038e479a2c49cc5eb3d53603409b9a5d7"}, - {file = "mypy-2.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:4f910fe825376a7b66ef7ca8c98e5a149e8cd64c19ae71d84047a74ee060d4e6"}, - {file = "mypy-2.1.0-py3-none-any.whl", hash = "sha256:a663814603a5c563fb87a4f96fb473eeb30d1f5a4885afcf44f9db000a366289"}, - {file = "mypy-2.1.0.tar.gz", hash = "sha256:81e76ad12c2d804512e9b13240d1588316531bfba07558286078bfbce9613633"}, + {file = "mypy-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1fa8d916ac3b705af733c4c1e6c9ebe38fd0d52beb15b105c3e8355b55e6ecdc"}, + {file = "mypy-2.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:28e1e2af8cd8fff551fd30f2fe4b03fb76764ac8b1ba6c6a1bd00ad32b412db3"}, + {file = "mypy-2.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3e77244df3843048c3f927182916730e40c124cbaa43905c1fb86cb382aa0805"}, + {file = "mypy-2.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9559ab18a9c9957dfa3004ab57cd4bac5f26a724329a9584e583367f0c2e1117"}, + {file = "mypy-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:09abd66d8685e73f8f7d17b847c3e104d9a7b164a8706ea87d6c96a3d45816d5"}, + {file = "mypy-2.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:5e91adad1ca81742ac7ef9893959911df867752206b37135185e88dfb3c89494"}, + {file = "mypy-2.3.0-cp310-cp310-win_arm64.whl", hash = "sha256:6f99ec626e3c3a2f7c0b22c5b90ddb5dabb1c18729c971e9bdaca1f1766d2cee"}, + {file = "mypy-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3419d00717afbc5265b50dd14b1278f29ea4884dd398ab67873489ac093fd329"}, + {file = "mypy-2.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:cfca8ee88544090f86b6dcce05ec55d66eb48a762412ac2507810ba4bd793b6f"}, + {file = "mypy-2.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:75cbb4b9ef04a0c84a957f07abc4504fbf64b8dcc145675101f2d3a78a4b1d6a"}, + {file = "mypy-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:982e3d53dd23d0a4cef67dd66791fdbede0cf38f9eb617bf47663554c51e1e36"}, + {file = "mypy-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:85c5385b93012ffa3b31479ab579aef5415f4f3a32c6cf1ae07a984d2a0ff461"}, + {file = "mypy-2.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:13b1b16e2fa39f3b2e33fb1c468abc7a69369fa2e886b4b87b5afc81472325cd"}, + {file = "mypy-2.3.0-cp311-cp311-win_arm64.whl", hash = "sha256:b5cd2f027a972a4a5f2278a11fac9747f5f81a53a30b714d74950b6807e55568"}, + {file = "mypy-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2d53fc67b9d28a43c6199077f49fea0f05839e36cf6158500331c9549225e5a5"}, + {file = "mypy-2.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fbc00cee7bdbb9291979ddc9d08034a29dfcda4932628c9bbc28c1edd589df0c"}, + {file = "mypy-2.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:04e617030eca5221909c8b7d8d7fd1c637948199aa2100b2ad9813feb07e1491"}, + {file = "mypy-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:56c184d2c20ca6b6378d58d1960270a767f41f5e44acbbd27f05effef4f4e1d7"}, + {file = "mypy-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3961a4a34b05f7c74b0f05aa51fbfe99a2d1e126038df40318d15c8f558b7ef3"}, + {file = "mypy-2.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:b1942b9314d4c784b8ea1dbab4972603290e5dd5630f06675f13aec97526bc4c"}, + {file = "mypy-2.3.0-cp312-cp312-win_arm64.whl", hash = "sha256:be51653d7669d7d7955d613b8d0bb57d5b652eaf71a873ddf65ac87254dd2595"}, + {file = "mypy-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:91ad22a52ae2c7e621c2f67c94d5a17f66b3209a4cff5cf8a573579835c69e97"}, + {file = "mypy-2.3.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:99ac767cc5d3b64c8d0ae226ead10c96694f94e4e7da1668642225dcd4e75aac"}, + {file = "mypy-2.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de6d2c484742a4d7b0ed6d07b143375624d3b899c5749c7b3c947f56261f48a6"}, + {file = "mypy-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7da939dd335cfd2ad788bdfd081c9f4e47634ab995e5a45eb15fd1e5bc052f8b"}, + {file = "mypy-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7247eb2824f996722a949530183394921ca71deb9680052a338cf53cff7925c2"}, + {file = "mypy-2.3.0-cp313-cp313-win_amd64.whl", hash = "sha256:75b0984bb3cbd76bb5c9291a8671f7ae66ca3b51c7584c358fc2e923259f0757"}, + {file = "mypy-2.3.0-cp313-cp313-win_arm64.whl", hash = "sha256:d78fcf900b59cb7e82cb7e3a235e31b462d9333d92285bd1e4952d355b8ffba1"}, + {file = "mypy-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:ea317b060ce83e26050f8f9e4d7d6bf44ed7597c8ff9990bccffbb9d1d8522db"}, + {file = "mypy-2.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:094af99f92638aa92852326188b85a89e50f4a472f44827c03362228482f0762"}, + {file = "mypy-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de121747278144fc9ae7caa2e978cf5df12aebc82933182f5b3b86081a30baef"}, + {file = "mypy-2.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:37fa4de896a84e2dc9200d91e614c22563b43d1a266789d4bbac7b22ebe6192b"}, + {file = "mypy-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f1b3a98dfd21058bc759bb3337d5d1f61d0fdf9f3cf9c00f4291790fb5427bff"}, + {file = "mypy-2.3.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl", hash = "sha256:944c665d984157cb96a679dfb7a4a81dd1d36b24b9c284b699514e6e626b82d4"}, + {file = "mypy-2.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:4359424140d985192c778c1ce2c114a10c1ca58a381ed79cfa70d37df94b299f"}, + {file = "mypy-2.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:3dd0bed92c4bdec57c42505b96416fb9e6a5aa7be84d2809bcd5f2ecec2860d7"}, + {file = "mypy-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:691fdc37132b1ae628d834f672e74de83462d9fb4aff621835767fb43a8dd373"}, + {file = "mypy-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:aec15d465d477558fd842757b487849007311cf3897849cdda0e3162ac0ac556"}, + {file = "mypy-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b352b7e49f5e6576009e8df730e1ff4f915cb565b851b396d2ffe2f5a6f5da88"}, + {file = "mypy-2.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c6c6bf687b17f90dbfcad95b960d32eaa0154c00da45f03ab50bf8952e047fe"}, + {file = "mypy-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:f4ed18f111bfe2d599bca7468e7f9251042c1c2118f762c8de2766a56d773c60"}, + {file = "mypy-2.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:0b025a93cffb9781d231f232be07a17912f35f10a313c24f301c81e842870654"}, + {file = "mypy-2.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:adebc76aab4f3495a88b41d48aa4aff0c03f2822501da76625afcca5975f19e5"}, + {file = "mypy-2.3.0-py3-none-any.whl", hash = "sha256:6b1cdb579446b60432432b2b2403a6201b4b475a004d7f488511c9ba177c9e88"}, + {file = "mypy-2.3.0.tar.gz", hash = "sha256:465965d41cd9a2726694e983e8ce7113259327bec798115d1e1dfa2a52fb666e"}, ] [package.dependencies] -ast-serialize = ">=0.3.0,<1.0.0" -librt = {version = ">=0.11.0", markers = "platform_python_implementation != \"PyPy\""} +ast-serialize = ">=0.6.0,<1.0.0" +librt = {version = ">=0.13.0", markers = "platform_python_implementation != \"PyPy\""} mypy_extensions = ">=1.0.0" pathspec = ">=1.0.0" typing_extensions = [ @@ -1073,14 +1026,14 @@ files = [ [[package]] name = "packaging" -version = "26.2" +version = "26.3" description = "Core utilities for Python packages" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" groups = ["dev"] files = [ - {file = "packaging-26.2-py3-none-any.whl", hash = "sha256:5fc45236b9446107ff2415ce77c807cee2862cb6fac22b8a73826d0693b0980e"}, - {file = "packaging-26.2.tar.gz", hash = "sha256:ff452ff5a3e828ce110190feff1178bb1f2ea2281fa2075aadb987c2fb221661"}, + {file = "packaging-26.3-py3-none-any.whl", hash = "sha256:d7193f7c8e4e93f444fde0262bf90af30e16fa0ad0ad44cb553c87339b23cd1c"}, + {file = "packaging-26.3.tar.gz", hash = "sha256:94edc256424af38762eb31306eed28beb9f0efc50a8837492c9d6fd6004aed79"}, ] [[package]] @@ -1443,14 +1396,14 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pytest" -version = "9.1.0" +version = "9.1.1" description = "pytest: simple powerful testing with Python" optional = false python-versions = ">=3.10" groups = ["dev"] files = [ - {file = "pytest-9.1.0-py3-none-any.whl", hash = "sha256:8ebb0e7888bdf2bdfc602ec51f8f62d50200af37356c74e503c79a94f5c81f32"}, - {file = "pytest-9.1.0.tar.gz", hash = "sha256:41dd9148c08072446394cefd3d79701701335a9f4cae69ba92e39f6c7f5c061c"}, + {file = "pytest-9.1.1-py3-none-any.whl", hash = "sha256:37a86b45efb9a47a61a36449063e8e18d0cab3161329fc099eb21783169c4f0c"}, + {file = "pytest-9.1.1.tar.gz", hash = "sha256:1088fbde8f2b49d95a549a195707afa7a76a3ce9bcadc26b6d71f0ffda5fe313"}, ] [package.dependencies] @@ -1534,26 +1487,26 @@ files = [ [[package]] name = "types-python-dateutil" -version = "2.9.0.20260518" +version = "2.9.0.20260716" description = "Typing stubs for python-dateutil" optional = false python-versions = ">=3.10" groups = ["dev"] files = [ - {file = "types_python_dateutil-2.9.0.20260518-py3-none-any.whl", hash = "sha256:d6a9c5bd0de61460c8fdef8ab2b400f956a1a1075cce08d4e2b4434e478c50b8"}, - {file = "types_python_dateutil-2.9.0.20260518.tar.gz", hash = "sha256:51f02dc03b61c7f6a07df45797d4dfe8a1aa47f0b7db9ad89f6fd3a1a70e1b51"}, + {file = "types_python_dateutil-2.9.0.20260716-py3-none-any.whl", hash = "sha256:1ae41d51a5c5f6bbeeb7f1f34df7086d55ff1605cf88d2ed71a7a276e1a7794e"}, + {file = "types_python_dateutil-2.9.0.20260716.tar.gz", hash = "sha256:1d55d1c3024bdb4861bb6a6622c9ec800c433d87bdc5b16fb84cdd0eed4ef2cb"}, ] [[package]] name = "typing-extensions" -version = "4.15.0" +version = "4.16.0" description = "Backported and Experimental Type Hints for Python 3.9+" optional = false python-versions = ">=3.9" groups = ["main", "dev"] files = [ - {file = "typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548"}, - {file = "typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"}, + {file = "typing_extensions-4.16.0-py3-none-any.whl", hash = "sha256:481caa481374e813c1b176ada14e97f1f67a4539ce9cfeb3f350d78d6370c2e8"}, + {file = "typing_extensions-4.16.0.tar.gz", hash = "sha256:dc983d19a509c94dba722ee6abd33940f7c05a89e243c47e907eb4db6f1a43e5"}, ] [[package]] @@ -1591,116 +1544,116 @@ zstd = ["backports-zstd (>=1.0.0) ; python_version < \"3.14\""] [[package]] name = "yarl" -version = "1.24.2" +version = "1.24.5" description = "Yet another URL library" optional = false python-versions = ">=3.10" groups = ["main"] files = [ - {file = "yarl-1.24.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5249a113065c2b7a958bc699759e359cd61cfc81e3069662208f48f191b7ed12"}, - {file = "yarl-1.24.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7f4425fa244fbf530b006d0c5f79ce920114cfff5b4f5f6056e669f8e160fdc0"}, - {file = "yarl-1.24.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:15c0b5e49d3c44e2a0b93e6a49476c5edad0a7686b92c395765a7ea775572a75"}, - {file = "yarl-1.24.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:246d32a53a947c8f0189f5d699cbd4c7036de45d9359e13ba238d1239678c727"}, - {file = "yarl-1.24.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:64480fb3e4d4ed9ed71c48a91a477384fc342a50ca30071d2f8a88d51d9c9413"}, - {file = "yarl-1.24.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:349de4701dc3760b6e876628423a8f147ef4f5599d10aba1e10702075d424ed9"}, - {file = "yarl-1.24.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d162677af8d5d3d6ebab8394b021f4d041ac107a4b705873148a77a49dc9e1b2"}, - {file = "yarl-1.24.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f5f5c6ec23a9043f2d139cc072f53dd23168d202a334b9b2fda8de4c3e890d90"}, - {file = "yarl-1.24.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:60de6742447fbbf697f16f070b8a443f1b5fe6ca3826fbef9fe70ecd5328e643"}, - {file = "yarl-1.24.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:acf93187c3710e422368eb768aee98db551ec7c85adc250207a95c16548ab7ac"}, - {file = "yarl-1.24.2-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:f4b0352fd41fd34b6651934606268816afd6914d09626f9bcbbf018edb0afb3f"}, - {file = "yarl-1.24.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:6b208bb939099b4b297438da4e9b25357f0b1c791888669b963e45b203ea9f36"}, - {file = "yarl-1.24.2-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:4b85b8825e631295ff4bc8943f7471d54c533a9360bbe15ebb38e018b555bb8a"}, - {file = "yarl-1.24.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e26acf20c26cb4fefc631fdb75aca2a6b8fa8b7b5d7f204fb6a8f1e63c706f53"}, - {file = "yarl-1.24.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:819ca24f8eafcfb683c1bd5f44f2f488cea1274eb8944731ffd2e1f10f619342"}, - {file = "yarl-1.24.2-cp310-cp310-win_amd64.whl", hash = "sha256:5cb0f995a901c36be096ccbf4c673591c2faabbe96279598ffaec8c030f85bf4"}, - {file = "yarl-1.24.2-cp310-cp310-win_arm64.whl", hash = "sha256:f408eace7e22a68b467a0562e0d27d322f91fe3eaaa6f466b962c6cfaea9fa39"}, - {file = "yarl-1.24.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:36348bebb147b83818b9d7e673ea4debc75970afc6ffdc7e3975ad05ce5a58c1"}, - {file = "yarl-1.24.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1a97e42c8a2233f2f279ecadd9e4a037bcb5d813b78435e8eedd4db5a9e9708c"}, - {file = "yarl-1.24.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8d027d56f1035e339d1001ac33eceab5b2ec8e42e449787bb75e289fb9a5cd1d"}, - {file = "yarl-1.24.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0a6377060e7927187a42b7eb202090cbe2b34933a4eeaf90e3bd9e33432e5cae"}, - {file = "yarl-1.24.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:17076578bce0049a5ce57d14ad1bded391b68a3b213e9b81b0097b090244999a"}, - {file = "yarl-1.24.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:50713f1d4d6be6375bb178bb43d140ee1acb8abe589cd723320b7925a275be1e"}, - {file = "yarl-1.24.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:34263e2fa8fb5bb63a0d97706cda38edbad62fddb58c7f12d6acbc092812aa50"}, - {file = "yarl-1.24.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:49016d82f032b1bd1e10b01078a7d29ae71bf468eeae0ea22df8bab691e60003"}, - {file = "yarl-1.24.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3f6d2c216318f8f32038ca3f72501ba08536f0fd18a36e858836b121b2deed9f"}, - {file = "yarl-1.24.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:08d3a33218e0c64393e7610284e770409a9c31c429b078bcb24096ed0a783b8f"}, - {file = "yarl-1.24.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5d699376c4ca3cba49bbfae3a05b5b70ded572937171ce1e0b8d87118e2ba294"}, - {file = "yarl-1.24.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:a1cab588b4fa14bea2e55ebea27478adfb05372f47573738e1acc4a36c0b05d2"}, - {file = "yarl-1.24.2-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:ec87ccc31bd21db7ad009d8572c127c1000f268517618a4cc09adba3c2a7f21c"}, - {file = "yarl-1.24.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:d1dd47a22843b212baa8d74f37796815d43bd046b42a0f41e9da433386c3136b"}, - {file = "yarl-1.24.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7b54b9c67c2b06bd7b9a77253d242124b9c95d2c02def5a1144001ee547dd9d5"}, - {file = "yarl-1.24.2-cp311-cp311-win_amd64.whl", hash = "sha256:f8fdbcff8b2c7c9284e60c196f693588598ddcee31e11c18e14949ce44519d45"}, - {file = "yarl-1.24.2-cp311-cp311-win_arm64.whl", hash = "sha256:b32c37a7a337e90822c45797bf3d79d60875cfcccd3ecc80e9f453d87026c122"}, - {file = "yarl-1.24.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b975866c184564c827e0877380f0dae57dcca7e52782128381b72feff6dfceb8"}, - {file = "yarl-1.24.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3b075301a2836a0e297b1b658cb6d6135df535d62efefdd60366bd589c2c82f2"}, - {file = "yarl-1.24.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8ae44649b00947634ab0dab2a374a638f52923a6e67083f2c156cd5cbd1a881d"}, - {file = "yarl-1.24.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:507cc19f0b45454e2d6dcd62ff7d062b9f77a2812404e62dbdaec05b50faa035"}, - {file = "yarl-1.24.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c4c17bad5a530912d2111825d3f05e89bab2dd376aaa8cbc77e449e6db63e576"}, - {file = "yarl-1.24.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f5f0cbb112838a4a293985b6ed73948a547dadcc1ba6d2089938e7abdedceef8"}, - {file = "yarl-1.24.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5ec8356b8a6afcf81fc7aeeef13b1ff7a49dec00f313394bbb9e83830d32ccd7"}, - {file = "yarl-1.24.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7e7ebcdef69dec6c6451e616f32b622a6d4a2e92b445c992f7c8e5274a6bbc4c"}, - {file = "yarl-1.24.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:47a55d6cf6db2f401017a9e96e5288844e5051911fb4e0c8311a3980f5e59a7d"}, - {file = "yarl-1.24.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3065657c80a2321225e804048597ad55658a7e76b32d6f5ee4074d04c50401db"}, - {file = "yarl-1.24.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:cb84b80d88e19ede158619b80813968713d8d008b0e2497a576e6a0557d50712"}, - {file = "yarl-1.24.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:990de4f680b1c217e77ff0d6aa0029f9eb79889c11fb3e9a3942c7eba29c1996"}, - {file = "yarl-1.24.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:abb8ec0323b80161e3802da3150ef660b41d0e9be2048b76a363d93eee992c2b"}, - {file = "yarl-1.24.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:e7977781f83638a4c73e0f88425563d70173e0dfd90ac006a45c65036293ee3c"}, - {file = "yarl-1.24.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e30dd55825dc554ec5b66a94953b8eda8745926514c5089dfcacecb9c99b5bd1"}, - {file = "yarl-1.24.2-cp312-cp312-win_amd64.whl", hash = "sha256:7dafe10c12ddd4d120d528c4b5599c953bd7b12845347d507b95451195bb6cad"}, - {file = "yarl-1.24.2-cp312-cp312-win_arm64.whl", hash = "sha256:044a09d8401fcf8681977faef6d286b8ade1e2d2e9dceda175d1cfa5ca496f30"}, - {file = "yarl-1.24.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:491ac9141decf49ee8030199e1ee251cdff0e131f25678817ff6aa5f837a3536"}, - {file = "yarl-1.24.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e89418f65eda18f99030386305bd44d7d504e328a7945db1ead514fbe03a0607"}, - {file = "yarl-1.24.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cdfcce633b4a4bb8281913c57fcafd4b5933fbc19111a5e3930bbd299d6102f1"}, - {file = "yarl-1.24.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:863297ddede92ee49024e9a9b11ecb59f310ca85b60d8537f56bed9bbb5b1986"}, - {file = "yarl-1.24.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:374423f70754a2c96942ede36a29d37dc6b0cb8f92f8d009ddf3ed78d3da5488"}, - {file = "yarl-1.24.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:33a29b5d00ccbf3219bb3e351d7875739c19481e030779f48cc46a7a71681a9b"}, - {file = "yarl-1.24.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a9532c57211730c515341af11fef6e9b61d157487272a096d0c04da445642592"}, - {file = "yarl-1.24.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:91e72cf093fd833483a97ee648e0c053c7c629f51ff4a0e7edd84f806b0c5617"}, - {file = "yarl-1.24.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b3177bc0a768ef3bacceb4f272632990b7bea352f1b2f1eee9d6d6ff16516f92"}, - {file = "yarl-1.24.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e196952aacaf3b232e265ff02980b64d483dc0972bd49bcb061171ff22ac203a"}, - {file = "yarl-1.24.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:204e7a61ce99919c0de1bf904ab5d7aa188a129ea8f690a8f76cfb6e2844dc44"}, - {file = "yarl-1.24.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b156914620f0b9d78dc1adb3751141daee561cfec796088abb89ed49d220f1a"}, - {file = "yarl-1.24.2-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:8372a2b976cf70654b2be6619ab6068acabb35f724c0fda7b277fbf53d66a5cf"}, - {file = "yarl-1.24.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:f9a1e9b622ca284143aab5d885848686dcd85453bb1ca9abcdb7503e64dc0056"}, - {file = "yarl-1.24.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:810e19b685c8c3c5862f6a38160a1f4e4c0916c9390024ec347b6157a45a0992"}, - {file = "yarl-1.24.2-cp313-cp313-win_amd64.whl", hash = "sha256:7d37fb7c38f2b6edab0f845c4f85148d4c44204f52bc127021bd2bc9fdbf1656"}, - {file = "yarl-1.24.2-cp313-cp313-win_arm64.whl", hash = "sha256:1e831894be7c2954240e49791fa4b50c05a0dc881de2552cfe3ffd8631c7f461"}, - {file = "yarl-1.24.2-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:f9312b3c02d9b3d23840f67952913c9c8721d7f1b7db305289faefa878f364c2"}, - {file = "yarl-1.24.2-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:a4f4d6cd615823bfc7fb7e9b5987c3f41666371d870d51058f77e2680fbe9630"}, - {file = "yarl-1.24.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0c3063e5c0a8e8e62fae6c2596fa01da1561e4cd1da6fec5789f5cf99a8aefd8"}, - {file = "yarl-1.24.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fecd17873a096036c1c87ab3486f1aef7f269ada7f23f7f856f93b1cc7744f14"}, - {file = "yarl-1.24.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a46d1ab4ba4d32e6dc80daf8a28ce0bd83d08df52fbc32f3e288663427734535"}, - {file = "yarl-1.24.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:73e68edf6dfd5f73f9ca127d84e2a6f9213c65bdffb736bda19524c0564fcd14"}, - {file = "yarl-1.24.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a296ca617f2d25fbceafb962b88750d627e5984e75732c712154d058ae8d79a3"}, - {file = "yarl-1.24.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e51b2cf5ec89a8b8470177641ed62a3ba22d74e1e898e06ad53aa77972487208"}, - {file = "yarl-1.24.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:310fc687f7b2044ec54e372c8cbe923bb88f5c37bded0d3079e5791c2fc3cf50"}, - {file = "yarl-1.24.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:297a2fe352ecf858b30a98f87948746ec16f001d279f84aebdbd3bd965e2f1bd"}, - {file = "yarl-1.24.2-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:2a263e76b97bc42bdcd7c5f4953dec1f7cd62a1112fa7f869e57255229390d67"}, - {file = "yarl-1.24.2-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:822519b64cf0b474f1a0aaef1dc621438ea46bb77c94df97a5b4d213a7d8a8b1"}, - {file = "yarl-1.24.2-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:b6067060d9dc594899ba83e6db6c48c68d1e494a6dab158156ed86977ca7bcb1"}, - {file = "yarl-1.24.2-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:0063adad533e57171b79db3943b229d40dfafeeee579767f96541f106bac5f1b"}, - {file = "yarl-1.24.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:ee8e3fb34513e8dc082b586ef4910c98335d43a6fab688cd44d4851bacfce3e8"}, - {file = "yarl-1.24.2-cp314-cp314-win_amd64.whl", hash = "sha256:afb00d7fd8e0f285ca29a44cc50df2d622ff2f7a6d933fa641577b5f9d5f3db0"}, - {file = "yarl-1.24.2-cp314-cp314-win_arm64.whl", hash = "sha256:68cf6eacd6028ef1142bc4b48376b81566385ca6f9e7dde3b0fa91be08ffcb57"}, - {file = "yarl-1.24.2-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:221ce1dd921ac4f603957f17d7c18c5cc0797fbb52f156941f92e04605d1d67b"}, - {file = "yarl-1.24.2-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:5f3224db28173a00d7afacdee07045cc4673dfab2b15492c7ae10deddbece761"}, - {file = "yarl-1.24.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c557165320d6244ebe3a02431b2a201a20080e02f41f0cfa0ccc47a183765da8"}, - {file = "yarl-1.24.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:904065e6e85b1fa54d0d87438bd58c14c0bad97aad654ad1077fd9d87e8478ed"}, - {file = "yarl-1.24.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:8cec2a38d70edc10e0e856ceda886af5327a017ccbde8e1de1bd44d300357543"}, - {file = "yarl-1.24.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e7484b9361ed222ee1ca5b4337aa4cbdcc4618ce5aff57d9ef1582fd95893fc0"}, - {file = "yarl-1.24.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:84f9670b89f34db07f81e53aee83e0b938a3412329d51c8f922488be7fcc4024"}, - {file = "yarl-1.24.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:abb2759733d63a28b4956500a5dd57140f26486c92b2caedfb964ab7d9b79dbf"}, - {file = "yarl-1.24.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:081c2bf54efe03774d0311172bc04fedf9ca01e644d4cd8c805688e527209bdc"}, - {file = "yarl-1.24.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:86746bef442aa479107fe28132e1277237f9c24c2f00b0b0cf22b3ee0904f2bb"}, - {file = "yarl-1.24.2-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:2d07d21d0bc4b17558e8de0b02fbfdf1e347d3bb3699edd00bb92e7c57925420"}, - {file = "yarl-1.24.2-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:4fb1ac3fc5fecd8ae7453ea237e4d22b49befa70266dfe1629924245c21a0c7f"}, - {file = "yarl-1.24.2-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:4da31a5512ed1729ca8d8aacde3f7faeb8843cde3165d6bcf7f88f74f17bb8aa"}, - {file = "yarl-1.24.2-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:533ded4dceb5f1f3da7906244f4e82cf46cfd40d84c69a1faf5ac506aa65ecbe"}, - {file = "yarl-1.24.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:7b3a85525f6e7eeabcfdd372862b21ee1915db1b498a04e8bf0e389b607ff0bd"}, - {file = "yarl-1.24.2-cp314-cp314t-win_amd64.whl", hash = "sha256:a7624b1ca46ca5d7b864ef0d2f8efe3091454085ee1855b4e992314529972215"}, - {file = "yarl-1.24.2-cp314-cp314t-win_arm64.whl", hash = "sha256:e434a45ce2e7a947f951fc5a8944c8cc080b7e59f9c50ae80fd39107cf88126d"}, - {file = "yarl-1.24.2-py3-none-any.whl", hash = "sha256:2783d9226db8797636cd6896e4de81feed252d1db72265686c9558d97a4d94b9"}, - {file = "yarl-1.24.2.tar.gz", hash = "sha256:9ac374123c6fd7abf64d1fec93962b0bd4ee2c19751755a762a72dd96c0378f8"}, + {file = "yarl-1.24.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:88f50c94e21a0a7f14042c015b0eba1881af78562e7bf007e0033e624da59750"}, + {file = "yarl-1.24.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6efbccc3d7f75d5b03105172a8dc86d82ba4da86817952529dd93185f4a88be2"}, + {file = "yarl-1.24.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0ebfaffe1a16cb72141c8e09f18cc76856dbe58639f393a4f2b26e474b96b871"}, + {file = "yarl-1.24.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8ac73abdc7ab75610f95a8fd994c6457e87752b02a63987e188f937a1fc180f0"}, + {file = "yarl-1.24.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4d97a951a81039050e45f04e96689b58b8243fa5e62aa14fe67cb6075300885e"}, + {file = "yarl-1.24.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fe7b7bb170daccbba19ad33012d2b15f1e7942296fd4d45fc1b79013da8cc0f2"}, + {file = "yarl-1.24.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:89a1bbb58e0e3f7a283653d854b1e95d65e5cfd4af224dac5f02629ec1a3e621"}, + {file = "yarl-1.24.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7fa5e51397466ea7e98de493fa2ff1b8193cfef8a7b0f9b4842f92d342df0dba"}, + {file = "yarl-1.24.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4103b77b8a8225e413107d2349b65eb3c1c52627b5cc5c3c4c1c6a798b218950"}, + {file = "yarl-1.24.5-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f9f3e9c8a9ecffa57bef8fb4fa19e5fa4d2d8307cf6bac5b1fca5e5860f4ba00"}, + {file = "yarl-1.24.5-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c0ebc836c47a6477e182169c6a476fc691d12b518894bf7dd2572f0d59f1c7ed"}, + {file = "yarl-1.24.5-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:96d30286dd02679e32a39aa8f0b7498fc847fcda46cfc09df5513e82ce252440"}, + {file = "yarl-1.24.5-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:fd8c81f346b58f45818d09ea11db69a8d5fd34a224b79871f6d44f12cd7977b1"}, + {file = "yarl-1.24.5-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:5c55256dee8f4b27bfbf636c8363383c7c8db7890c7cba5217d7bd5f5f21dab6"}, + {file = "yarl-1.24.5-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9f4d8cf085a4c6a40fb97ea0f46938a8df43c85d31f9d45e2a8867ea9293790d"}, + {file = "yarl-1.24.5-cp310-cp310-win_amd64.whl", hash = "sha256:240cbec09667c1fed4c6cd0060b9ec57332427d7441289a2ed8875dc9fb2b224"}, + {file = "yarl-1.24.5-cp310-cp310-win_arm64.whl", hash = "sha256:8a6987eaad834cb32dd57d9d582225f0054a5d1af706ccfbbdba735af4927e13"}, + {file = "yarl-1.24.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:2c1fe720934a16ea8e7146175cba2126f87f54912c8c5435e7f7c7a51ef808d3"}, + {file = "yarl-1.24.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c687ed078e145f5fd53a14854beff320e1d2ab76df03e2009c98f39a0f68f39a"}, + {file = "yarl-1.24.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:709f1efed56c4a145793c046cd4939f9959bcd818979a787b77d8e09c57a0840"}, + {file = "yarl-1.24.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:874019bd513008b009f58657134e5d0c5e030b3559bd0553976837adf52fe966"}, + {file = "yarl-1.24.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:a4582acf7ef76482f6f511ebaf1946dae7f2e85ec4728b81a678c01df63bd723"}, + {file = "yarl-1.24.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2cabe6546e41dabe439999a23fcb5246e0c3b595b4315b96ef755252be90caeb"}, + {file = "yarl-1.24.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:17f57620f5475b3c69109376cc87e42a7af5db13c9398e4292772a706ff10780"}, + {file = "yarl-1.24.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:570fec8fbd22b032733625f03f10b7ff023bc399213db15e72a7acaef28c2f4e"}, + {file = "yarl-1.24.5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:5fede79c6f73ff2c3ef822864cb1ada23196e62756df53bc6231d351a49516a2"}, + {file = "yarl-1.24.5-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8ccf9aca873b767977c73df497a85dbedee4ee086ae9ae49dc461333b9b79f58"}, + {file = "yarl-1.24.5-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ad5d8201d310b031e6cd839d9bac2d4e5a01533ce5d3d5b50b7de1ef3af1de61"}, + {file = "yarl-1.24.5-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:841f0852f48fefea3b12c9dfec00704dfa3aef5215d0e3ce564bb3d7cd8d57c6"}, + {file = "yarl-1.24.5-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:9baafc71b04f8f4bb0703b21d6fc9f0c30b346c636a532ff16ec8491a5ea4b1f"}, + {file = "yarl-1.24.5-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:d897129df1a22b12aeed2c2c98df0785a2e8e6e0bde87b389491d0025c187077"}, + {file = "yarl-1.24.5-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:dd625535328fd9882374356269227670189adfcc6a2d90284f323c05862eecbd"}, + {file = "yarl-1.24.5-cp311-cp311-win_amd64.whl", hash = "sha256:f4239bbec5a3577ddb49e4b50aeb32d8e5792098262ae2f63723f916a29b1a25"}, + {file = "yarl-1.24.5-cp311-cp311-win_arm64.whl", hash = "sha256:3ac6aff147deb9c09461b2d4bbdf6256831198f5d8a23f5d37138213090b6d8a"}, + {file = "yarl-1.24.5-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d693396e5aea78db03decd60aec9ece16c9b40ba00a587f089615ff4e718a81d"}, + {file = "yarl-1.24.5-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3363fcc96e665878946ad7a106b9a13eac0541766a690ef287c0232ac768b6ec"}, + {file = "yarl-1.24.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9d399bdcfb4a0f659b9b3788bbc89babe63d9a6a65aacdf4d4e7065ff2e6316c"}, + {file = "yarl-1.24.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:90333fd89b43c0d08ac85f3f1447593fc2c66de18c3d6378d7125ea118dc7a54"}, + {file = "yarl-1.24.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:665b0a2c463cc9423dd647e0bfd9f4ccc9b50f768c55304d5e9f80b177c1de12"}, + {file = "yarl-1.24.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e006d3a974c4ee19512e5f058abedb6eef36a5e553c14812bdeba1758d812e6d"}, + {file = "yarl-1.24.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e7d42c531243450ef0d4d9c172e7ed6ef052640f195629065041b5add4e058d1"}, + {file = "yarl-1.24.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f08c7513ecef5aad65687bfdf6bc601ae9fccd04a42904501f8f7141abad9eb9"}, + {file = "yarl-1.24.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6c95b17fe34ed802f17e205112e6e10db92275c34fee290aa9bdc55a9c724027"}, + {file = "yarl-1.24.5-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:56b149b22de33b23b0c6077ab9518c6dcb538ad462e1830e68d06591ccf6e38b"}, + {file = "yarl-1.24.5-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a8fe66b8f300da93798025a785a5b90b42f3810dc2b72283ff84a41aaaebc293"}, + {file = "yarl-1.24.5-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:377fe3732edbaf78ee74efdf2c9f49f6e99f20e7f9d2649fda3eb4badd77d76e"}, + {file = "yarl-1.24.5-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:e8ffa78582120024f476a611d7befc123cee59e47e8309d470cf667d806e613b"}, + {file = "yarl-1.24.5-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:daba5e594f06114e37db186efd2dd916609071e59daca901a0a2e71f02b142ce"}, + {file = "yarl-1.24.5-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:65be18ec59496c13908f02a2472751d9ef840b4f3fb5726f129306bf6a2a7bba"}, + {file = "yarl-1.24.5-cp312-cp312-win_amd64.whl", hash = "sha256:a929d878fec099030c292803b31e5d5540a7b6a31e6a3cc76cb4685fc2a2f51b"}, + {file = "yarl-1.24.5-cp312-cp312-win_arm64.whl", hash = "sha256:7ce27823052e2013b597e0c738b13e7e36b8ccb9400df8959417b052ab0fd92c"}, + {file = "yarl-1.24.5-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:79af890482fc94648e8cde4c68620378f7fef60932710fa17a66abc039244da2"}, + {file = "yarl-1.24.5-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:46c2f213e23a04b93a392942d782eb9e413e6ef6bf7c8c53884e599a5c174dcb"}, + {file = "yarl-1.24.5-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92ab3e11448f2ff7bf53c5a26eff0edc086898ec8b21fb154b85839ce1d88075"}, + {file = "yarl-1.24.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ebb0ec7f17803063d5aeb982f3b1bd2b2f4e4fae6751226cbd6ba1fcfe9e63ff"}, + {file = "yarl-1.24.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:82632daed195dcc8ea664e8556dc9bdbd671960fb3776bd92806ce05792c2448"}, + {file = "yarl-1.24.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:53e549287ef628fecba270045c9701b0c564563a9b0577d24a4ec75b8ab8040f"}, + {file = "yarl-1.24.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:fcd3b77e2f17bbe4ca56ec7bcb07992647d19d0b9c05d84886dcd6f9eb810afd"}, + {file = "yarl-1.24.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d46b86567dd4e248c6c159fcbcdcce01e0a5c8a7cd2334a0fff759d0fa075b16"}, + {file = "yarl-1.24.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:7f72c74aa99359e27a2ee8d6613fefa28b5f76a983c083074dfc2aaa4ab46213"}, + {file = "yarl-1.24.5-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:3f45789ce415a7ec0820dc4f82925f9b5f7732070be1dec1f5f23ec381435a24"}, + {file = "yarl-1.24.5-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:6e73e7fe93f17a7b191f52ec9da9dd8c06a8fe735a1ecbd13b97d1c723bff385"}, + {file = "yarl-1.24.5-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4a36f9becdd4c5c52a20c3e9484128b070b1dcfc8944c006f3a528295a359a9c"}, + {file = "yarl-1.24.5-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:7bcbe0fcf850eae67b6b01749815a4f7161c560a844c769ad7b48fcd99f791c4"}, + {file = "yarl-1.24.5-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:24e861e9630e0daddcb9191fb187f60f034e17a4426f8101279f0c475cd74144"}, + {file = "yarl-1.24.5-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9335a099ad87287c37fe5d1a982ff392fa5efe5d14b40a730b1ec1d6a41382b4"}, + {file = "yarl-1.24.5-cp313-cp313-win_amd64.whl", hash = "sha256:2dbe06fc16bc91502bca713704022182e5729861ae00277c3a23354b40929740"}, + {file = "yarl-1.24.5-cp313-cp313-win_arm64.whl", hash = "sha256:6b8536851f9f65e7f00c7a1d49ba7f2be0ffe2c11555367fc9f50d9f842410a1"}, + {file = "yarl-1.24.5-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:2729fcfc4f6a596fb0c50f32090400aa9367774ac296a00387e65098c0befa76"}, + {file = "yarl-1.24.5-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:ff330d3c30db4eb6b01d79e29d2d0b407a7ecad39cfd9ec993ece57396a2ec0d"}, + {file = "yarl-1.24.5-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e42d75862735da90e7fc5a7b23db0c976f737113a54b3c9777a9b665e9cbff75"}, + {file = "yarl-1.24.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a3732e66413163e72508da9eff9ce9d2846fde51fae45d3605393d3e6cd303e9"}, + {file = "yarl-1.24.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:5b8ee53be440a0cffc991a27be3057e0530122548dbe7c0892df08822fce5ede"}, + {file = "yarl-1.24.5-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:af3aefa655adb5869491fa907e652290386800ae99cc50095cba71e2c6aefdca"}, + {file = "yarl-1.24.5-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2120b96872df4a117cde97d270bac96aea7cc52205d305cf4611df694a487027"}, + {file = "yarl-1.24.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:66410eb6345d467151934b49bfa70fb32f5b35a6140baa40ad97d6436abea2e9"}, + {file = "yarl-1.24.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:4af7b7e1be0a69bee8210735fe6dcfc38879adfac6d62e789d53ba432d1ffa41"}, + {file = "yarl-1.24.5-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:fa139875ff98ab97da323cfadfaff08900d1ad42f1b5087b0b812a55c5a06373"}, + {file = "yarl-1.24.5-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:0055afc45e864b92729ac7600e2d102c17bef060647e74bca75fa84d66b9ff36"}, + {file = "yarl-1.24.5-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:f0e466ed7511fe9d459a819edbc6c2585c0b6eabde9fa8a8947552468a7a6ef0"}, + {file = "yarl-1.24.5-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:f141474e85b7e54998ec5180530a7cda99ab29e282fa50e0756d89981a9b43c5"}, + {file = "yarl-1.24.5-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:e2935f8c39e3b03e83519292d78f075189978f3f4adc15a78144c7c8e2a1cba5"}, + {file = "yarl-1.24.5-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:9d1216a7f6f77836617dba35687c5b78a4170afc3c3f18fc788f785ba26565c4"}, + {file = "yarl-1.24.5-cp314-cp314-win_amd64.whl", hash = "sha256:5ba4f78df2bcc19f764a4b26a8a4f5049c110090ad5825993aacb052bf8003ad"}, + {file = "yarl-1.24.5-cp314-cp314-win_arm64.whl", hash = "sha256:9e4e16c73d717c5cf27626c524d0a2e261ad20e46932b2670f64ad5dde23e26f"}, + {file = "yarl-1.24.5-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:e1ae548a9d901adca07899a4147a7c826bbcc06239d3ce9a59f57886a28a4c88"}, + {file = "yarl-1.24.5-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:ff405d91509d88e8d44129cd87b18d70acd1f0c1aeabd7bc3c46792b1fe2acba"}, + {file = "yarl-1.24.5-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:47e98aab9d8d82ff682e7b0b5dded33bf138a32b817fcf7fa3b27b2d7c412928"}, + {file = "yarl-1.24.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f0a658a6d3fafee5c6f63c58f3e785c8c43c93fbc02bf9f2b6663f8185e0971f"}, + {file = "yarl-1.24.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4377407001ca3c057773f44d8ddd6358fa5f691407c1ba92210bd3cf8d9e4c95"}, + {file = "yarl-1.24.5-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7c0494a31a1ac5461a226e7947a9c9b78c44e1dc7185164fa7e9651557a5d9bc"}, + {file = "yarl-1.24.5-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a7cff474ab7cd149765bb784cf6d78b32e18e20473fb7bda860bce98ab58e9da"}, + {file = "yarl-1.24.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cbb833ccacdb5519eff9b8b71ee618cc2801c878e77e288775d77c3a2ced858a"}, + {file = "yarl-1.24.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:82f75e05912e84b7a0fe57075d9c59de3cb352b928330f2eb69b2e1f54c3e1f0"}, + {file = "yarl-1.24.5-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:16a2f5010280020e90f5330257e6944bc33e73593b136cc5a241e6c1dc292498"}, + {file = "yarl-1.24.5-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:ffcd54362564dc1a30fb74d8b8a6e5a6b11ebd5e27266adc3b7427a21a6c9104"}, + {file = "yarl-1.24.5-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0465ec8cedc2349b97a6b595ace64084a50c6e839eca40aa0626f38b8350e331"}, + {file = "yarl-1.24.5-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:4db9aecb141cb7a5447171b57aa1ed3a8fee06af40b992ffc31206c0b0121550"}, + {file = "yarl-1.24.5-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:f540c013589084679a6c7fac07096b10159737918174f5dfc5e11bf5bca4dfe6"}, + {file = "yarl-1.24.5-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a61834fb15d81322d872eaafd333838ae7c9cea84067f232656f75965933d047"}, + {file = "yarl-1.24.5-cp314-cp314t-win_amd64.whl", hash = "sha256:5c88e5815a49d289e599f3513aa7fde0bc2092ff188f99c940f007f90f53d104"}, + {file = "yarl-1.24.5-cp314-cp314t-win_arm64.whl", hash = "sha256:cf139c02f5f23ef6532040a30ff662c00a318c952334f211046b8e60b7f17688"}, + {file = "yarl-1.24.5-py3-none-any.whl", hash = "sha256:a33700d13d9b7d84fd10947b09ff69fb9a792e519c8cb9764a3ca70baa6c23a7"}, + {file = "yarl-1.24.5.tar.gz", hash = "sha256:e81b83143bee16329c23db3c1b2d82b29892fcbcb849186d2f6e98a5abe9a57f"}, ] [package.dependencies] diff --git a/pyproject.toml b/pyproject.toml index b80a9096..2690c229 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vulncheck_sdk" -version = "0.0.51" +version = "0.0.52" description = "VulnCheck API" authors = [ {name = "VulnCheck API Support",email = "support@vulncheck.com"}, diff --git a/python-generator-config.yaml b/python-generator-config.yaml index 7674ec14..c288794c 100644 --- a/python-generator-config.yaml +++ b/python-generator-config.yaml @@ -2,4 +2,4 @@ additionalProperties: projectName: "vulncheck-sdk" packageName: "vulncheck_sdk" packageUrl: "https://github.com/vulncheck-oss/sdk-python/tree/main" - packageVersion: "0.0.51" + packageVersion: "0.0.52" diff --git a/setup.py b/setup.py index dee1b678..8d4b8d0a 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "vulncheck-sdk" -VERSION = "0.0.51" +VERSION = "0.0.52" PYTHON_REQUIRES = ">= 3.11" REQUIRES = [ "aiohttp_retry >= 2.8.3", diff --git a/test/aio/test_advisory_anthropic_cvd.py b/test/aio/test_advisory_anthropic_cvd.py new file mode 100644 index 00000000..2be243b2 --- /dev/null +++ b/test/aio/test_advisory_anthropic_cvd.py @@ -0,0 +1,91 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD + +class TestAdvisoryAnthropicCVD(unittest.TestCase): + """AdvisoryAnthropicCVD unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> AdvisoryAnthropicCVD: + """Test AdvisoryAnthropicCVD + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `AdvisoryAnthropicCVD` + """ + model = AdvisoryAnthropicCVD() + if include_optional: + return AdvisoryAnthropicCVD( + attribution = vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( + lang = '', + type = '', + user = '', + value = '', ), + bug_class = '', + cve = [ + '' + ], + date_added = '', + date_committed = '', + entry = [ + 56 + ], + ghsa = [ + '' + ], + hash = '', + project = '', + raw_preimage = [ + 56 + ], + severities = vulncheck_sdk.aio.models.advisory/cvd_severity_compare.advisory.CVDSeverityCompare( + claude = '', + maintainer = '', + security_research_firm = '', ), + snapshot = vulncheck_sdk.aio.models.advisory/cvd_snapshot.advisory.CVDSnapshot( + as_of = '', + fetched_at = '', + manifest_sha3 = '', + revision = 56, ), + status = '', + timeline = [ + vulncheck_sdk.aio.models.advisory/timeline.advisory.Timeline( + lang = '', + time = '', + value = '', ) + ], + updated_at = '', + url = '' + ) + else: + return AdvisoryAnthropicCVD( + ) + """ + + def testAdvisoryAnthropicCVD(self): + """Test AdvisoryAnthropicCVD""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_advisory_avidml_advs.py b/test/aio/test_advisory_avidml_advs.py index 47a453eb..7a12dd43 100644 --- a/test/aio/test_advisory_avidml_advs.py +++ b/test/aio/test_advisory_avidml_advs.py @@ -36,6 +36,9 @@ def make_instance(self, include_optional) -> AdvisoryAVIDMLAdvs: model = AdvisoryAVIDMLAdvs() if include_optional: return AdvisoryAVIDMLAdvs( + cve = [ + '' + ], date_added = '', description = '', id = '', diff --git a/test/blocking/test_api_target_intel_cve_summary_ports_inner.py b/test/aio/test_advisory_cvd_severity_compare.py similarity index 51% rename from test/blocking/test_api_target_intel_cve_summary_ports_inner.py rename to test/aio/test_advisory_cvd_severity_compare.py index a33d004c..b27d4810 100644 --- a/test/blocking/test_api_target_intel_cve_summary_ports_inner.py +++ b/test/aio/test_advisory_cvd_severity_compare.py @@ -15,10 +15,10 @@ import unittest -from vulncheck_sdk.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner +from vulncheck_sdk.aio.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare -class TestApiTargetIntelCVESummaryPortsInner(unittest.TestCase): - """ApiTargetIntelCVESummaryPortsInner unit test stubs""" +class TestAdvisoryCVDSeverityCompare(unittest.TestCase): + """AdvisoryCVDSeverityCompare unit test stubs""" def setUp(self): pass @@ -26,26 +26,27 @@ def setUp(self): def tearDown(self): pass - def make_instance(self, include_optional) -> ApiTargetIntelCVESummaryPortsInner: - """Test ApiTargetIntelCVESummaryPortsInner + def make_instance(self, include_optional) -> AdvisoryCVDSeverityCompare: + """Test AdvisoryCVDSeverityCompare include_optional is a boolean, when False only required params are included, when True both required and optional params are included """ - # uncomment below to create an instance of `ApiTargetIntelCVESummaryPortsInner` + # uncomment below to create an instance of `AdvisoryCVDSeverityCompare` """ - model = ApiTargetIntelCVESummaryPortsInner() + model = AdvisoryCVDSeverityCompare() if include_optional: - return ApiTargetIntelCVESummaryPortsInner( - count = 56, - value = 56 + return AdvisoryCVDSeverityCompare( + claude = '', + maintainer = '', + security_research_firm = '' ) else: - return ApiTargetIntelCVESummaryPortsInner( + return AdvisoryCVDSeverityCompare( ) """ - def testApiTargetIntelCVESummaryPortsInner(self): - """Test ApiTargetIntelCVESummaryPortsInner""" + def testAdvisoryCVDSeverityCompare(self): + """Test AdvisoryCVDSeverityCompare""" # inst_req_only = self.make_instance(include_optional=False) # inst_req_and_optional = self.make_instance(include_optional=True) diff --git a/test/aio/test_api_target_intel_cve_summary_ports_inner.py b/test/aio/test_advisory_cvd_snapshot.py similarity index 51% rename from test/aio/test_api_target_intel_cve_summary_ports_inner.py rename to test/aio/test_advisory_cvd_snapshot.py index 3b5224dc..0118da8c 100644 --- a/test/aio/test_api_target_intel_cve_summary_ports_inner.py +++ b/test/aio/test_advisory_cvd_snapshot.py @@ -15,10 +15,10 @@ import unittest -from vulncheck_sdk.aio.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner +from vulncheck_sdk.aio.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot -class TestApiTargetIntelCVESummaryPortsInner(unittest.TestCase): - """ApiTargetIntelCVESummaryPortsInner unit test stubs""" +class TestAdvisoryCVDSnapshot(unittest.TestCase): + """AdvisoryCVDSnapshot unit test stubs""" def setUp(self): pass @@ -26,26 +26,28 @@ def setUp(self): def tearDown(self): pass - def make_instance(self, include_optional) -> ApiTargetIntelCVESummaryPortsInner: - """Test ApiTargetIntelCVESummaryPortsInner + def make_instance(self, include_optional) -> AdvisoryCVDSnapshot: + """Test AdvisoryCVDSnapshot include_optional is a boolean, when False only required params are included, when True both required and optional params are included """ - # uncomment below to create an instance of `ApiTargetIntelCVESummaryPortsInner` + # uncomment below to create an instance of `AdvisoryCVDSnapshot` """ - model = ApiTargetIntelCVESummaryPortsInner() + model = AdvisoryCVDSnapshot() if include_optional: - return ApiTargetIntelCVESummaryPortsInner( - count = 56, - value = 56 + return AdvisoryCVDSnapshot( + as_of = '', + fetched_at = '', + manifest_sha3 = '', + revision = 56 ) else: - return ApiTargetIntelCVESummaryPortsInner( + return AdvisoryCVDSnapshot( ) """ - def testApiTargetIntelCVESummaryPortsInner(self): - """Test ApiTargetIntelCVESummaryPortsInner""" + def testAdvisoryCVDSnapshot(self): + """Test AdvisoryCVDSnapshot""" # inst_req_only = self.make_instance(include_optional=False) # inst_req_and_optional = self.make_instance(include_optional=True) diff --git a/test/blocking/test_api_target_intel_cve_summary_asns_inner.py b/test/aio/test_api_c2_frequency.py similarity index 53% rename from test/blocking/test_api_target_intel_cve_summary_asns_inner.py rename to test/aio/test_api_c2_frequency.py index bccf2f1a..72a47797 100644 --- a/test/blocking/test_api_target_intel_cve_summary_asns_inner.py +++ b/test/aio/test_api_c2_frequency.py @@ -15,10 +15,10 @@ import unittest -from vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner +from vulncheck_sdk.aio.models.api_c2_frequency import ApiC2Frequency -class TestApiTargetIntelCVESummaryAsnsInner(unittest.TestCase): - """ApiTargetIntelCVESummaryAsnsInner unit test stubs""" +class TestApiC2Frequency(unittest.TestCase): + """ApiC2Frequency unit test stubs""" def setUp(self): pass @@ -26,26 +26,26 @@ def setUp(self): def tearDown(self): pass - def make_instance(self, include_optional) -> ApiTargetIntelCVESummaryAsnsInner: - """Test ApiTargetIntelCVESummaryAsnsInner + def make_instance(self, include_optional) -> ApiC2Frequency: + """Test ApiC2Frequency include_optional is a boolean, when False only required params are included, when True both required and optional params are included """ - # uncomment below to create an instance of `ApiTargetIntelCVESummaryAsnsInner` + # uncomment below to create an instance of `ApiC2Frequency` """ - model = ApiTargetIntelCVESummaryAsnsInner() + model = ApiC2Frequency() if include_optional: - return ApiTargetIntelCVESummaryAsnsInner( + return ApiC2Frequency( count = 56, - value = '' + src = '' ) else: - return ApiTargetIntelCVESummaryAsnsInner( + return ApiC2Frequency( ) """ - def testApiTargetIntelCVESummaryAsnsInner(self): - """Test ApiTargetIntelCVESummaryAsnsInner""" + def testApiC2Frequency(self): + """Test ApiC2Frequency""" # inst_req_only = self.make_instance(include_optional=False) # inst_req_and_optional = self.make_instance(include_optional=True) diff --git a/test/aio/test_api_cve_confirmed.py b/test/aio/test_api_cve_confirmed.py new file mode 100644 index 00000000..86a9b02d --- /dev/null +++ b/test/aio/test_api_cve_confirmed.py @@ -0,0 +1,53 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.api_cve_confirmed import ApiCVEConfirmed + +class TestApiCVEConfirmed(unittest.TestCase): + """ApiCVEConfirmed unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> ApiCVEConfirmed: + """Test ApiCVEConfirmed + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `ApiCVEConfirmed` + """ + model = ApiCVEConfirmed() + if include_optional: + return ApiCVEConfirmed( + confirmed = True, + cve_id = '' + ) + else: + return ApiCVEConfirmed( + ) + """ + + def testApiCVEConfirmed(self): + """Test ApiCVEConfirmed""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_api_http_details.py b/test/aio/test_api_http_details.py index ed262677..07b20500 100644 --- a/test/aio/test_api_http_details.py +++ b/test/aio/test_api_http_details.py @@ -36,9 +36,9 @@ def make_instance(self, include_optional) -> ApiHTTPDetails: model = ApiHTTPDetails() if include_optional: return ApiHTTPDetails( + http_method = '', http_request_body = '', http_user_agent = '', - method = '', protocol = '', url = '' ) diff --git a/test/aio/test_api_initial_access.py b/test/aio/test_api_initial_access.py index 311f6d52..bae7cb29 100644 --- a/test/aio/test_api_initial_access.py +++ b/test/aio/test_api_initial_access.py @@ -78,6 +78,26 @@ def make_instance(self, include_optional) -> ApiInitialAccess: fofa_raw_queries = [ '' ], + goexploit = vulncheck_sdk.aio.models.api/initial_access_go_exploit.api.InitialAccessGoExploit( + asset_detection = True, + cpe = [ + '' + ], + custom_flags = [ + vulncheck_sdk.aio.models.api/initial_access_go_exploit_custom_flag.api.InitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '', ) + ], + default_port = 56, + exploit_type = '', + exploitation = True, + protocol = '', + supported_c2 = [ + '' + ], + version_scanner = True, ), google_queries = [ '' ], @@ -110,6 +130,9 @@ def make_instance(self, include_optional) -> ApiInitialAccess: target_docker = True, target_encrypted_comms = '', target_service = '', + vc_target_intel_query = [ + '' + ], vendor = '', version_scanner = True, yara = True, @@ -122,6 +145,7 @@ def make_instance(self, include_optional) -> ApiInitialAccess: ], ) ], cve = '', + id = '', in_kev = True, in_vckev = True, vulnerable_cpes = [ diff --git a/test/aio/test_api_initial_access_artifact.py b/test/aio/test_api_initial_access_artifact.py index 2831fdca..e614b53d 100644 --- a/test/aio/test_api_initial_access_artifact.py +++ b/test/aio/test_api_initial_access_artifact.py @@ -76,6 +76,26 @@ def make_instance(self, include_optional) -> ApiInitialAccessArtifact: fofa_raw_queries = [ '' ], + goexploit = vulncheck_sdk.aio.models.api/initial_access_go_exploit.api.InitialAccessGoExploit( + asset_detection = True, + cpe = [ + '' + ], + custom_flags = [ + vulncheck_sdk.aio.models.api/initial_access_go_exploit_custom_flag.api.InitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '', ) + ], + default_port = 56, + exploit_type = '', + exploitation = True, + protocol = '', + supported_c2 = [ + '' + ], + version_scanner = True, ), google_queries = [ '' ], @@ -108,6 +128,9 @@ def make_instance(self, include_optional) -> ApiInitialAccessArtifact: target_docker = True, target_encrypted_comms = '', target_service = '', + vc_target_intel_query = [ + '' + ], vendor = '', version_scanner = True, yara = True, diff --git a/test/aio/test_api_initial_access_go_exploit.py b/test/aio/test_api_initial_access_go_exploit.py new file mode 100644 index 00000000..6fa3a5ed --- /dev/null +++ b/test/aio/test_api_initial_access_go_exploit.py @@ -0,0 +1,70 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit + +class TestApiInitialAccessGoExploit(unittest.TestCase): + """ApiInitialAccessGoExploit unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> ApiInitialAccessGoExploit: + """Test ApiInitialAccessGoExploit + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `ApiInitialAccessGoExploit` + """ + model = ApiInitialAccessGoExploit() + if include_optional: + return ApiInitialAccessGoExploit( + asset_detection = True, + cpe = [ + '' + ], + custom_flags = [ + vulncheck_sdk.aio.models.api/initial_access_go_exploit_custom_flag.api.InitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '', ) + ], + default_port = 56, + exploit_type = '', + exploitation = True, + protocol = '', + supported_c2 = [ + '' + ], + version_scanner = True + ) + else: + return ApiInitialAccessGoExploit( + ) + """ + + def testApiInitialAccessGoExploit(self): + """Test ApiInitialAccessGoExploit""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_api_initial_access_go_exploit_custom_flag.py b/test/aio/test_api_initial_access_go_exploit_custom_flag.py new file mode 100644 index 00000000..0002cd27 --- /dev/null +++ b/test/aio/test_api_initial_access_go_exploit_custom_flag.py @@ -0,0 +1,55 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag + +class TestApiInitialAccessGoExploitCustomFlag(unittest.TestCase): + """ApiInitialAccessGoExploitCustomFlag unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> ApiInitialAccessGoExploitCustomFlag: + """Test ApiInitialAccessGoExploitCustomFlag + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `ApiInitialAccessGoExploitCustomFlag` + """ + model = ApiInitialAccessGoExploitCustomFlag() + if include_optional: + return ApiInitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '' + ) + else: + return ApiInitialAccessGoExploitCustomFlag( + ) + """ + + def testApiInitialAccessGoExploitCustomFlag(self): + """Test ApiInitialAccessGoExploitCustomFlag""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_api_target_intel.py b/test/aio/test_api_target_intel.py index 8c64dfcb..d8f2f93c 100644 --- a/test/aio/test_api_target_intel.py +++ b/test/aio/test_api_target_intel.py @@ -51,6 +51,11 @@ def make_instance(self, include_optional) -> ApiTargetIntel: cve = [ '' ], + cve_confirmed = [ + vulncheck_sdk.aio.models.api/cve_confirmed.api.CVEConfirmed( + confirmed = True, + cve_id = '', ) + ], date_added = '', fingerprints = [ vulncheck_sdk.aio.models.api/fingerprint.api.Fingerprint( @@ -70,6 +75,7 @@ def make_instance(self, include_optional) -> ApiTargetIntel: ], protocol = '', timestamp = '', + transport = '', vendor = [ '' ], diff --git a/test/aio/test_api_target_intel_cve_summary.py b/test/aio/test_api_target_intel_cve_summary.py deleted file mode 100644 index 9da6062b..00000000 --- a/test/aio/test_api_target_intel_cve_summary.py +++ /dev/null @@ -1,73 +0,0 @@ -# coding: utf-8 - -""" - VulnCheck API - - VulnCheck API (v3 + v4) - - The version of the OpenAPI document: latest - Contact: support@vulncheck.com - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -import unittest - -from vulncheck_sdk.aio.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary - -class TestApiTargetIntelCVESummary(unittest.TestCase): - """ApiTargetIntelCVESummary unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def make_instance(self, include_optional) -> ApiTargetIntelCVESummary: - """Test ApiTargetIntelCVESummary - include_optional is a boolean, when False only required - params are included, when True both required and - optional params are included """ - # uncomment below to create an instance of `ApiTargetIntelCVESummary` - """ - model = ApiTargetIntelCVESummary() - if include_optional: - return ApiTargetIntelCVESummary( - timestamp = '', - asns = [ - vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ], - country_codes = [ - vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ], - cve = '', - ports = [ - vulncheck_sdk.aio.models.api_target_intel_cve_summary_ports_inner.api_TargetIntelCVESummary_ports_inner( - count = 56, - value = 56, ) - ], - vendors = [ - vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ] - ) - else: - return ApiTargetIntelCVESummary( - ) - """ - - def testApiTargetIntelCVESummary(self): - """Test ApiTargetIntelCVESummary""" - # inst_req_only = self.make_instance(include_optional=False) - # inst_req_and_optional = self.make_instance(include_optional=True) - -if __name__ == '__main__': - unittest.main() diff --git a/test/aio/test_api_vuln_check_canary.py b/test/aio/test_api_vuln_check_canary.py index ee9513c0..ef062cd0 100644 --- a/test/aio/test_api_vuln_check_canary.py +++ b/test/aio/test_api_vuln_check_canary.py @@ -36,6 +36,14 @@ def make_instance(self, include_optional) -> ApiVulnCheckCanary: model = ApiVulnCheckCanary() if include_optional: return ApiVulnCheckCanary( + c2_frequency_3d = [ + vulncheck_sdk.aio.models.api/c2_frequency.api.C2Frequency( + count = 56, + src = '', ) + ], + c2_location = [ + '' + ], category = '', client_fingerprints = vulncheck_sdk.aio.models.api/client_fingerprints.api.ClientFingerprints( hassh = '', @@ -44,12 +52,16 @@ def make_instance(self, include_optional) -> ApiVulnCheckCanary: cve = '', dst_country = '', http = vulncheck_sdk.aio.models.api/http_details.api.HTTPDetails( + http_method = '', http_request_body = '', http_user_agent = '', - method = '', protocol = '', url = '', ), payload = '', + payload_tlsh = '', + payload_tooling = [ + '' + ], severity = 56, signature = '', signature_id = 56, @@ -58,7 +70,15 @@ def make_instance(self, include_optional) -> ApiVulnCheckCanary: src_asn = '', src_country = '', src_ip = '', + src_ip_freq_3d = 56, + src_ip_freq_3d_canary = 56, + src_ip_type_findings = [ + '' + ], src_port = 56, + tech_vertical = [ + '' + ], timestamp = '' ) else: diff --git a/test/aio/test_indices_api.py b/test/aio/test_indices_api.py index 9fe79c3c..6b138f3f 100644 --- a/test/aio/test_indices_api.py +++ b/test/aio/test_indices_api.py @@ -181,6 +181,13 @@ async def test_index_android_get(self) -> None: """ pass + async def test_index_anthropic_cvd_get(self) -> None: + """Test case for index_anthropic_cvd_get + + Return vulnerability data stored in index \"anthropic-cvd\" + """ + pass + async def test_index_apache_activemq_get(self) -> None: """Test case for index_apache_activemq_get @@ -3079,13 +3086,6 @@ async def test_index_tailscale_get(self) -> None: """ pass - async def test_index_target_intel_cve_summary_get(self) -> None: - """Test case for index_target_intel_cve_summary_get - - Return vulnerability data stored in index \"target-intel-cve-summary\" - """ - pass - async def test_index_target_intel_get(self) -> None: """Test case for index_target_intel_get diff --git a/test/aio/test_render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py new file mode 100644 index 00000000..8e2228dd --- /dev/null +++ b/test/aio/test_render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py @@ -0,0 +1,129 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination + +class TestRenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination(unittest.TestCase): + """RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination: + """Test RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination` + """ + model = RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination() + if include_optional: + return RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination( + benchmark = 1.337, + meta = vulncheck_sdk.aio.models.paginate/pagination.paginate.Pagination( + cursor = '', + first_item = 56, + index = '', + last_item = 56, + limit = 56, + matches = [ + vulncheck_sdk.aio.models.paginate/match.paginate.Match( + field = '', + value = '', ) + ], + max_pages = 56, + next_cursor = '', + opensearch_query = vulncheck_sdk.aio.models.opensearch_query.opensearch_query(), + order = '', + page = 56, + pages = [ + '' + ], + parameters = [ + vulncheck_sdk.aio.models.paginate/param.paginate.Param( + filtering = '', + format = '', + name = '', ) + ], + show_pages = True, + show_query = True, + sort = '', + timestamp = '', + total_documents = 56, + total_pages = 56, + warnings = [ + '' + ], ), + data = [ + vulncheck_sdk.aio.models.advisory/anthropic_cvd.advisory.AnthropicCVD( + attribution = vulncheck_sdk.aio.models.advisory/credit.advisory.Credit( + lang = '', + type = '', + user = '', + value = '', ), + bug_class = '', + cve = [ + '' + ], + date_added = '', + date_committed = '', + entry = [ + 56 + ], + ghsa = [ + '' + ], + hash = '', + project = '', + raw_preimage = [ + 56 + ], + severities = vulncheck_sdk.aio.models.advisory/cvd_severity_compare.advisory.CVDSeverityCompare( + claude = '', + maintainer = '', + security_research_firm = '', ), + snapshot = vulncheck_sdk.aio.models.advisory/cvd_snapshot.advisory.CVDSnapshot( + as_of = '', + fetched_at = '', + manifest_sha3 = '', + revision = 56, ), + status = '', + timeline = [ + vulncheck_sdk.aio.models.advisory/timeline.advisory.Timeline( + lang = '', + time = '', + value = '', ) + ], + updated_at = '', + url = '', ) + ] + ) + else: + return RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination( + ) + """ + + def testRenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination(self): + """Test RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_render_response_with_metadata_array_advisory_avidml_advs_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_advisory_avidml_advs_paginate_pagination.py index 99439807..0661981c 100644 --- a/test/aio/test_render_response_with_metadata_array_advisory_avidml_advs_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_advisory_avidml_advs_paginate_pagination.py @@ -73,6 +73,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], ), data = [ vulncheck_sdk.aio.models.advisory/avidml_advs.advisory.AVIDMLAdvs( + cve = [ + '' + ], date_added = '', description = '', id = '', diff --git a/test/aio/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py index f98aa141..7c9caaa1 100644 --- a/test/aio/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py @@ -115,6 +115,26 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI fofa_raw_queries = [ '' ], + goexploit = vulncheck_sdk.aio.models.api/initial_access_go_exploit.api.InitialAccessGoExploit( + asset_detection = True, + cpe = [ + '' + ], + custom_flags = [ + vulncheck_sdk.aio.models.api/initial_access_go_exploit_custom_flag.api.InitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '', ) + ], + default_port = 56, + exploit_type = '', + exploitation = True, + protocol = '', + supported_c2 = [ + '' + ], + version_scanner = True, ), google_queries = [ '' ], @@ -147,6 +167,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI target_docker = True, target_encrypted_comms = '', target_service = '', + vc_target_intel_query = [ + '' + ], vendor = '', version_scanner = True, yara = True, @@ -159,6 +182,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI ], ) ], cve = '', + id = '', in_kev = True, in_vckev = True, vulnerable_cpes = [ diff --git a/test/aio/test_render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py deleted file mode 100644 index 10a52f1d..00000000 --- a/test/aio/test_render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py +++ /dev/null @@ -1,109 +0,0 @@ -# coding: utf-8 - -""" - VulnCheck API - - VulnCheck API (v3 + v4) - - The version of the OpenAPI document: latest - Contact: support@vulncheck.com - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -import unittest - -from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination - -class TestRenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination(unittest.TestCase): - """RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination: - """Test RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination - include_optional is a boolean, when False only required - params are included, when True both required and - optional params are included """ - # uncomment below to create an instance of `RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination` - """ - model = RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination() - if include_optional: - return RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination( - benchmark = 1.337, - meta = vulncheck_sdk.aio.models.paginate/pagination.paginate.Pagination( - cursor = '', - first_item = 56, - index = '', - last_item = 56, - limit = 56, - matches = [ - vulncheck_sdk.aio.models.paginate/match.paginate.Match( - field = '', - value = '', ) - ], - max_pages = 56, - next_cursor = '', - opensearch_query = vulncheck_sdk.aio.models.opensearch_query.opensearch_query(), - order = '', - page = 56, - pages = [ - '' - ], - parameters = [ - vulncheck_sdk.aio.models.paginate/param.paginate.Param( - filtering = '', - format = '', - name = '', ) - ], - show_pages = True, - show_query = True, - sort = '', - timestamp = '', - total_documents = 56, - total_pages = 56, - warnings = [ - '' - ], ), - data = [ - vulncheck_sdk.aio.models.api/target_intel_cve_summary.api.TargetIntelCVESummary( - _timestamp = '', - asns = [ - vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ], - country_codes = [ - vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ], - cve = '', - ports = [ - vulncheck_sdk.aio.models.api_target_intel_cve_summary_ports_inner.api_TargetIntelCVESummary_ports_inner( - count = 56, - value = 56, ) - ], - vendors = [ - - ], ) - ] - ) - else: - return RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination( - ) - """ - - def testRenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination(self): - """Test RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination""" - # inst_req_only = self.make_instance(include_optional=False) - # inst_req_and_optional = self.make_instance(include_optional=True) - -if __name__ == '__main__': - unittest.main() diff --git a/test/aio/test_render_response_with_metadata_array_api_target_intel_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_api_target_intel_paginate_pagination.py index ee8fd38f..9fce7a8b 100644 --- a/test/aio/test_render_response_with_metadata_array_api_target_intel_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_api_target_intel_paginate_pagination.py @@ -88,6 +88,11 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiT cve = [ '' ], + cve_confirmed = [ + vulncheck_sdk.aio.models.api/cve_confirmed.api.CVEConfirmed( + confirmed = True, + cve_id = '', ) + ], date_added = '', fingerprints = [ vulncheck_sdk.aio.models.api/fingerprint.api.Fingerprint( @@ -106,6 +111,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiT ], protocol = '', timestamp = '', + transport = '', vendor = [ '' ], diff --git a/test/aio/test_render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination.py b/test/aio/test_render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination.py index dae27260..c5bf0153 100644 --- a/test/aio/test_render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination.py +++ b/test/aio/test_render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination.py @@ -73,6 +73,14 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiV ], ), data = [ vulncheck_sdk.aio.models.api/vuln_check_canary.api.VulnCheckCanary( + c2_frequency_3d = [ + vulncheck_sdk.aio.models.api/c2_frequency.api.C2Frequency( + count = 56, + src = '', ) + ], + c2_location = [ + '' + ], category = '', client_fingerprints = vulncheck_sdk.aio.models.api/client_fingerprints.api.ClientFingerprints( hassh = '', @@ -81,12 +89,16 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiV cve = '', dst_country = '', http = vulncheck_sdk.aio.models.api/http_details.api.HTTPDetails( + http_method = '', http_request_body = '', http_user_agent = '', - method = '', protocol = '', url = '', ), payload = '', + payload_tlsh = '', + payload_tooling = [ + '' + ], severity = 56, signature = '', signature_id = 56, @@ -95,7 +107,15 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiV src_asn = '', src_country = '', src_ip = '', + src_ip_freq_3d = 56, + src_ip_freq_3d_canary = 56, + src_ip_type_findings = [ + '' + ], src_port = 56, + tech_vertical = [ + '' + ], timestamp = '', ) ] ) diff --git a/test/blocking/test_advisory_anthropic_cvd.py b/test/blocking/test_advisory_anthropic_cvd.py new file mode 100644 index 00000000..cd48ce93 --- /dev/null +++ b/test/blocking/test_advisory_anthropic_cvd.py @@ -0,0 +1,91 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD + +class TestAdvisoryAnthropicCVD(unittest.TestCase): + """AdvisoryAnthropicCVD unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> AdvisoryAnthropicCVD: + """Test AdvisoryAnthropicCVD + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `AdvisoryAnthropicCVD` + """ + model = AdvisoryAnthropicCVD() + if include_optional: + return AdvisoryAnthropicCVD( + attribution = vulncheck_sdk.models.advisory/credit.advisory.Credit( + lang = '', + type = '', + user = '', + value = '', ), + bug_class = '', + cve = [ + '' + ], + date_added = '', + date_committed = '', + entry = [ + 56 + ], + ghsa = [ + '' + ], + hash = '', + project = '', + raw_preimage = [ + 56 + ], + severities = vulncheck_sdk.models.advisory/cvd_severity_compare.advisory.CVDSeverityCompare( + claude = '', + maintainer = '', + security_research_firm = '', ), + snapshot = vulncheck_sdk.models.advisory/cvd_snapshot.advisory.CVDSnapshot( + as_of = '', + fetched_at = '', + manifest_sha3 = '', + revision = 56, ), + status = '', + timeline = [ + vulncheck_sdk.models.advisory/timeline.advisory.Timeline( + lang = '', + time = '', + value = '', ) + ], + updated_at = '', + url = '' + ) + else: + return AdvisoryAnthropicCVD( + ) + """ + + def testAdvisoryAnthropicCVD(self): + """Test AdvisoryAnthropicCVD""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_advisory_avidml_advs.py b/test/blocking/test_advisory_avidml_advs.py index 1b175f8d..61b18565 100644 --- a/test/blocking/test_advisory_avidml_advs.py +++ b/test/blocking/test_advisory_avidml_advs.py @@ -36,6 +36,9 @@ def make_instance(self, include_optional) -> AdvisoryAVIDMLAdvs: model = AdvisoryAVIDMLAdvs() if include_optional: return AdvisoryAVIDMLAdvs( + cve = [ + '' + ], date_added = '', description = '', id = '', diff --git a/test/blocking/test_advisory_cvd_severity_compare.py b/test/blocking/test_advisory_cvd_severity_compare.py new file mode 100644 index 00000000..ec3acd88 --- /dev/null +++ b/test/blocking/test_advisory_cvd_severity_compare.py @@ -0,0 +1,54 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare + +class TestAdvisoryCVDSeverityCompare(unittest.TestCase): + """AdvisoryCVDSeverityCompare unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> AdvisoryCVDSeverityCompare: + """Test AdvisoryCVDSeverityCompare + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `AdvisoryCVDSeverityCompare` + """ + model = AdvisoryCVDSeverityCompare() + if include_optional: + return AdvisoryCVDSeverityCompare( + claude = '', + maintainer = '', + security_research_firm = '' + ) + else: + return AdvisoryCVDSeverityCompare( + ) + """ + + def testAdvisoryCVDSeverityCompare(self): + """Test AdvisoryCVDSeverityCompare""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_advisory_cvd_snapshot.py b/test/blocking/test_advisory_cvd_snapshot.py new file mode 100644 index 00000000..09ac8eeb --- /dev/null +++ b/test/blocking/test_advisory_cvd_snapshot.py @@ -0,0 +1,55 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot + +class TestAdvisoryCVDSnapshot(unittest.TestCase): + """AdvisoryCVDSnapshot unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> AdvisoryCVDSnapshot: + """Test AdvisoryCVDSnapshot + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `AdvisoryCVDSnapshot` + """ + model = AdvisoryCVDSnapshot() + if include_optional: + return AdvisoryCVDSnapshot( + as_of = '', + fetched_at = '', + manifest_sha3 = '', + revision = 56 + ) + else: + return AdvisoryCVDSnapshot( + ) + """ + + def testAdvisoryCVDSnapshot(self): + """Test AdvisoryCVDSnapshot""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/aio/test_api_target_intel_cve_summary_asns_inner.py b/test/blocking/test_api_c2_frequency.py similarity index 53% rename from test/aio/test_api_target_intel_cve_summary_asns_inner.py rename to test/blocking/test_api_c2_frequency.py index 1870087e..6868181d 100644 --- a/test/aio/test_api_target_intel_cve_summary_asns_inner.py +++ b/test/blocking/test_api_c2_frequency.py @@ -15,10 +15,10 @@ import unittest -from vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner +from vulncheck_sdk.models.api_c2_frequency import ApiC2Frequency -class TestApiTargetIntelCVESummaryAsnsInner(unittest.TestCase): - """ApiTargetIntelCVESummaryAsnsInner unit test stubs""" +class TestApiC2Frequency(unittest.TestCase): + """ApiC2Frequency unit test stubs""" def setUp(self): pass @@ -26,26 +26,26 @@ def setUp(self): def tearDown(self): pass - def make_instance(self, include_optional) -> ApiTargetIntelCVESummaryAsnsInner: - """Test ApiTargetIntelCVESummaryAsnsInner + def make_instance(self, include_optional) -> ApiC2Frequency: + """Test ApiC2Frequency include_optional is a boolean, when False only required params are included, when True both required and optional params are included """ - # uncomment below to create an instance of `ApiTargetIntelCVESummaryAsnsInner` + # uncomment below to create an instance of `ApiC2Frequency` """ - model = ApiTargetIntelCVESummaryAsnsInner() + model = ApiC2Frequency() if include_optional: - return ApiTargetIntelCVESummaryAsnsInner( + return ApiC2Frequency( count = 56, - value = '' + src = '' ) else: - return ApiTargetIntelCVESummaryAsnsInner( + return ApiC2Frequency( ) """ - def testApiTargetIntelCVESummaryAsnsInner(self): - """Test ApiTargetIntelCVESummaryAsnsInner""" + def testApiC2Frequency(self): + """Test ApiC2Frequency""" # inst_req_only = self.make_instance(include_optional=False) # inst_req_and_optional = self.make_instance(include_optional=True) diff --git a/test/blocking/test_api_cve_confirmed.py b/test/blocking/test_api_cve_confirmed.py new file mode 100644 index 00000000..49301806 --- /dev/null +++ b/test/blocking/test_api_cve_confirmed.py @@ -0,0 +1,53 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.api_cve_confirmed import ApiCVEConfirmed + +class TestApiCVEConfirmed(unittest.TestCase): + """ApiCVEConfirmed unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> ApiCVEConfirmed: + """Test ApiCVEConfirmed + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `ApiCVEConfirmed` + """ + model = ApiCVEConfirmed() + if include_optional: + return ApiCVEConfirmed( + confirmed = True, + cve_id = '' + ) + else: + return ApiCVEConfirmed( + ) + """ + + def testApiCVEConfirmed(self): + """Test ApiCVEConfirmed""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_api_http_details.py b/test/blocking/test_api_http_details.py index 55cbb72c..7ab08e45 100644 --- a/test/blocking/test_api_http_details.py +++ b/test/blocking/test_api_http_details.py @@ -36,9 +36,9 @@ def make_instance(self, include_optional) -> ApiHTTPDetails: model = ApiHTTPDetails() if include_optional: return ApiHTTPDetails( + http_method = '', http_request_body = '', http_user_agent = '', - method = '', protocol = '', url = '' ) diff --git a/test/blocking/test_api_initial_access.py b/test/blocking/test_api_initial_access.py index a63619ab..154ad24f 100644 --- a/test/blocking/test_api_initial_access.py +++ b/test/blocking/test_api_initial_access.py @@ -78,6 +78,26 @@ def make_instance(self, include_optional) -> ApiInitialAccess: fofa_raw_queries = [ '' ], + goexploit = vulncheck_sdk.models.api/initial_access_go_exploit.api.InitialAccessGoExploit( + asset_detection = True, + cpe = [ + '' + ], + custom_flags = [ + vulncheck_sdk.models.api/initial_access_go_exploit_custom_flag.api.InitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '', ) + ], + default_port = 56, + exploit_type = '', + exploitation = True, + protocol = '', + supported_c2 = [ + '' + ], + version_scanner = True, ), google_queries = [ '' ], @@ -110,6 +130,9 @@ def make_instance(self, include_optional) -> ApiInitialAccess: target_docker = True, target_encrypted_comms = '', target_service = '', + vc_target_intel_query = [ + '' + ], vendor = '', version_scanner = True, yara = True, @@ -122,6 +145,7 @@ def make_instance(self, include_optional) -> ApiInitialAccess: ], ) ], cve = '', + id = '', in_kev = True, in_vckev = True, vulnerable_cpes = [ diff --git a/test/blocking/test_api_initial_access_artifact.py b/test/blocking/test_api_initial_access_artifact.py index 8f1aa44c..eb201425 100644 --- a/test/blocking/test_api_initial_access_artifact.py +++ b/test/blocking/test_api_initial_access_artifact.py @@ -76,6 +76,26 @@ def make_instance(self, include_optional) -> ApiInitialAccessArtifact: fofa_raw_queries = [ '' ], + goexploit = vulncheck_sdk.models.api/initial_access_go_exploit.api.InitialAccessGoExploit( + asset_detection = True, + cpe = [ + '' + ], + custom_flags = [ + vulncheck_sdk.models.api/initial_access_go_exploit_custom_flag.api.InitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '', ) + ], + default_port = 56, + exploit_type = '', + exploitation = True, + protocol = '', + supported_c2 = [ + '' + ], + version_scanner = True, ), google_queries = [ '' ], @@ -108,6 +128,9 @@ def make_instance(self, include_optional) -> ApiInitialAccessArtifact: target_docker = True, target_encrypted_comms = '', target_service = '', + vc_target_intel_query = [ + '' + ], vendor = '', version_scanner = True, yara = True, diff --git a/test/blocking/test_api_initial_access_go_exploit.py b/test/blocking/test_api_initial_access_go_exploit.py new file mode 100644 index 00000000..50eb7441 --- /dev/null +++ b/test/blocking/test_api_initial_access_go_exploit.py @@ -0,0 +1,70 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit + +class TestApiInitialAccessGoExploit(unittest.TestCase): + """ApiInitialAccessGoExploit unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> ApiInitialAccessGoExploit: + """Test ApiInitialAccessGoExploit + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `ApiInitialAccessGoExploit` + """ + model = ApiInitialAccessGoExploit() + if include_optional: + return ApiInitialAccessGoExploit( + asset_detection = True, + cpe = [ + '' + ], + custom_flags = [ + vulncheck_sdk.models.api/initial_access_go_exploit_custom_flag.api.InitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '', ) + ], + default_port = 56, + exploit_type = '', + exploitation = True, + protocol = '', + supported_c2 = [ + '' + ], + version_scanner = True + ) + else: + return ApiInitialAccessGoExploit( + ) + """ + + def testApiInitialAccessGoExploit(self): + """Test ApiInitialAccessGoExploit""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_api_initial_access_go_exploit_custom_flag.py b/test/blocking/test_api_initial_access_go_exploit_custom_flag.py new file mode 100644 index 00000000..ac1d336d --- /dev/null +++ b/test/blocking/test_api_initial_access_go_exploit_custom_flag.py @@ -0,0 +1,55 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag + +class TestApiInitialAccessGoExploitCustomFlag(unittest.TestCase): + """ApiInitialAccessGoExploitCustomFlag unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> ApiInitialAccessGoExploitCustomFlag: + """Test ApiInitialAccessGoExploitCustomFlag + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `ApiInitialAccessGoExploitCustomFlag` + """ + model = ApiInitialAccessGoExploitCustomFlag() + if include_optional: + return ApiInitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '' + ) + else: + return ApiInitialAccessGoExploitCustomFlag( + ) + """ + + def testApiInitialAccessGoExploitCustomFlag(self): + """Test ApiInitialAccessGoExploitCustomFlag""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_api_target_intel.py b/test/blocking/test_api_target_intel.py index 39229c73..8fb2bcc4 100644 --- a/test/blocking/test_api_target_intel.py +++ b/test/blocking/test_api_target_intel.py @@ -51,6 +51,11 @@ def make_instance(self, include_optional) -> ApiTargetIntel: cve = [ '' ], + cve_confirmed = [ + vulncheck_sdk.models.api/cve_confirmed.api.CVEConfirmed( + confirmed = True, + cve_id = '', ) + ], date_added = '', fingerprints = [ vulncheck_sdk.models.api/fingerprint.api.Fingerprint( @@ -70,6 +75,7 @@ def make_instance(self, include_optional) -> ApiTargetIntel: ], protocol = '', timestamp = '', + transport = '', vendor = [ '' ], diff --git a/test/blocking/test_api_target_intel_cve_summary.py b/test/blocking/test_api_target_intel_cve_summary.py deleted file mode 100644 index 77027d74..00000000 --- a/test/blocking/test_api_target_intel_cve_summary.py +++ /dev/null @@ -1,73 +0,0 @@ -# coding: utf-8 - -""" - VulnCheck API - - VulnCheck API (v3 + v4) - - The version of the OpenAPI document: latest - Contact: support@vulncheck.com - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -import unittest - -from vulncheck_sdk.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary - -class TestApiTargetIntelCVESummary(unittest.TestCase): - """ApiTargetIntelCVESummary unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def make_instance(self, include_optional) -> ApiTargetIntelCVESummary: - """Test ApiTargetIntelCVESummary - include_optional is a boolean, when False only required - params are included, when True both required and - optional params are included """ - # uncomment below to create an instance of `ApiTargetIntelCVESummary` - """ - model = ApiTargetIntelCVESummary() - if include_optional: - return ApiTargetIntelCVESummary( - timestamp = '', - asns = [ - vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ], - country_codes = [ - vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ], - cve = '', - ports = [ - vulncheck_sdk.models.api_target_intel_cve_summary_ports_inner.api_TargetIntelCVESummary_ports_inner( - count = 56, - value = 56, ) - ], - vendors = [ - vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ] - ) - else: - return ApiTargetIntelCVESummary( - ) - """ - - def testApiTargetIntelCVESummary(self): - """Test ApiTargetIntelCVESummary""" - # inst_req_only = self.make_instance(include_optional=False) - # inst_req_and_optional = self.make_instance(include_optional=True) - -if __name__ == '__main__': - unittest.main() diff --git a/test/blocking/test_api_vuln_check_canary.py b/test/blocking/test_api_vuln_check_canary.py index 6a76689c..2d70b27f 100644 --- a/test/blocking/test_api_vuln_check_canary.py +++ b/test/blocking/test_api_vuln_check_canary.py @@ -36,6 +36,14 @@ def make_instance(self, include_optional) -> ApiVulnCheckCanary: model = ApiVulnCheckCanary() if include_optional: return ApiVulnCheckCanary( + c2_frequency_3d = [ + vulncheck_sdk.models.api/c2_frequency.api.C2Frequency( + count = 56, + src = '', ) + ], + c2_location = [ + '' + ], category = '', client_fingerprints = vulncheck_sdk.models.api/client_fingerprints.api.ClientFingerprints( hassh = '', @@ -44,12 +52,16 @@ def make_instance(self, include_optional) -> ApiVulnCheckCanary: cve = '', dst_country = '', http = vulncheck_sdk.models.api/http_details.api.HTTPDetails( + http_method = '', http_request_body = '', http_user_agent = '', - method = '', protocol = '', url = '', ), payload = '', + payload_tlsh = '', + payload_tooling = [ + '' + ], severity = 56, signature = '', signature_id = 56, @@ -58,7 +70,15 @@ def make_instance(self, include_optional) -> ApiVulnCheckCanary: src_asn = '', src_country = '', src_ip = '', + src_ip_freq_3d = 56, + src_ip_freq_3d_canary = 56, + src_ip_type_findings = [ + '' + ], src_port = 56, + tech_vertical = [ + '' + ], timestamp = '' ) else: diff --git a/test/blocking/test_indices_api.py b/test/blocking/test_indices_api.py index a90b3721..84a68daf 100644 --- a/test/blocking/test_indices_api.py +++ b/test/blocking/test_indices_api.py @@ -181,6 +181,13 @@ def test_index_android_get(self) -> None: """ pass + def test_index_anthropic_cvd_get(self) -> None: + """Test case for index_anthropic_cvd_get + + Return vulnerability data stored in index \"anthropic-cvd\" + """ + pass + def test_index_apache_activemq_get(self) -> None: """Test case for index_apache_activemq_get @@ -3079,13 +3086,6 @@ def test_index_tailscale_get(self) -> None: """ pass - def test_index_target_intel_cve_summary_get(self) -> None: - """Test case for index_target_intel_cve_summary_get - - Return vulnerability data stored in index \"target-intel-cve-summary\" - """ - pass - def test_index_target_intel_get(self) -> None: """Test case for index_target_intel_get diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py new file mode 100644 index 00000000..7ed5c394 --- /dev/null +++ b/test/blocking/test_render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py @@ -0,0 +1,129 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +import unittest + +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination + +class TestRenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination(unittest.TestCase): + """RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination: + """Test RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination + include_optional is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # uncomment below to create an instance of `RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination` + """ + model = RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination() + if include_optional: + return RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination( + benchmark = 1.337, + meta = vulncheck_sdk.models.paginate/pagination.paginate.Pagination( + cursor = '', + first_item = 56, + index = '', + last_item = 56, + limit = 56, + matches = [ + vulncheck_sdk.models.paginate/match.paginate.Match( + field = '', + value = '', ) + ], + max_pages = 56, + next_cursor = '', + opensearch_query = vulncheck_sdk.models.opensearch_query.opensearch_query(), + order = '', + page = 56, + pages = [ + '' + ], + parameters = [ + vulncheck_sdk.models.paginate/param.paginate.Param( + filtering = '', + format = '', + name = '', ) + ], + show_pages = True, + show_query = True, + sort = '', + timestamp = '', + total_documents = 56, + total_pages = 56, + warnings = [ + '' + ], ), + data = [ + vulncheck_sdk.models.advisory/anthropic_cvd.advisory.AnthropicCVD( + attribution = vulncheck_sdk.models.advisory/credit.advisory.Credit( + lang = '', + type = '', + user = '', + value = '', ), + bug_class = '', + cve = [ + '' + ], + date_added = '', + date_committed = '', + entry = [ + 56 + ], + ghsa = [ + '' + ], + hash = '', + project = '', + raw_preimage = [ + 56 + ], + severities = vulncheck_sdk.models.advisory/cvd_severity_compare.advisory.CVDSeverityCompare( + claude = '', + maintainer = '', + security_research_firm = '', ), + snapshot = vulncheck_sdk.models.advisory/cvd_snapshot.advisory.CVDSnapshot( + as_of = '', + fetched_at = '', + manifest_sha3 = '', + revision = 56, ), + status = '', + timeline = [ + vulncheck_sdk.models.advisory/timeline.advisory.Timeline( + lang = '', + time = '', + value = '', ) + ], + updated_at = '', + url = '', ) + ] + ) + else: + return RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination( + ) + """ + + def testRenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination(self): + """Test RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination""" + # inst_req_only = self.make_instance(include_optional=False) + # inst_req_and_optional = self.make_instance(include_optional=True) + +if __name__ == '__main__': + unittest.main() diff --git a/test/blocking/test_render_response_with_metadata_array_advisory_avidml_advs_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_advisory_avidml_advs_paginate_pagination.py index aaee5569..24f04ae6 100644 --- a/test/blocking/test_render_response_with_metadata_array_advisory_avidml_advs_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_advisory_avidml_advs_paginate_pagination.py @@ -73,6 +73,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayAdvi ], ), data = [ vulncheck_sdk.models.advisory/avidml_advs.advisory.AVIDMLAdvs( + cve = [ + '' + ], date_added = '', description = '', id = '', diff --git a/test/blocking/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py index 98f9f45c..a497c438 100644 --- a/test/blocking/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_api_initial_access_paginate_pagination.py @@ -115,6 +115,26 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI fofa_raw_queries = [ '' ], + goexploit = vulncheck_sdk.models.api/initial_access_go_exploit.api.InitialAccessGoExploit( + asset_detection = True, + cpe = [ + '' + ], + custom_flags = [ + vulncheck_sdk.models.api/initial_access_go_exploit_custom_flag.api.InitialAccessGoExploitCustomFlag( + default = '', + name = '', + type = '', + usage = '', ) + ], + default_port = 56, + exploit_type = '', + exploitation = True, + protocol = '', + supported_c2 = [ + '' + ], + version_scanner = True, ), google_queries = [ '' ], @@ -147,6 +167,9 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI target_docker = True, target_encrypted_comms = '', target_service = '', + vc_target_intel_query = [ + '' + ], vendor = '', version_scanner = True, yara = True, @@ -159,6 +182,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiI ], ) ], cve = '', + id = '', in_kev = True, in_vckev = True, vulnerable_cpes = [ diff --git a/test/blocking/test_render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py deleted file mode 100644 index 8493998a..00000000 --- a/test/blocking/test_render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py +++ /dev/null @@ -1,109 +0,0 @@ -# coding: utf-8 - -""" - VulnCheck API - - VulnCheck API (v3 + v4) - - The version of the OpenAPI document: latest - Contact: support@vulncheck.com - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -import unittest - -from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination - -class TestRenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination(unittest.TestCase): - """RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination unit test stubs""" - - def setUp(self): - pass - - def tearDown(self): - pass - - def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination: - """Test RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination - include_optional is a boolean, when False only required - params are included, when True both required and - optional params are included """ - # uncomment below to create an instance of `RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination` - """ - model = RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination() - if include_optional: - return RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination( - benchmark = 1.337, - meta = vulncheck_sdk.models.paginate/pagination.paginate.Pagination( - cursor = '', - first_item = 56, - index = '', - last_item = 56, - limit = 56, - matches = [ - vulncheck_sdk.models.paginate/match.paginate.Match( - field = '', - value = '', ) - ], - max_pages = 56, - next_cursor = '', - opensearch_query = vulncheck_sdk.models.opensearch_query.opensearch_query(), - order = '', - page = 56, - pages = [ - '' - ], - parameters = [ - vulncheck_sdk.models.paginate/param.paginate.Param( - filtering = '', - format = '', - name = '', ) - ], - show_pages = True, - show_query = True, - sort = '', - timestamp = '', - total_documents = 56, - total_pages = 56, - warnings = [ - '' - ], ), - data = [ - vulncheck_sdk.models.api/target_intel_cve_summary.api.TargetIntelCVESummary( - _timestamp = '', - asns = [ - vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ], - country_codes = [ - vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner.api_TargetIntelCVESummary_asns_inner( - count = 56, - value = '', ) - ], - cve = '', - ports = [ - vulncheck_sdk.models.api_target_intel_cve_summary_ports_inner.api_TargetIntelCVESummary_ports_inner( - count = 56, - value = 56, ) - ], - vendors = [ - - ], ) - ] - ) - else: - return RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination( - ) - """ - - def testRenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination(self): - """Test RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination""" - # inst_req_only = self.make_instance(include_optional=False) - # inst_req_and_optional = self.make_instance(include_optional=True) - -if __name__ == '__main__': - unittest.main() diff --git a/test/blocking/test_render_response_with_metadata_array_api_target_intel_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_api_target_intel_paginate_pagination.py index e00908c1..aff362c3 100644 --- a/test/blocking/test_render_response_with_metadata_array_api_target_intel_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_api_target_intel_paginate_pagination.py @@ -88,6 +88,11 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiT cve = [ '' ], + cve_confirmed = [ + vulncheck_sdk.models.api/cve_confirmed.api.CVEConfirmed( + confirmed = True, + cve_id = '', ) + ], date_added = '', fingerprints = [ vulncheck_sdk.models.api/fingerprint.api.Fingerprint( @@ -106,6 +111,7 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiT ], protocol = '', timestamp = '', + transport = '', vendor = [ '' ], diff --git a/test/blocking/test_render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination.py b/test/blocking/test_render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination.py index a8c39d80..63731047 100644 --- a/test/blocking/test_render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination.py +++ b/test/blocking/test_render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination.py @@ -73,6 +73,14 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiV ], ), data = [ vulncheck_sdk.models.api/vuln_check_canary.api.VulnCheckCanary( + c2_frequency_3d = [ + vulncheck_sdk.models.api/c2_frequency.api.C2Frequency( + count = 56, + src = '', ) + ], + c2_location = [ + '' + ], category = '', client_fingerprints = vulncheck_sdk.models.api/client_fingerprints.api.ClientFingerprints( hassh = '', @@ -81,12 +89,16 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiV cve = '', dst_country = '', http = vulncheck_sdk.models.api/http_details.api.HTTPDetails( + http_method = '', http_request_body = '', http_user_agent = '', - method = '', protocol = '', url = '', ), payload = '', + payload_tlsh = '', + payload_tooling = [ + '' + ], severity = 56, signature = '', signature_id = 56, @@ -95,7 +107,15 @@ def make_instance(self, include_optional) -> RenderResponseWithMetadataArrayApiV src_asn = '', src_country = '', src_ip = '', + src_ip_freq_3d = 56, + src_ip_freq_3d_canary = 56, + src_ip_type_findings = [ + '' + ], src_port = 56, + tech_vertical = [ + '' + ], timestamp = '', ) ] ) diff --git a/vulncheck_sdk/__init__.py b/vulncheck_sdk/__init__.py index 3ef2468c..08bb3494 100644 --- a/vulncheck_sdk/__init__.py +++ b/vulncheck_sdk/__init__.py @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "0.0.51" +__version__ = "0.0.52" # Define package exports __all__ = [ @@ -84,6 +84,7 @@ "AdvisoryAndroidPackage", "AdvisoryAndroidRange", "AdvisoryAndroidReference", + "AdvisoryAnthropicCVD", "AdvisoryApacheActiveMQ", "AdvisoryApacheArchiva", "AdvisoryApacheArrow", @@ -176,6 +177,8 @@ "AdvisoryCSAFRelationship", "AdvisoryCSAFScore", "AdvisoryCSAFVulnerability", + "AdvisoryCVDSeverityCompare", + "AdvisoryCVDSnapshot", "AdvisoryCVEDetail", "AdvisoryCVEDetailsLink", "AdvisoryCVEIdentityMappings", @@ -810,10 +813,12 @@ "AdvisoryZyxel", "ApiBaseMetricV2", "ApiBaseMetricV3", + "ApiC2Frequency", "ApiCPE", "ApiCPEMatch", "ApiCPEName", "ApiCVE", + "ApiCVEConfirmed", "ApiCVEDataMeta", "ApiCVEDataMetaExtended", "ApiCVEExtended", @@ -844,6 +849,8 @@ "ApiImpactExtended", "ApiInitialAccess", "ApiInitialAccessArtifact", + "ApiInitialAccessGoExploit", + "ApiInitialAccessGoExploitCustomFlag", "ApiMitreAttackTech", "ApiMitreAttackToCVE", "ApiMitreD3fendTechnique", @@ -897,9 +904,6 @@ "ApiRelatedAttackPattern", "ApiSSVC", "ApiTargetIntel", - "ApiTargetIntelCVESummary", - "ApiTargetIntelCVESummaryAsnsInner", - "ApiTargetIntelCVESummaryPortsInner", "ApiTemporalCVSSV2", "ApiTemporalCVSSV3", "ApiTemporalMetricV2", @@ -950,6 +954,7 @@ "RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination", "RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination", + "RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", @@ -1396,7 +1401,6 @@ "RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination", "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", - "RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination", "RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination", "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", "RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination", @@ -1492,6 +1496,7 @@ from vulncheck_sdk.models.advisory_android_package import AdvisoryAndroidPackage as AdvisoryAndroidPackage from vulncheck_sdk.models.advisory_android_range import AdvisoryAndroidRange as AdvisoryAndroidRange from vulncheck_sdk.models.advisory_android_reference import AdvisoryAndroidReference as AdvisoryAndroidReference +from vulncheck_sdk.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD as AdvisoryAnthropicCVD from vulncheck_sdk.models.advisory_apache_active_mq import AdvisoryApacheActiveMQ as AdvisoryApacheActiveMQ from vulncheck_sdk.models.advisory_apache_archiva import AdvisoryApacheArchiva as AdvisoryApacheArchiva from vulncheck_sdk.models.advisory_apache_arrow import AdvisoryApacheArrow as AdvisoryApacheArrow @@ -1584,6 +1589,8 @@ from vulncheck_sdk.models.advisory_csaf_relationship import AdvisoryCSAFRelationship as AdvisoryCSAFRelationship from vulncheck_sdk.models.advisory_csaf_score import AdvisoryCSAFScore as AdvisoryCSAFScore from vulncheck_sdk.models.advisory_csaf_vulnerability import AdvisoryCSAFVulnerability as AdvisoryCSAFVulnerability +from vulncheck_sdk.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare as AdvisoryCVDSeverityCompare +from vulncheck_sdk.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot as AdvisoryCVDSnapshot from vulncheck_sdk.models.advisory_cve_detail import AdvisoryCVEDetail as AdvisoryCVEDetail from vulncheck_sdk.models.advisory_cve_details_link import AdvisoryCVEDetailsLink as AdvisoryCVEDetailsLink from vulncheck_sdk.models.advisory_cve_identity_mappings import AdvisoryCVEIdentityMappings as AdvisoryCVEIdentityMappings @@ -2218,10 +2225,12 @@ from vulncheck_sdk.models.advisory_zyxel import AdvisoryZyxel as AdvisoryZyxel from vulncheck_sdk.models.api_base_metric_v2 import ApiBaseMetricV2 as ApiBaseMetricV2 from vulncheck_sdk.models.api_base_metric_v3 import ApiBaseMetricV3 as ApiBaseMetricV3 +from vulncheck_sdk.models.api_c2_frequency import ApiC2Frequency as ApiC2Frequency from vulncheck_sdk.models.api_cpe import ApiCPE as ApiCPE from vulncheck_sdk.models.api_cpe_match import ApiCPEMatch as ApiCPEMatch from vulncheck_sdk.models.api_cpe_name import ApiCPEName as ApiCPEName from vulncheck_sdk.models.api_cve import ApiCVE as ApiCVE +from vulncheck_sdk.models.api_cve_confirmed import ApiCVEConfirmed as ApiCVEConfirmed from vulncheck_sdk.models.api_cve_data_meta import ApiCVEDataMeta as ApiCVEDataMeta from vulncheck_sdk.models.api_cve_data_meta_extended import ApiCVEDataMetaExtended as ApiCVEDataMetaExtended from vulncheck_sdk.models.api_cve_extended import ApiCVEExtended as ApiCVEExtended @@ -2252,6 +2261,8 @@ from vulncheck_sdk.models.api_impact_extended import ApiImpactExtended as ApiImpactExtended from vulncheck_sdk.models.api_initial_access import ApiInitialAccess as ApiInitialAccess from vulncheck_sdk.models.api_initial_access_artifact import ApiInitialAccessArtifact as ApiInitialAccessArtifact +from vulncheck_sdk.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit as ApiInitialAccessGoExploit +from vulncheck_sdk.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag as ApiInitialAccessGoExploitCustomFlag from vulncheck_sdk.models.api_mitre_attack_tech import ApiMitreAttackTech as ApiMitreAttackTech from vulncheck_sdk.models.api_mitre_attack_to_cve import ApiMitreAttackToCVE as ApiMitreAttackToCVE from vulncheck_sdk.models.api_mitre_d3fend_technique import ApiMitreD3fendTechnique as ApiMitreD3fendTechnique @@ -2305,9 +2316,6 @@ from vulncheck_sdk.models.api_related_attack_pattern import ApiRelatedAttackPattern as ApiRelatedAttackPattern from vulncheck_sdk.models.api_ssvc import ApiSSVC as ApiSSVC from vulncheck_sdk.models.api_target_intel import ApiTargetIntel as ApiTargetIntel -from vulncheck_sdk.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary as ApiTargetIntelCVESummary -from vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner as ApiTargetIntelCVESummaryAsnsInner -from vulncheck_sdk.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner as ApiTargetIntelCVESummaryPortsInner from vulncheck_sdk.models.api_temporal_cvssv2 import ApiTemporalCVSSV2 as ApiTemporalCVSSV2 from vulncheck_sdk.models.api_temporal_cvssv3 import ApiTemporalCVSSV3 as ApiTemporalCVSSV3 from vulncheck_sdk.models.api_temporal_metric_v2 import ApiTemporalMetricV2 as ApiTemporalMetricV2 @@ -2358,6 +2366,7 @@ from vulncheck_sdk.models.render_response_with_metadata_array_advisory_amazon_cve_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination as RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anchore_nvd_override_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination as RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_android_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination as RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination as RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_active_mq_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination as RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_archiva_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination as RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination as RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination @@ -2804,7 +2813,6 @@ from vulncheck_sdk.models.render_response_with_metadata_array_api_nvd20_cve_extended_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination as RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_nvd20_cve_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination as RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_oss_package_paginate_pagination import RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination as RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination -from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination as RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination as RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_update_paginate_pagination import RenderResponseWithMetadataArrayApiUpdatePaginatePagination as RenderResponseWithMetadataArrayApiUpdatePaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination import RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination as RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination diff --git a/vulncheck_sdk/aio/__init__.py b/vulncheck_sdk/aio/__init__.py index ce7029ba..1ca37290 100644 --- a/vulncheck_sdk/aio/__init__.py +++ b/vulncheck_sdk/aio/__init__.py @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "0.0.51" +__version__ = "0.0.52" # Define package exports __all__ = [ @@ -84,6 +84,7 @@ "AdvisoryAndroidPackage", "AdvisoryAndroidRange", "AdvisoryAndroidReference", + "AdvisoryAnthropicCVD", "AdvisoryApacheActiveMQ", "AdvisoryApacheArchiva", "AdvisoryApacheArrow", @@ -176,6 +177,8 @@ "AdvisoryCSAFRelationship", "AdvisoryCSAFScore", "AdvisoryCSAFVulnerability", + "AdvisoryCVDSeverityCompare", + "AdvisoryCVDSnapshot", "AdvisoryCVEDetail", "AdvisoryCVEDetailsLink", "AdvisoryCVEIdentityMappings", @@ -810,10 +813,12 @@ "AdvisoryZyxel", "ApiBaseMetricV2", "ApiBaseMetricV3", + "ApiC2Frequency", "ApiCPE", "ApiCPEMatch", "ApiCPEName", "ApiCVE", + "ApiCVEConfirmed", "ApiCVEDataMeta", "ApiCVEDataMetaExtended", "ApiCVEExtended", @@ -844,6 +849,8 @@ "ApiImpactExtended", "ApiInitialAccess", "ApiInitialAccessArtifact", + "ApiInitialAccessGoExploit", + "ApiInitialAccessGoExploitCustomFlag", "ApiMitreAttackTech", "ApiMitreAttackToCVE", "ApiMitreD3fendTechnique", @@ -897,9 +904,6 @@ "ApiRelatedAttackPattern", "ApiSSVC", "ApiTargetIntel", - "ApiTargetIntelCVESummary", - "ApiTargetIntelCVESummaryAsnsInner", - "ApiTargetIntelCVESummaryPortsInner", "ApiTemporalCVSSV2", "ApiTemporalCVSSV3", "ApiTemporalMetricV2", @@ -950,6 +954,7 @@ "RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination", "RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination", + "RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", @@ -1396,7 +1401,6 @@ "RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination", "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", - "RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination", "RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination", "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", "RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination", @@ -1492,6 +1496,7 @@ from vulncheck_sdk.aio.models.advisory_android_package import AdvisoryAndroidPackage as AdvisoryAndroidPackage from vulncheck_sdk.aio.models.advisory_android_range import AdvisoryAndroidRange as AdvisoryAndroidRange from vulncheck_sdk.aio.models.advisory_android_reference import AdvisoryAndroidReference as AdvisoryAndroidReference +from vulncheck_sdk.aio.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD as AdvisoryAnthropicCVD from vulncheck_sdk.aio.models.advisory_apache_active_mq import AdvisoryApacheActiveMQ as AdvisoryApacheActiveMQ from vulncheck_sdk.aio.models.advisory_apache_archiva import AdvisoryApacheArchiva as AdvisoryApacheArchiva from vulncheck_sdk.aio.models.advisory_apache_arrow import AdvisoryApacheArrow as AdvisoryApacheArrow @@ -1584,6 +1589,8 @@ from vulncheck_sdk.aio.models.advisory_csaf_relationship import AdvisoryCSAFRelationship as AdvisoryCSAFRelationship from vulncheck_sdk.aio.models.advisory_csaf_score import AdvisoryCSAFScore as AdvisoryCSAFScore from vulncheck_sdk.aio.models.advisory_csaf_vulnerability import AdvisoryCSAFVulnerability as AdvisoryCSAFVulnerability +from vulncheck_sdk.aio.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare as AdvisoryCVDSeverityCompare +from vulncheck_sdk.aio.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot as AdvisoryCVDSnapshot from vulncheck_sdk.aio.models.advisory_cve_detail import AdvisoryCVEDetail as AdvisoryCVEDetail from vulncheck_sdk.aio.models.advisory_cve_details_link import AdvisoryCVEDetailsLink as AdvisoryCVEDetailsLink from vulncheck_sdk.aio.models.advisory_cve_identity_mappings import AdvisoryCVEIdentityMappings as AdvisoryCVEIdentityMappings @@ -2218,10 +2225,12 @@ from vulncheck_sdk.aio.models.advisory_zyxel import AdvisoryZyxel as AdvisoryZyxel from vulncheck_sdk.aio.models.api_base_metric_v2 import ApiBaseMetricV2 as ApiBaseMetricV2 from vulncheck_sdk.aio.models.api_base_metric_v3 import ApiBaseMetricV3 as ApiBaseMetricV3 +from vulncheck_sdk.aio.models.api_c2_frequency import ApiC2Frequency as ApiC2Frequency from vulncheck_sdk.aio.models.api_cpe import ApiCPE as ApiCPE from vulncheck_sdk.aio.models.api_cpe_match import ApiCPEMatch as ApiCPEMatch from vulncheck_sdk.aio.models.api_cpe_name import ApiCPEName as ApiCPEName from vulncheck_sdk.aio.models.api_cve import ApiCVE as ApiCVE +from vulncheck_sdk.aio.models.api_cve_confirmed import ApiCVEConfirmed as ApiCVEConfirmed from vulncheck_sdk.aio.models.api_cve_data_meta import ApiCVEDataMeta as ApiCVEDataMeta from vulncheck_sdk.aio.models.api_cve_data_meta_extended import ApiCVEDataMetaExtended as ApiCVEDataMetaExtended from vulncheck_sdk.aio.models.api_cve_extended import ApiCVEExtended as ApiCVEExtended @@ -2252,6 +2261,8 @@ from vulncheck_sdk.aio.models.api_impact_extended import ApiImpactExtended as ApiImpactExtended from vulncheck_sdk.aio.models.api_initial_access import ApiInitialAccess as ApiInitialAccess from vulncheck_sdk.aio.models.api_initial_access_artifact import ApiInitialAccessArtifact as ApiInitialAccessArtifact +from vulncheck_sdk.aio.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit as ApiInitialAccessGoExploit +from vulncheck_sdk.aio.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag as ApiInitialAccessGoExploitCustomFlag from vulncheck_sdk.aio.models.api_mitre_attack_tech import ApiMitreAttackTech as ApiMitreAttackTech from vulncheck_sdk.aio.models.api_mitre_attack_to_cve import ApiMitreAttackToCVE as ApiMitreAttackToCVE from vulncheck_sdk.aio.models.api_mitre_d3fend_technique import ApiMitreD3fendTechnique as ApiMitreD3fendTechnique @@ -2305,9 +2316,6 @@ from vulncheck_sdk.aio.models.api_related_attack_pattern import ApiRelatedAttackPattern as ApiRelatedAttackPattern from vulncheck_sdk.aio.models.api_ssvc import ApiSSVC as ApiSSVC from vulncheck_sdk.aio.models.api_target_intel import ApiTargetIntel as ApiTargetIntel -from vulncheck_sdk.aio.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary as ApiTargetIntelCVESummary -from vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner as ApiTargetIntelCVESummaryAsnsInner -from vulncheck_sdk.aio.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner as ApiTargetIntelCVESummaryPortsInner from vulncheck_sdk.aio.models.api_temporal_cvssv2 import ApiTemporalCVSSV2 as ApiTemporalCVSSV2 from vulncheck_sdk.aio.models.api_temporal_cvssv3 import ApiTemporalCVSSV3 as ApiTemporalCVSSV3 from vulncheck_sdk.aio.models.api_temporal_metric_v2 import ApiTemporalMetricV2 as ApiTemporalMetricV2 @@ -2358,6 +2366,7 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_amazon_cve_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination as RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_anchore_nvd_override_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination as RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_android_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination as RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination +from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination as RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_active_mq_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination as RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_archiva_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination as RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination as RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination @@ -2804,7 +2813,6 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_nvd20_cve_extended_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination as RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_nvd20_cve_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination as RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_oss_package_paginate_pagination import RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination as RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination -from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination as RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_target_intel_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination as RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_update_paginate_pagination import RenderResponseWithMetadataArrayApiUpdatePaginatePagination as RenderResponseWithMetadataArrayApiUpdatePaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination import RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination as RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination diff --git a/vulncheck_sdk/aio/api/indices_api.py b/vulncheck_sdk/aio/api/indices_api.py index 1087f534..96a65ee9 100644 --- a/vulncheck_sdk/aio/api/indices_api.py +++ b/vulncheck_sdk/aio/api/indices_api.py @@ -43,6 +43,7 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_amazon_cve_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_anchore_nvd_override_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_android_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination +from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_active_mq_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_archiva_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination @@ -489,7 +490,6 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_nvd20_cve_extended_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_nvd20_cve_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_oss_package_paginate_pagination import RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination -from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_target_intel_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_update_paginate_pagination import RenderResponseWithMetadataArrayApiUpdatePaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination import RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination @@ -15101,7 +15101,7 @@ def _index_android_get_serialize( @validate_call - async def index_apache_activemq_get( + async def index_anthropic_cvd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15139,10 +15139,10 @@ async def index_apache_activemq_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination: - """Return vulnerability data stored in index \"apache-activemq\" + ) -> RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination: + """Return vulnerability data stored in index \"anthropic-cvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the anthropic-cvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Anthropic Red CVD ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/anthropic-cvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/anthropic-cvd?cursor=` :param page: set the page number of the response :type page: int @@ -15214,7 +15214,7 @@ async def index_apache_activemq_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_activemq_get_serialize( + _param = self._index_anthropic_cvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -15246,7 +15246,7 @@ async def index_apache_activemq_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination", '404': "str", '500': "str", } @@ -15262,7 +15262,7 @@ async def index_apache_activemq_get( @validate_call - async def index_apache_activemq_get_with_http_info( + async def index_anthropic_cvd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15300,10 +15300,10 @@ async def index_apache_activemq_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination]: - """Return vulnerability data stored in index \"apache-activemq\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination]: + """Return vulnerability data stored in index \"anthropic-cvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the anthropic-cvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Anthropic Red CVD ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/anthropic-cvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/anthropic-cvd?cursor=` :param page: set the page number of the response :type page: int @@ -15375,7 +15375,7 @@ async def index_apache_activemq_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_activemq_get_serialize( + _param = self._index_anthropic_cvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -15407,7 +15407,7 @@ async def index_apache_activemq_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination", '404': "str", '500': "str", } @@ -15423,7 +15423,7 @@ async def index_apache_activemq_get_with_http_info( @validate_call - async def index_apache_activemq_get_without_preload_content( + async def index_anthropic_cvd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15462,9 +15462,9 @@ async def index_apache_activemq_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-activemq\" + """Return vulnerability data stored in index \"anthropic-cvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the anthropic-cvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Anthropic Red CVD ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/anthropic-cvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/anthropic-cvd?cursor=` :param page: set the page number of the response :type page: int @@ -15536,7 +15536,7 @@ async def index_apache_activemq_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_activemq_get_serialize( + _param = self._index_anthropic_cvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -15568,7 +15568,7 @@ async def index_apache_activemq_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination", '404': "str", '500': "str", } @@ -15579,7 +15579,7 @@ async def index_apache_activemq_get_without_preload_content( return response_data.response - def _index_apache_activemq_get_serialize( + def _index_anthropic_cvd_get_serialize( self, page, limit, @@ -15747,7 +15747,7 @@ def _index_apache_activemq_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-activemq', + resource_path='/v3/index/anthropic-cvd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -15764,7 +15764,7 @@ def _index_apache_activemq_get_serialize( @validate_call - async def index_apache_archiva_get( + async def index_apache_activemq_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15802,10 +15802,10 @@ async def index_apache_archiva_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination: - """Return vulnerability data stored in index \"apache-archiva\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination: + """Return vulnerability data stored in index \"apache-activemq\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` :param page: set the page number of the response :type page: int @@ -15877,7 +15877,7 @@ async def index_apache_archiva_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_archiva_get_serialize( + _param = self._index_apache_activemq_get_serialize( page=page, limit=limit, cursor=cursor, @@ -15909,7 +15909,7 @@ async def index_apache_archiva_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", '404': "str", '500': "str", } @@ -15925,7 +15925,7 @@ async def index_apache_archiva_get( @validate_call - async def index_apache_archiva_get_with_http_info( + async def index_apache_activemq_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15963,10 +15963,10 @@ async def index_apache_archiva_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination]: - """Return vulnerability data stored in index \"apache-archiva\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination]: + """Return vulnerability data stored in index \"apache-activemq\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` :param page: set the page number of the response :type page: int @@ -16038,7 +16038,7 @@ async def index_apache_archiva_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_archiva_get_serialize( + _param = self._index_apache_activemq_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16070,7 +16070,7 @@ async def index_apache_archiva_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", '404': "str", '500': "str", } @@ -16086,7 +16086,7 @@ async def index_apache_archiva_get_with_http_info( @validate_call - async def index_apache_archiva_get_without_preload_content( + async def index_apache_activemq_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -16125,9 +16125,9 @@ async def index_apache_archiva_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-archiva\" + """Return vulnerability data stored in index \"apache-activemq\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` :param page: set the page number of the response :type page: int @@ -16199,7 +16199,7 @@ async def index_apache_archiva_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_archiva_get_serialize( + _param = self._index_apache_activemq_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16231,7 +16231,7 @@ async def index_apache_archiva_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", '404': "str", '500': "str", } @@ -16242,7 +16242,7 @@ async def index_apache_archiva_get_without_preload_content( return response_data.response - def _index_apache_archiva_get_serialize( + def _index_apache_activemq_get_serialize( self, page, limit, @@ -16410,7 +16410,7 @@ def _index_apache_archiva_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-archiva', + resource_path='/v3/index/apache-activemq', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -16427,7 +16427,7 @@ def _index_apache_archiva_get_serialize( @validate_call - async def index_apache_arrow_get( + async def index_apache_archiva_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -16465,10 +16465,10 @@ async def index_apache_arrow_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination: - """Return vulnerability data stored in index \"apache-arrow\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination: + """Return vulnerability data stored in index \"apache-archiva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` :param page: set the page number of the response :type page: int @@ -16540,7 +16540,7 @@ async def index_apache_arrow_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_arrow_get_serialize( + _param = self._index_apache_archiva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16572,7 +16572,7 @@ async def index_apache_arrow_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", '404': "str", '500': "str", } @@ -16588,7 +16588,7 @@ async def index_apache_arrow_get( @validate_call - async def index_apache_arrow_get_with_http_info( + async def index_apache_archiva_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -16626,10 +16626,10 @@ async def index_apache_arrow_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination]: - """Return vulnerability data stored in index \"apache-arrow\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination]: + """Return vulnerability data stored in index \"apache-archiva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` :param page: set the page number of the response :type page: int @@ -16701,7 +16701,7 @@ async def index_apache_arrow_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_arrow_get_serialize( + _param = self._index_apache_archiva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16733,7 +16733,7 @@ async def index_apache_arrow_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", '404': "str", '500': "str", } @@ -16749,7 +16749,7 @@ async def index_apache_arrow_get_with_http_info( @validate_call - async def index_apache_arrow_get_without_preload_content( + async def index_apache_archiva_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -16788,9 +16788,9 @@ async def index_apache_arrow_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-arrow\" + """Return vulnerability data stored in index \"apache-archiva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` :param page: set the page number of the response :type page: int @@ -16862,7 +16862,7 @@ async def index_apache_arrow_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_arrow_get_serialize( + _param = self._index_apache_archiva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16894,7 +16894,7 @@ async def index_apache_arrow_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", '404': "str", '500': "str", } @@ -16905,7 +16905,7 @@ async def index_apache_arrow_get_without_preload_content( return response_data.response - def _index_apache_arrow_get_serialize( + def _index_apache_archiva_get_serialize( self, page, limit, @@ -17073,7 +17073,7 @@ def _index_apache_arrow_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-arrow', + resource_path='/v3/index/apache-archiva', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -17090,7 +17090,7 @@ def _index_apache_arrow_get_serialize( @validate_call - async def index_apache_camel_get( + async def index_apache_arrow_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17128,10 +17128,10 @@ async def index_apache_camel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination: - """Return vulnerability data stored in index \"apache-camel\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination: + """Return vulnerability data stored in index \"apache-arrow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` :param page: set the page number of the response :type page: int @@ -17203,7 +17203,7 @@ async def index_apache_camel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_camel_get_serialize( + _param = self._index_apache_arrow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -17235,7 +17235,7 @@ async def index_apache_camel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", '404': "str", '500': "str", } @@ -17251,7 +17251,7 @@ async def index_apache_camel_get( @validate_call - async def index_apache_camel_get_with_http_info( + async def index_apache_arrow_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17289,10 +17289,10 @@ async def index_apache_camel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination]: - """Return vulnerability data stored in index \"apache-camel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination]: + """Return vulnerability data stored in index \"apache-arrow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` :param page: set the page number of the response :type page: int @@ -17364,7 +17364,7 @@ async def index_apache_camel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_camel_get_serialize( + _param = self._index_apache_arrow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -17396,7 +17396,7 @@ async def index_apache_camel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", '404': "str", '500': "str", } @@ -17412,7 +17412,7 @@ async def index_apache_camel_get_with_http_info( @validate_call - async def index_apache_camel_get_without_preload_content( + async def index_apache_arrow_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17451,9 +17451,9 @@ async def index_apache_camel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-camel\" + """Return vulnerability data stored in index \"apache-arrow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` :param page: set the page number of the response :type page: int @@ -17525,7 +17525,7 @@ async def index_apache_camel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_camel_get_serialize( + _param = self._index_apache_arrow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -17557,7 +17557,7 @@ async def index_apache_camel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", '404': "str", '500': "str", } @@ -17568,7 +17568,7 @@ async def index_apache_camel_get_without_preload_content( return response_data.response - def _index_apache_camel_get_serialize( + def _index_apache_arrow_get_serialize( self, page, limit, @@ -17736,7 +17736,7 @@ def _index_apache_camel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-camel', + resource_path='/v3/index/apache-arrow', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -17753,7 +17753,7 @@ def _index_apache_camel_get_serialize( @validate_call - async def index_apache_commons_get( + async def index_apache_camel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17791,10 +17791,10 @@ async def index_apache_commons_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination: - """Return vulnerability data stored in index \"apache-commons\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination: + """Return vulnerability data stored in index \"apache-camel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` :param page: set the page number of the response :type page: int @@ -17866,7 +17866,7 @@ async def index_apache_commons_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_commons_get_serialize( + _param = self._index_apache_camel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -17898,7 +17898,7 @@ async def index_apache_commons_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", '404': "str", '500': "str", } @@ -17914,7 +17914,7 @@ async def index_apache_commons_get( @validate_call - async def index_apache_commons_get_with_http_info( + async def index_apache_camel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17952,10 +17952,10 @@ async def index_apache_commons_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination]: - """Return vulnerability data stored in index \"apache-commons\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination]: + """Return vulnerability data stored in index \"apache-camel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` :param page: set the page number of the response :type page: int @@ -18027,7 +18027,7 @@ async def index_apache_commons_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_commons_get_serialize( + _param = self._index_apache_camel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18059,7 +18059,7 @@ async def index_apache_commons_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", '404': "str", '500': "str", } @@ -18075,7 +18075,7 @@ async def index_apache_commons_get_with_http_info( @validate_call - async def index_apache_commons_get_without_preload_content( + async def index_apache_camel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -18114,9 +18114,9 @@ async def index_apache_commons_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-commons\" + """Return vulnerability data stored in index \"apache-camel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` :param page: set the page number of the response :type page: int @@ -18188,7 +18188,7 @@ async def index_apache_commons_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_commons_get_serialize( + _param = self._index_apache_camel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18220,7 +18220,7 @@ async def index_apache_commons_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", '404': "str", '500': "str", } @@ -18231,7 +18231,7 @@ async def index_apache_commons_get_without_preload_content( return response_data.response - def _index_apache_commons_get_serialize( + def _index_apache_camel_get_serialize( self, page, limit, @@ -18399,7 +18399,7 @@ def _index_apache_commons_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-commons', + resource_path='/v3/index/apache-camel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -18416,7 +18416,7 @@ def _index_apache_commons_get_serialize( @validate_call - async def index_apache_couchdb_get( + async def index_apache_commons_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -18454,10 +18454,10 @@ async def index_apache_couchdb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination: - """Return vulnerability data stored in index \"apache-couchdb\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination: + """Return vulnerability data stored in index \"apache-commons\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` :param page: set the page number of the response :type page: int @@ -18529,7 +18529,7 @@ async def index_apache_couchdb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_couchdb_get_serialize( + _param = self._index_apache_commons_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18561,7 +18561,7 @@ async def index_apache_couchdb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", '404': "str", '500': "str", } @@ -18577,7 +18577,7 @@ async def index_apache_couchdb_get( @validate_call - async def index_apache_couchdb_get_with_http_info( + async def index_apache_commons_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -18615,10 +18615,10 @@ async def index_apache_couchdb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination]: - """Return vulnerability data stored in index \"apache-couchdb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination]: + """Return vulnerability data stored in index \"apache-commons\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` :param page: set the page number of the response :type page: int @@ -18690,7 +18690,7 @@ async def index_apache_couchdb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_couchdb_get_serialize( + _param = self._index_apache_commons_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18722,7 +18722,7 @@ async def index_apache_couchdb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", '404': "str", '500': "str", } @@ -18738,7 +18738,7 @@ async def index_apache_couchdb_get_with_http_info( @validate_call - async def index_apache_couchdb_get_without_preload_content( + async def index_apache_commons_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -18777,9 +18777,9 @@ async def index_apache_couchdb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-couchdb\" + """Return vulnerability data stored in index \"apache-commons\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` :param page: set the page number of the response :type page: int @@ -18851,7 +18851,7 @@ async def index_apache_couchdb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_couchdb_get_serialize( + _param = self._index_apache_commons_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18883,7 +18883,7 @@ async def index_apache_couchdb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", '404': "str", '500': "str", } @@ -18894,7 +18894,7 @@ async def index_apache_couchdb_get_without_preload_content( return response_data.response - def _index_apache_couchdb_get_serialize( + def _index_apache_commons_get_serialize( self, page, limit, @@ -19062,7 +19062,7 @@ def _index_apache_couchdb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-couchdb', + resource_path='/v3/index/apache-commons', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -19079,7 +19079,7 @@ def _index_apache_couchdb_get_serialize( @validate_call - async def index_apache_flink_get( + async def index_apache_couchdb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19117,10 +19117,10 @@ async def index_apache_flink_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination: - """Return vulnerability data stored in index \"apache-flink\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination: + """Return vulnerability data stored in index \"apache-couchdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` :param page: set the page number of the response :type page: int @@ -19192,7 +19192,7 @@ async def index_apache_flink_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_flink_get_serialize( + _param = self._index_apache_couchdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -19224,7 +19224,7 @@ async def index_apache_flink_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", '404': "str", '500': "str", } @@ -19240,7 +19240,7 @@ async def index_apache_flink_get( @validate_call - async def index_apache_flink_get_with_http_info( + async def index_apache_couchdb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19278,10 +19278,10 @@ async def index_apache_flink_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination]: - """Return vulnerability data stored in index \"apache-flink\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination]: + """Return vulnerability data stored in index \"apache-couchdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` :param page: set the page number of the response :type page: int @@ -19353,7 +19353,7 @@ async def index_apache_flink_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_flink_get_serialize( + _param = self._index_apache_couchdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -19385,7 +19385,7 @@ async def index_apache_flink_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", '404': "str", '500': "str", } @@ -19401,7 +19401,7 @@ async def index_apache_flink_get_with_http_info( @validate_call - async def index_apache_flink_get_without_preload_content( + async def index_apache_couchdb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19440,9 +19440,9 @@ async def index_apache_flink_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-flink\" + """Return vulnerability data stored in index \"apache-couchdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` :param page: set the page number of the response :type page: int @@ -19514,7 +19514,7 @@ async def index_apache_flink_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_flink_get_serialize( + _param = self._index_apache_couchdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -19546,7 +19546,7 @@ async def index_apache_flink_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", '404': "str", '500': "str", } @@ -19557,7 +19557,7 @@ async def index_apache_flink_get_without_preload_content( return response_data.response - def _index_apache_flink_get_serialize( + def _index_apache_couchdb_get_serialize( self, page, limit, @@ -19725,7 +19725,7 @@ def _index_apache_flink_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-flink', + resource_path='/v3/index/apache-couchdb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -19742,7 +19742,7 @@ def _index_apache_flink_get_serialize( @validate_call - async def index_apache_guacamole_get( + async def index_apache_flink_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19780,10 +19780,10 @@ async def index_apache_guacamole_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination: - """Return vulnerability data stored in index \"apache-guacamole\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination: + """Return vulnerability data stored in index \"apache-flink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` :param page: set the page number of the response :type page: int @@ -19855,7 +19855,7 @@ async def index_apache_guacamole_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_guacamole_get_serialize( + _param = self._index_apache_flink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -19887,7 +19887,7 @@ async def index_apache_guacamole_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", '404': "str", '500': "str", } @@ -19903,7 +19903,7 @@ async def index_apache_guacamole_get( @validate_call - async def index_apache_guacamole_get_with_http_info( + async def index_apache_flink_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19941,10 +19941,10 @@ async def index_apache_guacamole_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination]: - """Return vulnerability data stored in index \"apache-guacamole\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination]: + """Return vulnerability data stored in index \"apache-flink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` :param page: set the page number of the response :type page: int @@ -20016,7 +20016,7 @@ async def index_apache_guacamole_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_guacamole_get_serialize( + _param = self._index_apache_flink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20048,7 +20048,7 @@ async def index_apache_guacamole_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", '404': "str", '500': "str", } @@ -20064,7 +20064,7 @@ async def index_apache_guacamole_get_with_http_info( @validate_call - async def index_apache_guacamole_get_without_preload_content( + async def index_apache_flink_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -20103,9 +20103,9 @@ async def index_apache_guacamole_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-guacamole\" + """Return vulnerability data stored in index \"apache-flink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` :param page: set the page number of the response :type page: int @@ -20177,7 +20177,7 @@ async def index_apache_guacamole_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_guacamole_get_serialize( + _param = self._index_apache_flink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20209,7 +20209,7 @@ async def index_apache_guacamole_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", '404': "str", '500': "str", } @@ -20220,7 +20220,7 @@ async def index_apache_guacamole_get_without_preload_content( return response_data.response - def _index_apache_guacamole_get_serialize( + def _index_apache_flink_get_serialize( self, page, limit, @@ -20388,7 +20388,7 @@ def _index_apache_guacamole_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-guacamole', + resource_path='/v3/index/apache-flink', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -20405,7 +20405,7 @@ def _index_apache_guacamole_get_serialize( @validate_call - async def index_apache_hadoop_get( + async def index_apache_guacamole_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -20443,10 +20443,10 @@ async def index_apache_hadoop_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination: - """Return vulnerability data stored in index \"apache-hadoop\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination: + """Return vulnerability data stored in index \"apache-guacamole\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` :param page: set the page number of the response :type page: int @@ -20518,7 +20518,7 @@ async def index_apache_hadoop_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_hadoop_get_serialize( + _param = self._index_apache_guacamole_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20550,7 +20550,7 @@ async def index_apache_hadoop_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", '404': "str", '500': "str", } @@ -20566,7 +20566,7 @@ async def index_apache_hadoop_get( @validate_call - async def index_apache_hadoop_get_with_http_info( + async def index_apache_guacamole_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -20604,10 +20604,10 @@ async def index_apache_hadoop_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination]: - """Return vulnerability data stored in index \"apache-hadoop\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination]: + """Return vulnerability data stored in index \"apache-guacamole\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` :param page: set the page number of the response :type page: int @@ -20679,7 +20679,7 @@ async def index_apache_hadoop_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_hadoop_get_serialize( + _param = self._index_apache_guacamole_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20711,7 +20711,7 @@ async def index_apache_hadoop_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", '404': "str", '500': "str", } @@ -20727,7 +20727,7 @@ async def index_apache_hadoop_get_with_http_info( @validate_call - async def index_apache_hadoop_get_without_preload_content( + async def index_apache_guacamole_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -20766,9 +20766,9 @@ async def index_apache_hadoop_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-hadoop\" + """Return vulnerability data stored in index \"apache-guacamole\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` :param page: set the page number of the response :type page: int @@ -20840,7 +20840,7 @@ async def index_apache_hadoop_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_hadoop_get_serialize( + _param = self._index_apache_guacamole_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20872,7 +20872,7 @@ async def index_apache_hadoop_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", '404': "str", '500': "str", } @@ -20883,7 +20883,7 @@ async def index_apache_hadoop_get_without_preload_content( return response_data.response - def _index_apache_hadoop_get_serialize( + def _index_apache_guacamole_get_serialize( self, page, limit, @@ -21051,7 +21051,7 @@ def _index_apache_hadoop_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-hadoop', + resource_path='/v3/index/apache-guacamole', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -21068,7 +21068,7 @@ def _index_apache_hadoop_get_serialize( @validate_call - async def index_apache_http_get( + async def index_apache_hadoop_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21106,10 +21106,10 @@ async def index_apache_http_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination: - """Return vulnerability data stored in index \"apache-http\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination: + """Return vulnerability data stored in index \"apache-hadoop\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` :param page: set the page number of the response :type page: int @@ -21181,7 +21181,7 @@ async def index_apache_http_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_http_get_serialize( + _param = self._index_apache_hadoop_get_serialize( page=page, limit=limit, cursor=cursor, @@ -21213,7 +21213,7 @@ async def index_apache_http_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", '404': "str", '500': "str", } @@ -21229,7 +21229,7 @@ async def index_apache_http_get( @validate_call - async def index_apache_http_get_with_http_info( + async def index_apache_hadoop_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21267,10 +21267,10 @@ async def index_apache_http_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination]: - """Return vulnerability data stored in index \"apache-http\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination]: + """Return vulnerability data stored in index \"apache-hadoop\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` :param page: set the page number of the response :type page: int @@ -21342,7 +21342,7 @@ async def index_apache_http_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_http_get_serialize( + _param = self._index_apache_hadoop_get_serialize( page=page, limit=limit, cursor=cursor, @@ -21374,7 +21374,7 @@ async def index_apache_http_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", '404': "str", '500': "str", } @@ -21390,7 +21390,7 @@ async def index_apache_http_get_with_http_info( @validate_call - async def index_apache_http_get_without_preload_content( + async def index_apache_hadoop_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21429,9 +21429,9 @@ async def index_apache_http_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-http\" + """Return vulnerability data stored in index \"apache-hadoop\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` :param page: set the page number of the response :type page: int @@ -21503,7 +21503,7 @@ async def index_apache_http_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_http_get_serialize( + _param = self._index_apache_hadoop_get_serialize( page=page, limit=limit, cursor=cursor, @@ -21535,7 +21535,7 @@ async def index_apache_http_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", '404': "str", '500': "str", } @@ -21546,7 +21546,7 @@ async def index_apache_http_get_without_preload_content( return response_data.response - def _index_apache_http_get_serialize( + def _index_apache_hadoop_get_serialize( self, page, limit, @@ -21714,7 +21714,7 @@ def _index_apache_http_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-http', + resource_path='/v3/index/apache-hadoop', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -21731,7 +21731,7 @@ def _index_apache_http_get_serialize( @validate_call - async def index_apache_jspwiki_get( + async def index_apache_http_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21769,10 +21769,10 @@ async def index_apache_jspwiki_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination: - """Return vulnerability data stored in index \"apache-jspwiki\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination: + """Return vulnerability data stored in index \"apache-http\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` :param page: set the page number of the response :type page: int @@ -21844,7 +21844,7 @@ async def index_apache_jspwiki_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_jspwiki_get_serialize( + _param = self._index_apache_http_get_serialize( page=page, limit=limit, cursor=cursor, @@ -21876,7 +21876,7 @@ async def index_apache_jspwiki_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", '404': "str", '500': "str", } @@ -21892,7 +21892,7 @@ async def index_apache_jspwiki_get( @validate_call - async def index_apache_jspwiki_get_with_http_info( + async def index_apache_http_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21930,10 +21930,10 @@ async def index_apache_jspwiki_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination]: - """Return vulnerability data stored in index \"apache-jspwiki\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination]: + """Return vulnerability data stored in index \"apache-http\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` :param page: set the page number of the response :type page: int @@ -22005,7 +22005,7 @@ async def index_apache_jspwiki_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_jspwiki_get_serialize( + _param = self._index_apache_http_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22037,7 +22037,7 @@ async def index_apache_jspwiki_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", '404': "str", '500': "str", } @@ -22053,7 +22053,7 @@ async def index_apache_jspwiki_get_with_http_info( @validate_call - async def index_apache_jspwiki_get_without_preload_content( + async def index_apache_http_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -22092,9 +22092,9 @@ async def index_apache_jspwiki_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-jspwiki\" + """Return vulnerability data stored in index \"apache-http\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` :param page: set the page number of the response :type page: int @@ -22166,7 +22166,7 @@ async def index_apache_jspwiki_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_jspwiki_get_serialize( + _param = self._index_apache_http_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22198,7 +22198,7 @@ async def index_apache_jspwiki_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", '404': "str", '500': "str", } @@ -22209,7 +22209,7 @@ async def index_apache_jspwiki_get_without_preload_content( return response_data.response - def _index_apache_jspwiki_get_serialize( + def _index_apache_http_get_serialize( self, page, limit, @@ -22377,7 +22377,7 @@ def _index_apache_jspwiki_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-jspwiki', + resource_path='/v3/index/apache-http', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -22394,7 +22394,7 @@ def _index_apache_jspwiki_get_serialize( @validate_call - async def index_apache_kafka_get( + async def index_apache_jspwiki_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -22432,10 +22432,10 @@ async def index_apache_kafka_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination: - """Return vulnerability data stored in index \"apache-kafka\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination: + """Return vulnerability data stored in index \"apache-jspwiki\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` :param page: set the page number of the response :type page: int @@ -22507,7 +22507,7 @@ async def index_apache_kafka_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_kafka_get_serialize( + _param = self._index_apache_jspwiki_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22539,7 +22539,7 @@ async def index_apache_kafka_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", '404': "str", '500': "str", } @@ -22555,7 +22555,7 @@ async def index_apache_kafka_get( @validate_call - async def index_apache_kafka_get_with_http_info( + async def index_apache_jspwiki_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -22593,10 +22593,10 @@ async def index_apache_kafka_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination]: - """Return vulnerability data stored in index \"apache-kafka\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination]: + """Return vulnerability data stored in index \"apache-jspwiki\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` :param page: set the page number of the response :type page: int @@ -22668,7 +22668,7 @@ async def index_apache_kafka_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_kafka_get_serialize( + _param = self._index_apache_jspwiki_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22700,7 +22700,7 @@ async def index_apache_kafka_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", '404': "str", '500': "str", } @@ -22716,7 +22716,7 @@ async def index_apache_kafka_get_with_http_info( @validate_call - async def index_apache_kafka_get_without_preload_content( + async def index_apache_jspwiki_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -22755,9 +22755,9 @@ async def index_apache_kafka_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-kafka\" + """Return vulnerability data stored in index \"apache-jspwiki\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` :param page: set the page number of the response :type page: int @@ -22829,7 +22829,7 @@ async def index_apache_kafka_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_kafka_get_serialize( + _param = self._index_apache_jspwiki_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22861,7 +22861,7 @@ async def index_apache_kafka_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", '404': "str", '500': "str", } @@ -22872,7 +22872,7 @@ async def index_apache_kafka_get_without_preload_content( return response_data.response - def _index_apache_kafka_get_serialize( + def _index_apache_jspwiki_get_serialize( self, page, limit, @@ -23040,7 +23040,7 @@ def _index_apache_kafka_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-kafka', + resource_path='/v3/index/apache-jspwiki', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -23057,7 +23057,7 @@ def _index_apache_kafka_get_serialize( @validate_call - async def index_apache_loggingservices_get( + async def index_apache_kafka_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23095,10 +23095,10 @@ async def index_apache_loggingservices_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination: - """Return vulnerability data stored in index \"apache-loggingservices\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination: + """Return vulnerability data stored in index \"apache-kafka\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` :param page: set the page number of the response :type page: int @@ -23170,7 +23170,7 @@ async def index_apache_loggingservices_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_loggingservices_get_serialize( + _param = self._index_apache_kafka_get_serialize( page=page, limit=limit, cursor=cursor, @@ -23202,7 +23202,7 @@ async def index_apache_loggingservices_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", '404': "str", '500': "str", } @@ -23218,7 +23218,7 @@ async def index_apache_loggingservices_get( @validate_call - async def index_apache_loggingservices_get_with_http_info( + async def index_apache_kafka_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23256,10 +23256,10 @@ async def index_apache_loggingservices_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination]: - """Return vulnerability data stored in index \"apache-loggingservices\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination]: + """Return vulnerability data stored in index \"apache-kafka\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` :param page: set the page number of the response :type page: int @@ -23331,7 +23331,7 @@ async def index_apache_loggingservices_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_loggingservices_get_serialize( + _param = self._index_apache_kafka_get_serialize( page=page, limit=limit, cursor=cursor, @@ -23363,7 +23363,7 @@ async def index_apache_loggingservices_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", '404': "str", '500': "str", } @@ -23379,7 +23379,7 @@ async def index_apache_loggingservices_get_with_http_info( @validate_call - async def index_apache_loggingservices_get_without_preload_content( + async def index_apache_kafka_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23418,9 +23418,9 @@ async def index_apache_loggingservices_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-loggingservices\" + """Return vulnerability data stored in index \"apache-kafka\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` :param page: set the page number of the response :type page: int @@ -23492,7 +23492,7 @@ async def index_apache_loggingservices_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_loggingservices_get_serialize( + _param = self._index_apache_kafka_get_serialize( page=page, limit=limit, cursor=cursor, @@ -23524,7 +23524,7 @@ async def index_apache_loggingservices_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", '404': "str", '500': "str", } @@ -23535,7 +23535,7 @@ async def index_apache_loggingservices_get_without_preload_content( return response_data.response - def _index_apache_loggingservices_get_serialize( + def _index_apache_kafka_get_serialize( self, page, limit, @@ -23703,7 +23703,7 @@ def _index_apache_loggingservices_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-loggingservices', + resource_path='/v3/index/apache-kafka', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -23720,7 +23720,7 @@ def _index_apache_loggingservices_get_serialize( @validate_call - async def index_apache_nifi_get( + async def index_apache_loggingservices_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23758,10 +23758,10 @@ async def index_apache_nifi_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination: - """Return vulnerability data stored in index \"apache-nifi\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination: + """Return vulnerability data stored in index \"apache-loggingservices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` :param page: set the page number of the response :type page: int @@ -23833,7 +23833,7 @@ async def index_apache_nifi_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_nifi_get_serialize( + _param = self._index_apache_loggingservices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -23865,7 +23865,7 @@ async def index_apache_nifi_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", '404': "str", '500': "str", } @@ -23881,7 +23881,7 @@ async def index_apache_nifi_get( @validate_call - async def index_apache_nifi_get_with_http_info( + async def index_apache_loggingservices_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23919,10 +23919,10 @@ async def index_apache_nifi_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination]: - """Return vulnerability data stored in index \"apache-nifi\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination]: + """Return vulnerability data stored in index \"apache-loggingservices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` :param page: set the page number of the response :type page: int @@ -23994,7 +23994,7 @@ async def index_apache_nifi_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_nifi_get_serialize( + _param = self._index_apache_loggingservices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24026,7 +24026,7 @@ async def index_apache_nifi_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", '404': "str", '500': "str", } @@ -24042,7 +24042,7 @@ async def index_apache_nifi_get_with_http_info( @validate_call - async def index_apache_nifi_get_without_preload_content( + async def index_apache_loggingservices_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -24081,9 +24081,9 @@ async def index_apache_nifi_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-nifi\" + """Return vulnerability data stored in index \"apache-loggingservices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` :param page: set the page number of the response :type page: int @@ -24155,7 +24155,7 @@ async def index_apache_nifi_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_nifi_get_serialize( + _param = self._index_apache_loggingservices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24187,7 +24187,7 @@ async def index_apache_nifi_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", '404': "str", '500': "str", } @@ -24198,7 +24198,7 @@ async def index_apache_nifi_get_without_preload_content( return response_data.response - def _index_apache_nifi_get_serialize( + def _index_apache_loggingservices_get_serialize( self, page, limit, @@ -24366,7 +24366,7 @@ def _index_apache_nifi_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-nifi', + resource_path='/v3/index/apache-loggingservices', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -24383,7 +24383,7 @@ def _index_apache_nifi_get_serialize( @validate_call - async def index_apache_ofbiz_get( + async def index_apache_nifi_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -24421,10 +24421,10 @@ async def index_apache_ofbiz_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination: - """Return vulnerability data stored in index \"apache-ofbiz\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination: + """Return vulnerability data stored in index \"apache-nifi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` :param page: set the page number of the response :type page: int @@ -24496,7 +24496,7 @@ async def index_apache_ofbiz_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_ofbiz_get_serialize( + _param = self._index_apache_nifi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24528,7 +24528,7 @@ async def index_apache_ofbiz_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", '404': "str", '500': "str", } @@ -24544,7 +24544,7 @@ async def index_apache_ofbiz_get( @validate_call - async def index_apache_ofbiz_get_with_http_info( + async def index_apache_nifi_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -24582,10 +24582,10 @@ async def index_apache_ofbiz_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination]: - """Return vulnerability data stored in index \"apache-ofbiz\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination]: + """Return vulnerability data stored in index \"apache-nifi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` :param page: set the page number of the response :type page: int @@ -24657,7 +24657,7 @@ async def index_apache_ofbiz_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_ofbiz_get_serialize( + _param = self._index_apache_nifi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24689,7 +24689,7 @@ async def index_apache_ofbiz_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", '404': "str", '500': "str", } @@ -24705,7 +24705,7 @@ async def index_apache_ofbiz_get_with_http_info( @validate_call - async def index_apache_ofbiz_get_without_preload_content( + async def index_apache_nifi_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -24744,9 +24744,9 @@ async def index_apache_ofbiz_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-ofbiz\" + """Return vulnerability data stored in index \"apache-nifi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` :param page: set the page number of the response :type page: int @@ -24818,7 +24818,7 @@ async def index_apache_ofbiz_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_ofbiz_get_serialize( + _param = self._index_apache_nifi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24850,7 +24850,7 @@ async def index_apache_ofbiz_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", '404': "str", '500': "str", } @@ -24861,7 +24861,7 @@ async def index_apache_ofbiz_get_without_preload_content( return response_data.response - def _index_apache_ofbiz_get_serialize( + def _index_apache_nifi_get_serialize( self, page, limit, @@ -25029,7 +25029,7 @@ def _index_apache_ofbiz_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-ofbiz', + resource_path='/v3/index/apache-nifi', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -25046,7 +25046,7 @@ def _index_apache_ofbiz_get_serialize( @validate_call - async def index_apache_openmeetings_get( + async def index_apache_ofbiz_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25084,10 +25084,10 @@ async def index_apache_openmeetings_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination: - """Return vulnerability data stored in index \"apache-openmeetings\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination: + """Return vulnerability data stored in index \"apache-ofbiz\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` :param page: set the page number of the response :type page: int @@ -25159,7 +25159,7 @@ async def index_apache_openmeetings_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openmeetings_get_serialize( + _param = self._index_apache_ofbiz_get_serialize( page=page, limit=limit, cursor=cursor, @@ -25191,7 +25191,7 @@ async def index_apache_openmeetings_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", '404': "str", '500': "str", } @@ -25207,7 +25207,7 @@ async def index_apache_openmeetings_get( @validate_call - async def index_apache_openmeetings_get_with_http_info( + async def index_apache_ofbiz_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25245,10 +25245,10 @@ async def index_apache_openmeetings_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination]: - """Return vulnerability data stored in index \"apache-openmeetings\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination]: + """Return vulnerability data stored in index \"apache-ofbiz\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` :param page: set the page number of the response :type page: int @@ -25320,7 +25320,7 @@ async def index_apache_openmeetings_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openmeetings_get_serialize( + _param = self._index_apache_ofbiz_get_serialize( page=page, limit=limit, cursor=cursor, @@ -25352,7 +25352,7 @@ async def index_apache_openmeetings_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", '404': "str", '500': "str", } @@ -25368,7 +25368,7 @@ async def index_apache_openmeetings_get_with_http_info( @validate_call - async def index_apache_openmeetings_get_without_preload_content( + async def index_apache_ofbiz_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25407,9 +25407,9 @@ async def index_apache_openmeetings_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-openmeetings\" + """Return vulnerability data stored in index \"apache-ofbiz\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` :param page: set the page number of the response :type page: int @@ -25481,7 +25481,7 @@ async def index_apache_openmeetings_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openmeetings_get_serialize( + _param = self._index_apache_ofbiz_get_serialize( page=page, limit=limit, cursor=cursor, @@ -25513,7 +25513,7 @@ async def index_apache_openmeetings_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", '404': "str", '500': "str", } @@ -25524,7 +25524,7 @@ async def index_apache_openmeetings_get_without_preload_content( return response_data.response - def _index_apache_openmeetings_get_serialize( + def _index_apache_ofbiz_get_serialize( self, page, limit, @@ -25692,7 +25692,7 @@ def _index_apache_openmeetings_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-openmeetings', + resource_path='/v3/index/apache-ofbiz', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -25709,7 +25709,7 @@ def _index_apache_openmeetings_get_serialize( @validate_call - async def index_apache_openoffice_get( + async def index_apache_openmeetings_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25747,10 +25747,10 @@ async def index_apache_openoffice_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination: - """Return vulnerability data stored in index \"apache-openoffice\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination: + """Return vulnerability data stored in index \"apache-openmeetings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` :param page: set the page number of the response :type page: int @@ -25822,7 +25822,7 @@ async def index_apache_openoffice_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openoffice_get_serialize( + _param = self._index_apache_openmeetings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -25854,7 +25854,7 @@ async def index_apache_openoffice_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", '404': "str", '500': "str", } @@ -25870,7 +25870,7 @@ async def index_apache_openoffice_get( @validate_call - async def index_apache_openoffice_get_with_http_info( + async def index_apache_openmeetings_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25908,10 +25908,10 @@ async def index_apache_openoffice_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination]: - """Return vulnerability data stored in index \"apache-openoffice\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination]: + """Return vulnerability data stored in index \"apache-openmeetings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` :param page: set the page number of the response :type page: int @@ -25983,7 +25983,7 @@ async def index_apache_openoffice_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openoffice_get_serialize( + _param = self._index_apache_openmeetings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26015,7 +26015,7 @@ async def index_apache_openoffice_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", '404': "str", '500': "str", } @@ -26031,7 +26031,7 @@ async def index_apache_openoffice_get_with_http_info( @validate_call - async def index_apache_openoffice_get_without_preload_content( + async def index_apache_openmeetings_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -26070,9 +26070,9 @@ async def index_apache_openoffice_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-openoffice\" + """Return vulnerability data stored in index \"apache-openmeetings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` :param page: set the page number of the response :type page: int @@ -26144,7 +26144,7 @@ async def index_apache_openoffice_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openoffice_get_serialize( + _param = self._index_apache_openmeetings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26176,7 +26176,7 @@ async def index_apache_openoffice_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", '404': "str", '500': "str", } @@ -26187,7 +26187,7 @@ async def index_apache_openoffice_get_without_preload_content( return response_data.response - def _index_apache_openoffice_get_serialize( + def _index_apache_openmeetings_get_serialize( self, page, limit, @@ -26355,7 +26355,7 @@ def _index_apache_openoffice_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-openoffice', + resource_path='/v3/index/apache-openmeetings', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -26372,7 +26372,7 @@ def _index_apache_openoffice_get_serialize( @validate_call - async def index_apache_pulsar_get( + async def index_apache_openoffice_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -26410,10 +26410,10 @@ async def index_apache_pulsar_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination: - """Return vulnerability data stored in index \"apache-pulsar\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination: + """Return vulnerability data stored in index \"apache-openoffice\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` :param page: set the page number of the response :type page: int @@ -26485,7 +26485,7 @@ async def index_apache_pulsar_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_pulsar_get_serialize( + _param = self._index_apache_openoffice_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26517,7 +26517,7 @@ async def index_apache_pulsar_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", '404': "str", '500': "str", } @@ -26533,7 +26533,7 @@ async def index_apache_pulsar_get( @validate_call - async def index_apache_pulsar_get_with_http_info( + async def index_apache_openoffice_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -26571,10 +26571,10 @@ async def index_apache_pulsar_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination]: - """Return vulnerability data stored in index \"apache-pulsar\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination]: + """Return vulnerability data stored in index \"apache-openoffice\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` :param page: set the page number of the response :type page: int @@ -26646,7 +26646,7 @@ async def index_apache_pulsar_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_pulsar_get_serialize( + _param = self._index_apache_openoffice_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26678,7 +26678,7 @@ async def index_apache_pulsar_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", '404': "str", '500': "str", } @@ -26694,7 +26694,7 @@ async def index_apache_pulsar_get_with_http_info( @validate_call - async def index_apache_pulsar_get_without_preload_content( + async def index_apache_openoffice_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -26733,9 +26733,9 @@ async def index_apache_pulsar_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-pulsar\" + """Return vulnerability data stored in index \"apache-openoffice\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` :param page: set the page number of the response :type page: int @@ -26807,7 +26807,7 @@ async def index_apache_pulsar_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_pulsar_get_serialize( + _param = self._index_apache_openoffice_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26839,7 +26839,7 @@ async def index_apache_pulsar_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", '404': "str", '500': "str", } @@ -26850,7 +26850,7 @@ async def index_apache_pulsar_get_without_preload_content( return response_data.response - def _index_apache_pulsar_get_serialize( + def _index_apache_openoffice_get_serialize( self, page, limit, @@ -27018,7 +27018,7 @@ def _index_apache_pulsar_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-pulsar', + resource_path='/v3/index/apache-openoffice', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -27035,7 +27035,7 @@ def _index_apache_pulsar_get_serialize( @validate_call - async def index_apache_shiro_get( + async def index_apache_pulsar_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27073,10 +27073,10 @@ async def index_apache_shiro_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination: - """Return vulnerability data stored in index \"apache-shiro\" + ) -> RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination: + """Return vulnerability data stored in index \"apache-pulsar\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` :param page: set the page number of the response :type page: int @@ -27148,7 +27148,7 @@ async def index_apache_shiro_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_shiro_get_serialize( + _param = self._index_apache_pulsar_get_serialize( page=page, limit=limit, cursor=cursor, @@ -27180,7 +27180,7 @@ async def index_apache_shiro_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", '404': "str", '500': "str", } @@ -27196,7 +27196,7 @@ async def index_apache_shiro_get( @validate_call - async def index_apache_shiro_get_with_http_info( + async def index_apache_pulsar_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27234,10 +27234,10 @@ async def index_apache_shiro_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination]: - """Return vulnerability data stored in index \"apache-shiro\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination]: + """Return vulnerability data stored in index \"apache-pulsar\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` :param page: set the page number of the response :type page: int @@ -27309,7 +27309,7 @@ async def index_apache_shiro_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_shiro_get_serialize( + _param = self._index_apache_pulsar_get_serialize( page=page, limit=limit, cursor=cursor, @@ -27341,7 +27341,7 @@ async def index_apache_shiro_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", '404': "str", '500': "str", } @@ -27357,7 +27357,7 @@ async def index_apache_shiro_get_with_http_info( @validate_call - async def index_apache_shiro_get_without_preload_content( + async def index_apache_pulsar_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27396,9 +27396,9 @@ async def index_apache_shiro_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-shiro\" + """Return vulnerability data stored in index \"apache-pulsar\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` :param page: set the page number of the response :type page: int @@ -27470,7 +27470,7 @@ async def index_apache_shiro_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_shiro_get_serialize( + _param = self._index_apache_pulsar_get_serialize( page=page, limit=limit, cursor=cursor, @@ -27502,7 +27502,7 @@ async def index_apache_shiro_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", '404': "str", '500': "str", } @@ -27513,7 +27513,7 @@ async def index_apache_shiro_get_without_preload_content( return response_data.response - def _index_apache_shiro_get_serialize( + def _index_apache_pulsar_get_serialize( self, page, limit, @@ -27681,7 +27681,7 @@ def _index_apache_shiro_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-shiro', + resource_path='/v3/index/apache-pulsar', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -27698,7 +27698,7 @@ def _index_apache_shiro_get_serialize( @validate_call - async def index_apache_spark_get( + async def index_apache_shiro_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27736,10 +27736,10 @@ async def index_apache_spark_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination: - """Return vulnerability data stored in index \"apache-spark\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination: + """Return vulnerability data stored in index \"apache-shiro\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` :param page: set the page number of the response :type page: int @@ -27811,7 +27811,7 @@ async def index_apache_spark_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_spark_get_serialize( + _param = self._index_apache_shiro_get_serialize( page=page, limit=limit, cursor=cursor, @@ -27843,7 +27843,7 @@ async def index_apache_spark_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", '404': "str", '500': "str", } @@ -27859,7 +27859,7 @@ async def index_apache_spark_get( @validate_call - async def index_apache_spark_get_with_http_info( + async def index_apache_shiro_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27897,10 +27897,10 @@ async def index_apache_spark_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination]: - """Return vulnerability data stored in index \"apache-spark\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination]: + """Return vulnerability data stored in index \"apache-shiro\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` :param page: set the page number of the response :type page: int @@ -27972,7 +27972,7 @@ async def index_apache_spark_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_spark_get_serialize( + _param = self._index_apache_shiro_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28004,7 +28004,7 @@ async def index_apache_spark_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", '404': "str", '500': "str", } @@ -28020,7 +28020,7 @@ async def index_apache_spark_get_with_http_info( @validate_call - async def index_apache_spark_get_without_preload_content( + async def index_apache_shiro_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -28059,9 +28059,9 @@ async def index_apache_spark_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-spark\" + """Return vulnerability data stored in index \"apache-shiro\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` :param page: set the page number of the response :type page: int @@ -28133,7 +28133,7 @@ async def index_apache_spark_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_spark_get_serialize( + _param = self._index_apache_shiro_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28165,7 +28165,7 @@ async def index_apache_spark_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", '404': "str", '500': "str", } @@ -28176,7 +28176,7 @@ async def index_apache_spark_get_without_preload_content( return response_data.response - def _index_apache_spark_get_serialize( + def _index_apache_shiro_get_serialize( self, page, limit, @@ -28344,7 +28344,7 @@ def _index_apache_spark_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-spark', + resource_path='/v3/index/apache-shiro', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -28361,7 +28361,7 @@ def _index_apache_spark_get_serialize( @validate_call - async def index_apache_struts_get( + async def index_apache_spark_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -28399,10 +28399,10 @@ async def index_apache_struts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination: - """Return vulnerability data stored in index \"apache-struts\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination: + """Return vulnerability data stored in index \"apache-spark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` :param page: set the page number of the response :type page: int @@ -28474,7 +28474,7 @@ async def index_apache_struts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_struts_get_serialize( + _param = self._index_apache_spark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28506,7 +28506,7 @@ async def index_apache_struts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", '404': "str", '500': "str", } @@ -28522,7 +28522,7 @@ async def index_apache_struts_get( @validate_call - async def index_apache_struts_get_with_http_info( + async def index_apache_spark_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -28560,10 +28560,10 @@ async def index_apache_struts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination]: - """Return vulnerability data stored in index \"apache-struts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination]: + """Return vulnerability data stored in index \"apache-spark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` :param page: set the page number of the response :type page: int @@ -28635,7 +28635,7 @@ async def index_apache_struts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_struts_get_serialize( + _param = self._index_apache_spark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28667,7 +28667,7 @@ async def index_apache_struts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", '404': "str", '500': "str", } @@ -28683,7 +28683,7 @@ async def index_apache_struts_get_with_http_info( @validate_call - async def index_apache_struts_get_without_preload_content( + async def index_apache_spark_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -28722,9 +28722,9 @@ async def index_apache_struts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-struts\" + """Return vulnerability data stored in index \"apache-spark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` :param page: set the page number of the response :type page: int @@ -28796,7 +28796,7 @@ async def index_apache_struts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_struts_get_serialize( + _param = self._index_apache_spark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28828,7 +28828,7 @@ async def index_apache_struts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", '404': "str", '500': "str", } @@ -28839,7 +28839,7 @@ async def index_apache_struts_get_without_preload_content( return response_data.response - def _index_apache_struts_get_serialize( + def _index_apache_spark_get_serialize( self, page, limit, @@ -29007,7 +29007,7 @@ def _index_apache_struts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-struts', + resource_path='/v3/index/apache-spark', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -29024,7 +29024,7 @@ def _index_apache_struts_get_serialize( @validate_call - async def index_apache_subversion_get( + async def index_apache_struts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29062,10 +29062,10 @@ async def index_apache_subversion_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination: - """Return vulnerability data stored in index \"apache-subversion\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination: + """Return vulnerability data stored in index \"apache-struts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` :param page: set the page number of the response :type page: int @@ -29137,7 +29137,7 @@ async def index_apache_subversion_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_subversion_get_serialize( + _param = self._index_apache_struts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29169,7 +29169,7 @@ async def index_apache_subversion_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", '404': "str", '500': "str", } @@ -29185,7 +29185,7 @@ async def index_apache_subversion_get( @validate_call - async def index_apache_subversion_get_with_http_info( + async def index_apache_struts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29223,10 +29223,10 @@ async def index_apache_subversion_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination]: - """Return vulnerability data stored in index \"apache-subversion\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination]: + """Return vulnerability data stored in index \"apache-struts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` :param page: set the page number of the response :type page: int @@ -29298,7 +29298,7 @@ async def index_apache_subversion_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_subversion_get_serialize( + _param = self._index_apache_struts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29330,7 +29330,7 @@ async def index_apache_subversion_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", '404': "str", '500': "str", } @@ -29346,7 +29346,7 @@ async def index_apache_subversion_get_with_http_info( @validate_call - async def index_apache_subversion_get_without_preload_content( + async def index_apache_struts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29385,9 +29385,9 @@ async def index_apache_subversion_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-subversion\" + """Return vulnerability data stored in index \"apache-struts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` :param page: set the page number of the response :type page: int @@ -29459,7 +29459,7 @@ async def index_apache_subversion_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_subversion_get_serialize( + _param = self._index_apache_struts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29491,7 +29491,7 @@ async def index_apache_subversion_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", '404': "str", '500': "str", } @@ -29502,7 +29502,7 @@ async def index_apache_subversion_get_without_preload_content( return response_data.response - def _index_apache_subversion_get_serialize( + def _index_apache_struts_get_serialize( self, page, limit, @@ -29670,7 +29670,7 @@ def _index_apache_subversion_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-subversion', + resource_path='/v3/index/apache-struts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -29687,7 +29687,7 @@ def _index_apache_subversion_get_serialize( @validate_call - async def index_apache_superset_get( + async def index_apache_subversion_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29725,10 +29725,10 @@ async def index_apache_superset_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination: - """Return vulnerability data stored in index \"apache-superset\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination: + """Return vulnerability data stored in index \"apache-subversion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` :param page: set the page number of the response :type page: int @@ -29800,7 +29800,7 @@ async def index_apache_superset_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_superset_get_serialize( + _param = self._index_apache_subversion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29832,7 +29832,7 @@ async def index_apache_superset_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", '404': "str", '500': "str", } @@ -29848,7 +29848,7 @@ async def index_apache_superset_get( @validate_call - async def index_apache_superset_get_with_http_info( + async def index_apache_subversion_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29886,10 +29886,10 @@ async def index_apache_superset_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination]: - """Return vulnerability data stored in index \"apache-superset\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination]: + """Return vulnerability data stored in index \"apache-subversion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` :param page: set the page number of the response :type page: int @@ -29961,7 +29961,7 @@ async def index_apache_superset_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_superset_get_serialize( + _param = self._index_apache_subversion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29993,7 +29993,7 @@ async def index_apache_superset_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", '404': "str", '500': "str", } @@ -30009,7 +30009,7 @@ async def index_apache_superset_get_with_http_info( @validate_call - async def index_apache_superset_get_without_preload_content( + async def index_apache_subversion_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -30048,9 +30048,9 @@ async def index_apache_superset_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-superset\" + """Return vulnerability data stored in index \"apache-subversion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` :param page: set the page number of the response :type page: int @@ -30122,7 +30122,7 @@ async def index_apache_superset_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_superset_get_serialize( + _param = self._index_apache_subversion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -30154,7 +30154,7 @@ async def index_apache_superset_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", '404': "str", '500': "str", } @@ -30165,7 +30165,7 @@ async def index_apache_superset_get_without_preload_content( return response_data.response - def _index_apache_superset_get_serialize( + def _index_apache_subversion_get_serialize( self, page, limit, @@ -30333,7 +30333,7 @@ def _index_apache_superset_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-superset', + resource_path='/v3/index/apache-subversion', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -30350,7 +30350,7 @@ def _index_apache_superset_get_serialize( @validate_call - async def index_apache_tomcat_get( + async def index_apache_superset_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -30388,10 +30388,10 @@ async def index_apache_tomcat_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination: - """Return vulnerability data stored in index \"apache-tomcat\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination: + """Return vulnerability data stored in index \"apache-superset\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` :param page: set the page number of the response :type page: int @@ -30463,7 +30463,7 @@ async def index_apache_tomcat_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_tomcat_get_serialize( + _param = self._index_apache_superset_get_serialize( page=page, limit=limit, cursor=cursor, @@ -30495,7 +30495,7 @@ async def index_apache_tomcat_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", '404': "str", '500': "str", } @@ -30511,7 +30511,7 @@ async def index_apache_tomcat_get( @validate_call - async def index_apache_tomcat_get_with_http_info( + async def index_apache_superset_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -30549,10 +30549,10 @@ async def index_apache_tomcat_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination]: - """Return vulnerability data stored in index \"apache-tomcat\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination]: + """Return vulnerability data stored in index \"apache-superset\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` :param page: set the page number of the response :type page: int @@ -30624,7 +30624,7 @@ async def index_apache_tomcat_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_tomcat_get_serialize( + _param = self._index_apache_superset_get_serialize( page=page, limit=limit, cursor=cursor, @@ -30656,7 +30656,7 @@ async def index_apache_tomcat_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", '404': "str", '500': "str", } @@ -30672,7 +30672,7 @@ async def index_apache_tomcat_get_with_http_info( @validate_call - async def index_apache_tomcat_get_without_preload_content( + async def index_apache_superset_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -30711,9 +30711,9 @@ async def index_apache_tomcat_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-tomcat\" + """Return vulnerability data stored in index \"apache-superset\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` :param page: set the page number of the response :type page: int @@ -30785,7 +30785,7 @@ async def index_apache_tomcat_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_tomcat_get_serialize( + _param = self._index_apache_superset_get_serialize( page=page, limit=limit, cursor=cursor, @@ -30817,7 +30817,7 @@ async def index_apache_tomcat_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", '404': "str", '500': "str", } @@ -30828,7 +30828,7 @@ async def index_apache_tomcat_get_without_preload_content( return response_data.response - def _index_apache_tomcat_get_serialize( + def _index_apache_superset_get_serialize( self, page, limit, @@ -30996,7 +30996,7 @@ def _index_apache_tomcat_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-tomcat', + resource_path='/v3/index/apache-superset', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -31013,7 +31013,7 @@ def _index_apache_tomcat_get_serialize( @validate_call - async def index_apache_zookeeper_get( + async def index_apache_tomcat_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31051,10 +31051,10 @@ async def index_apache_zookeeper_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination: - """Return vulnerability data stored in index \"apache-zookeeper\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination: + """Return vulnerability data stored in index \"apache-tomcat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` :param page: set the page number of the response :type page: int @@ -31126,7 +31126,7 @@ async def index_apache_zookeeper_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_zookeeper_get_serialize( + _param = self._index_apache_tomcat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31158,7 +31158,7 @@ async def index_apache_zookeeper_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", '404': "str", '500': "str", } @@ -31174,7 +31174,7 @@ async def index_apache_zookeeper_get( @validate_call - async def index_apache_zookeeper_get_with_http_info( + async def index_apache_tomcat_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31212,10 +31212,10 @@ async def index_apache_zookeeper_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination]: - """Return vulnerability data stored in index \"apache-zookeeper\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination]: + """Return vulnerability data stored in index \"apache-tomcat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` :param page: set the page number of the response :type page: int @@ -31287,7 +31287,7 @@ async def index_apache_zookeeper_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_zookeeper_get_serialize( + _param = self._index_apache_tomcat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31319,7 +31319,7 @@ async def index_apache_zookeeper_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", '404': "str", '500': "str", } @@ -31335,7 +31335,7 @@ async def index_apache_zookeeper_get_with_http_info( @validate_call - async def index_apache_zookeeper_get_without_preload_content( + async def index_apache_tomcat_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31374,9 +31374,9 @@ async def index_apache_zookeeper_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-zookeeper\" + """Return vulnerability data stored in index \"apache-tomcat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` :param page: set the page number of the response :type page: int @@ -31448,7 +31448,7 @@ async def index_apache_zookeeper_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_zookeeper_get_serialize( + _param = self._index_apache_tomcat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31480,7 +31480,7 @@ async def index_apache_zookeeper_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", '404': "str", '500': "str", } @@ -31491,7 +31491,7 @@ async def index_apache_zookeeper_get_without_preload_content( return response_data.response - def _index_apache_zookeeper_get_serialize( + def _index_apache_tomcat_get_serialize( self, page, limit, @@ -31659,7 +31659,7 @@ def _index_apache_zookeeper_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-zookeeper', + resource_path='/v3/index/apache-tomcat', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -31676,7 +31676,7 @@ def _index_apache_zookeeper_get_serialize( @validate_call - async def index_appcheck_get( + async def index_apache_zookeeper_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31714,10 +31714,10 @@ async def index_appcheck_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination: - """Return vulnerability data stored in index \"appcheck\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination: + """Return vulnerability data stored in index \"apache-zookeeper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` :param page: set the page number of the response :type page: int @@ -31789,7 +31789,7 @@ async def index_appcheck_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appcheck_get_serialize( + _param = self._index_apache_zookeeper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31821,7 +31821,7 @@ async def index_appcheck_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", '404': "str", '500': "str", } @@ -31837,7 +31837,7 @@ async def index_appcheck_get( @validate_call - async def index_appcheck_get_with_http_info( + async def index_apache_zookeeper_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31875,10 +31875,10 @@ async def index_appcheck_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination]: - """Return vulnerability data stored in index \"appcheck\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination]: + """Return vulnerability data stored in index \"apache-zookeeper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` :param page: set the page number of the response :type page: int @@ -31950,7 +31950,7 @@ async def index_appcheck_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appcheck_get_serialize( + _param = self._index_apache_zookeeper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31982,7 +31982,7 @@ async def index_appcheck_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", '404': "str", '500': "str", } @@ -31998,7 +31998,7 @@ async def index_appcheck_get_with_http_info( @validate_call - async def index_appcheck_get_without_preload_content( + async def index_apache_zookeeper_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -32037,9 +32037,9 @@ async def index_appcheck_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"appcheck\" + """Return vulnerability data stored in index \"apache-zookeeper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` :param page: set the page number of the response :type page: int @@ -32111,7 +32111,7 @@ async def index_appcheck_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appcheck_get_serialize( + _param = self._index_apache_zookeeper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -32143,7 +32143,7 @@ async def index_appcheck_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", '404': "str", '500': "str", } @@ -32154,7 +32154,7 @@ async def index_appcheck_get_without_preload_content( return response_data.response - def _index_appcheck_get_serialize( + def _index_apache_zookeeper_get_serialize( self, page, limit, @@ -32322,7 +32322,7 @@ def _index_appcheck_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/appcheck', + resource_path='/v3/index/apache-zookeeper', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -32339,7 +32339,7 @@ def _index_appcheck_get_serialize( @validate_call - async def index_appgate_get( + async def index_appcheck_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -32377,10 +32377,10 @@ async def index_appgate_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination: - """Return vulnerability data stored in index \"appgate\" + ) -> RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination: + """Return vulnerability data stored in index \"appcheck\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` :param page: set the page number of the response :type page: int @@ -32452,7 +32452,7 @@ async def index_appgate_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appgate_get_serialize( + _param = self._index_appcheck_get_serialize( page=page, limit=limit, cursor=cursor, @@ -32484,7 +32484,7 @@ async def index_appgate_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", '404': "str", '500': "str", } @@ -32500,7 +32500,7 @@ async def index_appgate_get( @validate_call - async def index_appgate_get_with_http_info( + async def index_appcheck_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -32538,10 +32538,10 @@ async def index_appgate_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination]: - """Return vulnerability data stored in index \"appgate\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination]: + """Return vulnerability data stored in index \"appcheck\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` :param page: set the page number of the response :type page: int @@ -32613,7 +32613,7 @@ async def index_appgate_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appgate_get_serialize( + _param = self._index_appcheck_get_serialize( page=page, limit=limit, cursor=cursor, @@ -32645,7 +32645,7 @@ async def index_appgate_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", '404': "str", '500': "str", } @@ -32661,7 +32661,7 @@ async def index_appgate_get_with_http_info( @validate_call - async def index_appgate_get_without_preload_content( + async def index_appcheck_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -32700,9 +32700,9 @@ async def index_appgate_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"appgate\" + """Return vulnerability data stored in index \"appcheck\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` :param page: set the page number of the response :type page: int @@ -32774,7 +32774,7 @@ async def index_appgate_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appgate_get_serialize( + _param = self._index_appcheck_get_serialize( page=page, limit=limit, cursor=cursor, @@ -32806,7 +32806,7 @@ async def index_appgate_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", '404': "str", '500': "str", } @@ -32817,7 +32817,7 @@ async def index_appgate_get_without_preload_content( return response_data.response - def _index_appgate_get_serialize( + def _index_appcheck_get_serialize( self, page, limit, @@ -32985,7 +32985,7 @@ def _index_appgate_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/appgate', + resource_path='/v3/index/appcheck', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -33002,7 +33002,7 @@ def _index_appgate_get_serialize( @validate_call - async def index_apple_get( + async def index_appgate_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33040,10 +33040,10 @@ async def index_apple_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"apple\" + ) -> RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination: + """Return vulnerability data stored in index \"appgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` :param page: set the page number of the response :type page: int @@ -33115,7 +33115,7 @@ async def index_apple_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apple_get_serialize( + _param = self._index_appgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33147,7 +33147,7 @@ async def index_apple_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", '404': "str", '500': "str", } @@ -33163,7 +33163,7 @@ async def index_apple_get( @validate_call - async def index_apple_get_with_http_info( + async def index_appgate_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33201,10 +33201,10 @@ async def index_apple_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"apple\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination]: + """Return vulnerability data stored in index \"appgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` :param page: set the page number of the response :type page: int @@ -33276,7 +33276,7 @@ async def index_apple_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apple_get_serialize( + _param = self._index_appgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33308,7 +33308,7 @@ async def index_apple_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", '404': "str", '500': "str", } @@ -33324,7 +33324,7 @@ async def index_apple_get_with_http_info( @validate_call - async def index_apple_get_without_preload_content( + async def index_appgate_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33363,9 +33363,9 @@ async def index_apple_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apple\" + """Return vulnerability data stored in index \"appgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` :param page: set the page number of the response :type page: int @@ -33437,7 +33437,7 @@ async def index_apple_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apple_get_serialize( + _param = self._index_appgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33469,7 +33469,7 @@ async def index_apple_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", '404': "str", '500': "str", } @@ -33480,7 +33480,7 @@ async def index_apple_get_without_preload_content( return response_data.response - def _index_apple_get_serialize( + def _index_appgate_get_serialize( self, page, limit, @@ -33648,7 +33648,7 @@ def _index_apple_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apple', + resource_path='/v3/index/appgate', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -33665,7 +33665,7 @@ def _index_apple_get_serialize( @validate_call - async def index_arch_get( + async def index_apple_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33703,10 +33703,10 @@ async def index_arch_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination: - """Return vulnerability data stored in index \"arch\" + ) -> RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"apple\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` :param page: set the page number of the response :type page: int @@ -33778,7 +33778,7 @@ async def index_arch_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arch_get_serialize( + _param = self._index_apple_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33810,7 +33810,7 @@ async def index_arch_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -33826,7 +33826,7 @@ async def index_arch_get( @validate_call - async def index_arch_get_with_http_info( + async def index_apple_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33864,10 +33864,10 @@ async def index_arch_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination]: - """Return vulnerability data stored in index \"arch\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"apple\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` :param page: set the page number of the response :type page: int @@ -33939,7 +33939,7 @@ async def index_arch_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arch_get_serialize( + _param = self._index_apple_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33971,7 +33971,7 @@ async def index_arch_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -33987,7 +33987,7 @@ async def index_arch_get_with_http_info( @validate_call - async def index_arch_get_without_preload_content( + async def index_apple_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -34026,9 +34026,9 @@ async def index_arch_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"arch\" + """Return vulnerability data stored in index \"apple\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` :param page: set the page number of the response :type page: int @@ -34100,7 +34100,7 @@ async def index_arch_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arch_get_serialize( + _param = self._index_apple_get_serialize( page=page, limit=limit, cursor=cursor, @@ -34132,7 +34132,7 @@ async def index_arch_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -34143,7 +34143,7 @@ async def index_arch_get_without_preload_content( return response_data.response - def _index_arch_get_serialize( + def _index_apple_get_serialize( self, page, limit, @@ -34311,7 +34311,7 @@ def _index_arch_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/arch', + resource_path='/v3/index/apple', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -34328,7 +34328,7 @@ def _index_arch_get_serialize( @validate_call - async def index_arista_get( + async def index_arch_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -34366,10 +34366,10 @@ async def index_arista_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination: - """Return vulnerability data stored in index \"arista\" + ) -> RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination: + """Return vulnerability data stored in index \"arch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` :param page: set the page number of the response :type page: int @@ -34441,7 +34441,7 @@ async def index_arista_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arista_get_serialize( + _param = self._index_arch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -34473,7 +34473,7 @@ async def index_arista_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", '404': "str", '500': "str", } @@ -34489,7 +34489,7 @@ async def index_arista_get( @validate_call - async def index_arista_get_with_http_info( + async def index_arch_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -34527,10 +34527,10 @@ async def index_arista_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination]: - """Return vulnerability data stored in index \"arista\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination]: + """Return vulnerability data stored in index \"arch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` :param page: set the page number of the response :type page: int @@ -34602,7 +34602,7 @@ async def index_arista_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arista_get_serialize( + _param = self._index_arch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -34634,7 +34634,7 @@ async def index_arista_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", '404': "str", '500': "str", } @@ -34650,7 +34650,7 @@ async def index_arista_get_with_http_info( @validate_call - async def index_arista_get_without_preload_content( + async def index_arch_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -34689,9 +34689,9 @@ async def index_arista_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"arista\" + """Return vulnerability data stored in index \"arch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` :param page: set the page number of the response :type page: int @@ -34763,7 +34763,7 @@ async def index_arista_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arista_get_serialize( + _param = self._index_arch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -34795,7 +34795,7 @@ async def index_arista_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", '404': "str", '500': "str", } @@ -34806,7 +34806,7 @@ async def index_arista_get_without_preload_content( return response_data.response - def _index_arista_get_serialize( + def _index_arch_get_serialize( self, page, limit, @@ -34974,7 +34974,7 @@ def _index_arista_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/arista', + resource_path='/v3/index/arch', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -34991,7 +34991,7 @@ def _index_arista_get_serialize( @validate_call - async def index_aruba_get( + async def index_arista_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35029,10 +35029,10 @@ async def index_aruba_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination: - """Return vulnerability data stored in index \"aruba\" + ) -> RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination: + """Return vulnerability data stored in index \"arista\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` :param page: set the page number of the response :type page: int @@ -35104,7 +35104,7 @@ async def index_aruba_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aruba_get_serialize( + _param = self._index_arista_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35136,7 +35136,7 @@ async def index_aruba_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", '404': "str", '500': "str", } @@ -35152,7 +35152,7 @@ async def index_aruba_get( @validate_call - async def index_aruba_get_with_http_info( + async def index_arista_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35190,10 +35190,10 @@ async def index_aruba_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination]: - """Return vulnerability data stored in index \"aruba\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination]: + """Return vulnerability data stored in index \"arista\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` :param page: set the page number of the response :type page: int @@ -35265,7 +35265,7 @@ async def index_aruba_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aruba_get_serialize( + _param = self._index_arista_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35297,7 +35297,7 @@ async def index_aruba_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", '404': "str", '500': "str", } @@ -35313,7 +35313,7 @@ async def index_aruba_get_with_http_info( @validate_call - async def index_aruba_get_without_preload_content( + async def index_arista_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35352,9 +35352,9 @@ async def index_aruba_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"aruba\" + """Return vulnerability data stored in index \"arista\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` :param page: set the page number of the response :type page: int @@ -35426,7 +35426,7 @@ async def index_aruba_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aruba_get_serialize( + _param = self._index_arista_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35458,7 +35458,7 @@ async def index_aruba_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", '404': "str", '500': "str", } @@ -35469,7 +35469,7 @@ async def index_aruba_get_without_preload_content( return response_data.response - def _index_aruba_get_serialize( + def _index_arista_get_serialize( self, page, limit, @@ -35637,7 +35637,7 @@ def _index_aruba_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/aruba', + resource_path='/v3/index/arista', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -35654,7 +35654,7 @@ def _index_aruba_get_serialize( @validate_call - async def index_asrg_get( + async def index_aruba_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35692,10 +35692,10 @@ async def index_asrg_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination: - """Return vulnerability data stored in index \"asrg\" + ) -> RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination: + """Return vulnerability data stored in index \"aruba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` :param page: set the page number of the response :type page: int @@ -35767,7 +35767,7 @@ async def index_asrg_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asrg_get_serialize( + _param = self._index_aruba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35799,7 +35799,7 @@ async def index_asrg_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", '404': "str", '500': "str", } @@ -35815,7 +35815,7 @@ async def index_asrg_get( @validate_call - async def index_asrg_get_with_http_info( + async def index_aruba_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35853,10 +35853,10 @@ async def index_asrg_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination]: - """Return vulnerability data stored in index \"asrg\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination]: + """Return vulnerability data stored in index \"aruba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` :param page: set the page number of the response :type page: int @@ -35928,7 +35928,7 @@ async def index_asrg_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asrg_get_serialize( + _param = self._index_aruba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35960,7 +35960,7 @@ async def index_asrg_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", '404': "str", '500': "str", } @@ -35976,7 +35976,7 @@ async def index_asrg_get_with_http_info( @validate_call - async def index_asrg_get_without_preload_content( + async def index_aruba_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -36015,9 +36015,9 @@ async def index_asrg_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"asrg\" + """Return vulnerability data stored in index \"aruba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` :param page: set the page number of the response :type page: int @@ -36089,7 +36089,7 @@ async def index_asrg_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asrg_get_serialize( + _param = self._index_aruba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -36121,7 +36121,7 @@ async def index_asrg_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", '404': "str", '500': "str", } @@ -36132,7 +36132,7 @@ async def index_asrg_get_without_preload_content( return response_data.response - def _index_asrg_get_serialize( + def _index_aruba_get_serialize( self, page, limit, @@ -36300,7 +36300,7 @@ def _index_asrg_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/asrg', + resource_path='/v3/index/aruba', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -36317,7 +36317,7 @@ def _index_asrg_get_serialize( @validate_call - async def index_assetnote_get( + async def index_asrg_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -36355,10 +36355,10 @@ async def index_assetnote_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination: - """Return vulnerability data stored in index \"assetnote\" + ) -> RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination: + """Return vulnerability data stored in index \"asrg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` :param page: set the page number of the response :type page: int @@ -36430,7 +36430,7 @@ async def index_assetnote_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_assetnote_get_serialize( + _param = self._index_asrg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -36462,7 +36462,7 @@ async def index_assetnote_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", '404': "str", '500': "str", } @@ -36478,7 +36478,7 @@ async def index_assetnote_get( @validate_call - async def index_assetnote_get_with_http_info( + async def index_asrg_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -36516,10 +36516,10 @@ async def index_assetnote_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination]: - """Return vulnerability data stored in index \"assetnote\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination]: + """Return vulnerability data stored in index \"asrg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` :param page: set the page number of the response :type page: int @@ -36591,7 +36591,7 @@ async def index_assetnote_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_assetnote_get_serialize( + _param = self._index_asrg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -36623,7 +36623,7 @@ async def index_assetnote_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", '404': "str", '500': "str", } @@ -36639,7 +36639,7 @@ async def index_assetnote_get_with_http_info( @validate_call - async def index_assetnote_get_without_preload_content( + async def index_asrg_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -36678,9 +36678,9 @@ async def index_assetnote_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"assetnote\" + """Return vulnerability data stored in index \"asrg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` :param page: set the page number of the response :type page: int @@ -36752,7 +36752,7 @@ async def index_assetnote_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_assetnote_get_serialize( + _param = self._index_asrg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -36784,7 +36784,7 @@ async def index_assetnote_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", '404': "str", '500': "str", } @@ -36795,7 +36795,7 @@ async def index_assetnote_get_without_preload_content( return response_data.response - def _index_assetnote_get_serialize( + def _index_asrg_get_serialize( self, page, limit, @@ -36963,7 +36963,7 @@ def _index_assetnote_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/assetnote', + resource_path='/v3/index/asrg', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -36980,7 +36980,7 @@ def _index_assetnote_get_serialize( @validate_call - async def index_asterisk_get( + async def index_assetnote_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37018,10 +37018,10 @@ async def index_asterisk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination: - """Return vulnerability data stored in index \"asterisk\" + ) -> RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination: + """Return vulnerability data stored in index \"assetnote\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` :param page: set the page number of the response :type page: int @@ -37093,7 +37093,7 @@ async def index_asterisk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asterisk_get_serialize( + _param = self._index_assetnote_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37125,7 +37125,7 @@ async def index_asterisk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", '404': "str", '500': "str", } @@ -37141,7 +37141,7 @@ async def index_asterisk_get( @validate_call - async def index_asterisk_get_with_http_info( + async def index_assetnote_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37179,10 +37179,10 @@ async def index_asterisk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination]: - """Return vulnerability data stored in index \"asterisk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination]: + """Return vulnerability data stored in index \"assetnote\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` :param page: set the page number of the response :type page: int @@ -37254,7 +37254,7 @@ async def index_asterisk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asterisk_get_serialize( + _param = self._index_assetnote_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37286,7 +37286,7 @@ async def index_asterisk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", '404': "str", '500': "str", } @@ -37302,7 +37302,7 @@ async def index_asterisk_get_with_http_info( @validate_call - async def index_asterisk_get_without_preload_content( + async def index_assetnote_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37341,9 +37341,9 @@ async def index_asterisk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"asterisk\" + """Return vulnerability data stored in index \"assetnote\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` :param page: set the page number of the response :type page: int @@ -37415,7 +37415,7 @@ async def index_asterisk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asterisk_get_serialize( + _param = self._index_assetnote_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37447,7 +37447,7 @@ async def index_asterisk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", '404': "str", '500': "str", } @@ -37458,7 +37458,7 @@ async def index_asterisk_get_without_preload_content( return response_data.response - def _index_asterisk_get_serialize( + def _index_assetnote_get_serialize( self, page, limit, @@ -37626,7 +37626,7 @@ def _index_asterisk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/asterisk', + resource_path='/v3/index/assetnote', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -37643,7 +37643,7 @@ def _index_asterisk_get_serialize( @validate_call - async def index_astra_get( + async def index_asterisk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37681,10 +37681,10 @@ async def index_astra_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination: - """Return vulnerability data stored in index \"astra\" + ) -> RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination: + """Return vulnerability data stored in index \"asterisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` :param page: set the page number of the response :type page: int @@ -37756,7 +37756,7 @@ async def index_astra_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_astra_get_serialize( + _param = self._index_asterisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37788,7 +37788,7 @@ async def index_astra_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", '404': "str", '500': "str", } @@ -37804,7 +37804,7 @@ async def index_astra_get( @validate_call - async def index_astra_get_with_http_info( + async def index_asterisk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37842,10 +37842,10 @@ async def index_astra_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination]: - """Return vulnerability data stored in index \"astra\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination]: + """Return vulnerability data stored in index \"asterisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` :param page: set the page number of the response :type page: int @@ -37917,7 +37917,7 @@ async def index_astra_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_astra_get_serialize( + _param = self._index_asterisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37949,7 +37949,7 @@ async def index_astra_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", '404': "str", '500': "str", } @@ -37965,7 +37965,7 @@ async def index_astra_get_with_http_info( @validate_call - async def index_astra_get_without_preload_content( + async def index_asterisk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -38004,9 +38004,9 @@ async def index_astra_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"astra\" + """Return vulnerability data stored in index \"asterisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` :param page: set the page number of the response :type page: int @@ -38078,7 +38078,7 @@ async def index_astra_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_astra_get_serialize( + _param = self._index_asterisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -38110,7 +38110,7 @@ async def index_astra_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", '404': "str", '500': "str", } @@ -38121,7 +38121,7 @@ async def index_astra_get_without_preload_content( return response_data.response - def _index_astra_get_serialize( + def _index_asterisk_get_serialize( self, page, limit, @@ -38289,7 +38289,7 @@ def _index_astra_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/astra', + resource_path='/v3/index/asterisk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -38306,7 +38306,7 @@ def _index_astra_get_serialize( @validate_call - async def index_asus_get( + async def index_astra_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -38344,10 +38344,10 @@ async def index_asus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination: - """Return vulnerability data stored in index \"asus\" + ) -> RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination: + """Return vulnerability data stored in index \"astra\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` :param page: set the page number of the response :type page: int @@ -38419,7 +38419,7 @@ async def index_asus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asus_get_serialize( + _param = self._index_astra_get_serialize( page=page, limit=limit, cursor=cursor, @@ -38451,7 +38451,7 @@ async def index_asus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", '404': "str", '500': "str", } @@ -38467,7 +38467,7 @@ async def index_asus_get( @validate_call - async def index_asus_get_with_http_info( + async def index_astra_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -38505,10 +38505,10 @@ async def index_asus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination]: - """Return vulnerability data stored in index \"asus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination]: + """Return vulnerability data stored in index \"astra\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` :param page: set the page number of the response :type page: int @@ -38580,7 +38580,7 @@ async def index_asus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asus_get_serialize( + _param = self._index_astra_get_serialize( page=page, limit=limit, cursor=cursor, @@ -38612,7 +38612,7 @@ async def index_asus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", '404': "str", '500': "str", } @@ -38628,7 +38628,7 @@ async def index_asus_get_with_http_info( @validate_call - async def index_asus_get_without_preload_content( + async def index_astra_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -38667,9 +38667,9 @@ async def index_asus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"asus\" + """Return vulnerability data stored in index \"astra\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` :param page: set the page number of the response :type page: int @@ -38741,7 +38741,7 @@ async def index_asus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asus_get_serialize( + _param = self._index_astra_get_serialize( page=page, limit=limit, cursor=cursor, @@ -38773,7 +38773,7 @@ async def index_asus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", '404': "str", '500': "str", } @@ -38784,7 +38784,7 @@ async def index_asus_get_without_preload_content( return response_data.response - def _index_asus_get_serialize( + def _index_astra_get_serialize( self, page, limit, @@ -38952,7 +38952,7 @@ def _index_asus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/asus', + resource_path='/v3/index/astra', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -38969,7 +38969,7 @@ def _index_asus_get_serialize( @validate_call - async def index_atlassian_get( + async def index_asus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39007,10 +39007,10 @@ async def index_atlassian_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"atlassian\" + ) -> RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination: + """Return vulnerability data stored in index \"asus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` :param page: set the page number of the response :type page: int @@ -39082,7 +39082,7 @@ async def index_atlassian_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_get_serialize( + _param = self._index_asus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39114,7 +39114,7 @@ async def index_atlassian_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", '404': "str", '500': "str", } @@ -39130,7 +39130,7 @@ async def index_atlassian_get( @validate_call - async def index_atlassian_get_with_http_info( + async def index_asus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39168,10 +39168,10 @@ async def index_atlassian_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"atlassian\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination]: + """Return vulnerability data stored in index \"asus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` :param page: set the page number of the response :type page: int @@ -39243,7 +39243,7 @@ async def index_atlassian_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_get_serialize( + _param = self._index_asus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39275,7 +39275,7 @@ async def index_atlassian_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", '404': "str", '500': "str", } @@ -39291,7 +39291,7 @@ async def index_atlassian_get_with_http_info( @validate_call - async def index_atlassian_get_without_preload_content( + async def index_asus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39330,9 +39330,9 @@ async def index_atlassian_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"atlassian\" + """Return vulnerability data stored in index \"asus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` :param page: set the page number of the response :type page: int @@ -39404,7 +39404,7 @@ async def index_atlassian_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_get_serialize( + _param = self._index_asus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39436,7 +39436,7 @@ async def index_atlassian_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", '404': "str", '500': "str", } @@ -39447,7 +39447,7 @@ async def index_atlassian_get_without_preload_content( return response_data.response - def _index_atlassian_get_serialize( + def _index_asus_get_serialize( self, page, limit, @@ -39615,7 +39615,7 @@ def _index_atlassian_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/atlassian', + resource_path='/v3/index/asus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -39632,7 +39632,7 @@ def _index_atlassian_get_serialize( @validate_call - async def index_atlassian_vulns_get( + async def index_atlassian_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39670,10 +39670,10 @@ async def index_atlassian_vulns_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination: - """Return vulnerability data stored in index \"atlassian-vulns\" + ) -> RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"atlassian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` :param page: set the page number of the response :type page: int @@ -39745,7 +39745,7 @@ async def index_atlassian_vulns_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_vulns_get_serialize( + _param = self._index_atlassian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39777,7 +39777,7 @@ async def index_atlassian_vulns_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -39793,7 +39793,7 @@ async def index_atlassian_vulns_get( @validate_call - async def index_atlassian_vulns_get_with_http_info( + async def index_atlassian_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39831,10 +39831,10 @@ async def index_atlassian_vulns_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination]: - """Return vulnerability data stored in index \"atlassian-vulns\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"atlassian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` :param page: set the page number of the response :type page: int @@ -39906,7 +39906,7 @@ async def index_atlassian_vulns_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_vulns_get_serialize( + _param = self._index_atlassian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39938,7 +39938,7 @@ async def index_atlassian_vulns_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -39954,7 +39954,7 @@ async def index_atlassian_vulns_get_with_http_info( @validate_call - async def index_atlassian_vulns_get_without_preload_content( + async def index_atlassian_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39993,9 +39993,9 @@ async def index_atlassian_vulns_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"atlassian-vulns\" + """Return vulnerability data stored in index \"atlassian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` :param page: set the page number of the response :type page: int @@ -40067,7 +40067,7 @@ async def index_atlassian_vulns_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_vulns_get_serialize( + _param = self._index_atlassian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -40099,7 +40099,7 @@ async def index_atlassian_vulns_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -40110,7 +40110,7 @@ async def index_atlassian_vulns_get_without_preload_content( return response_data.response - def _index_atlassian_vulns_get_serialize( + def _index_atlassian_get_serialize( self, page, limit, @@ -40278,7 +40278,7 @@ def _index_atlassian_vulns_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/atlassian-vulns', + resource_path='/v3/index/atlassian', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -40295,7 +40295,7 @@ def _index_atlassian_vulns_get_serialize( @validate_call - async def index_atredis_get( + async def index_atlassian_vulns_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -40333,10 +40333,10 @@ async def index_atredis_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination: - """Return vulnerability data stored in index \"atredis\" + ) -> RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination: + """Return vulnerability data stored in index \"atlassian-vulns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` :param page: set the page number of the response :type page: int @@ -40408,7 +40408,7 @@ async def index_atredis_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atredis_get_serialize( + _param = self._index_atlassian_vulns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -40440,7 +40440,7 @@ async def index_atredis_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", '404': "str", '500': "str", } @@ -40456,7 +40456,7 @@ async def index_atredis_get( @validate_call - async def index_atredis_get_with_http_info( + async def index_atlassian_vulns_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -40494,10 +40494,10 @@ async def index_atredis_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination]: - """Return vulnerability data stored in index \"atredis\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination]: + """Return vulnerability data stored in index \"atlassian-vulns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` :param page: set the page number of the response :type page: int @@ -40569,7 +40569,7 @@ async def index_atredis_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atredis_get_serialize( + _param = self._index_atlassian_vulns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -40601,7 +40601,7 @@ async def index_atredis_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", '404': "str", '500': "str", } @@ -40617,7 +40617,7 @@ async def index_atredis_get_with_http_info( @validate_call - async def index_atredis_get_without_preload_content( + async def index_atlassian_vulns_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -40656,9 +40656,9 @@ async def index_atredis_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"atredis\" + """Return vulnerability data stored in index \"atlassian-vulns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` :param page: set the page number of the response :type page: int @@ -40730,7 +40730,7 @@ async def index_atredis_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atredis_get_serialize( + _param = self._index_atlassian_vulns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -40762,7 +40762,7 @@ async def index_atredis_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", '404': "str", '500': "str", } @@ -40773,7 +40773,7 @@ async def index_atredis_get_without_preload_content( return response_data.response - def _index_atredis_get_serialize( + def _index_atlassian_vulns_get_serialize( self, page, limit, @@ -40941,7 +40941,7 @@ def _index_atredis_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/atredis', + resource_path='/v3/index/atlassian-vulns', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -40958,7 +40958,7 @@ def _index_atredis_get_serialize( @validate_call - async def index_audiocodes_get( + async def index_atredis_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -40996,10 +40996,10 @@ async def index_audiocodes_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination: - """Return vulnerability data stored in index \"audiocodes\" + ) -> RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination: + """Return vulnerability data stored in index \"atredis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` :param page: set the page number of the response :type page: int @@ -41071,7 +41071,7 @@ async def index_audiocodes_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_audiocodes_get_serialize( + _param = self._index_atredis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41103,7 +41103,7 @@ async def index_audiocodes_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", '404': "str", '500': "str", } @@ -41119,7 +41119,7 @@ async def index_audiocodes_get( @validate_call - async def index_audiocodes_get_with_http_info( + async def index_atredis_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41157,10 +41157,10 @@ async def index_audiocodes_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination]: - """Return vulnerability data stored in index \"audiocodes\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination]: + """Return vulnerability data stored in index \"atredis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` :param page: set the page number of the response :type page: int @@ -41232,7 +41232,7 @@ async def index_audiocodes_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_audiocodes_get_serialize( + _param = self._index_atredis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41264,7 +41264,7 @@ async def index_audiocodes_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", '404': "str", '500': "str", } @@ -41280,7 +41280,7 @@ async def index_audiocodes_get_with_http_info( @validate_call - async def index_audiocodes_get_without_preload_content( + async def index_atredis_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41319,9 +41319,9 @@ async def index_audiocodes_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"audiocodes\" + """Return vulnerability data stored in index \"atredis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` :param page: set the page number of the response :type page: int @@ -41393,7 +41393,7 @@ async def index_audiocodes_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_audiocodes_get_serialize( + _param = self._index_atredis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41425,7 +41425,7 @@ async def index_audiocodes_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", '404': "str", '500': "str", } @@ -41436,7 +41436,7 @@ async def index_audiocodes_get_without_preload_content( return response_data.response - def _index_audiocodes_get_serialize( + def _index_atredis_get_serialize( self, page, limit, @@ -41604,7 +41604,7 @@ def _index_audiocodes_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/audiocodes', + resource_path='/v3/index/atredis', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -41621,7 +41621,7 @@ def _index_audiocodes_get_serialize( @validate_call - async def index_auscert_get( + async def index_audiocodes_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41659,10 +41659,10 @@ async def index_auscert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination: - """Return vulnerability data stored in index \"auscert\" + ) -> RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination: + """Return vulnerability data stored in index \"audiocodes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` :param page: set the page number of the response :type page: int @@ -41734,7 +41734,7 @@ async def index_auscert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_auscert_get_serialize( + _param = self._index_audiocodes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41766,7 +41766,7 @@ async def index_auscert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", '404': "str", '500': "str", } @@ -41782,7 +41782,7 @@ async def index_auscert_get( @validate_call - async def index_auscert_get_with_http_info( + async def index_audiocodes_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41820,10 +41820,10 @@ async def index_auscert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination]: - """Return vulnerability data stored in index \"auscert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination]: + """Return vulnerability data stored in index \"audiocodes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` :param page: set the page number of the response :type page: int @@ -41895,7 +41895,7 @@ async def index_auscert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_auscert_get_serialize( + _param = self._index_audiocodes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41927,7 +41927,7 @@ async def index_auscert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", '404': "str", '500': "str", } @@ -41943,7 +41943,7 @@ async def index_auscert_get_with_http_info( @validate_call - async def index_auscert_get_without_preload_content( + async def index_audiocodes_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41982,9 +41982,9 @@ async def index_auscert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"auscert\" + """Return vulnerability data stored in index \"audiocodes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` :param page: set the page number of the response :type page: int @@ -42056,7 +42056,7 @@ async def index_auscert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_auscert_get_serialize( + _param = self._index_audiocodes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -42088,7 +42088,7 @@ async def index_auscert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", '404': "str", '500': "str", } @@ -42099,7 +42099,7 @@ async def index_auscert_get_without_preload_content( return response_data.response - def _index_auscert_get_serialize( + def _index_audiocodes_get_serialize( self, page, limit, @@ -42267,7 +42267,7 @@ def _index_auscert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/auscert', + resource_path='/v3/index/audiocodes', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -42284,7 +42284,7 @@ def _index_auscert_get_serialize( @validate_call - async def index_austin_hackers_get( + async def index_auscert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -42322,10 +42322,10 @@ async def index_austin_hackers_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"austin-hackers\" + ) -> RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination: + """Return vulnerability data stored in index \"auscert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` :param page: set the page number of the response :type page: int @@ -42397,7 +42397,7 @@ async def index_austin_hackers_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_austin_hackers_get_serialize( + _param = self._index_auscert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -42429,7 +42429,7 @@ async def index_austin_hackers_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", '404': "str", '500': "str", } @@ -42445,7 +42445,7 @@ async def index_austin_hackers_get( @validate_call - async def index_austin_hackers_get_with_http_info( + async def index_auscert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -42483,10 +42483,10 @@ async def index_austin_hackers_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"austin-hackers\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination]: + """Return vulnerability data stored in index \"auscert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` :param page: set the page number of the response :type page: int @@ -42558,7 +42558,7 @@ async def index_austin_hackers_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_austin_hackers_get_serialize( + _param = self._index_auscert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -42590,7 +42590,7 @@ async def index_austin_hackers_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", '404': "str", '500': "str", } @@ -42606,7 +42606,7 @@ async def index_austin_hackers_get_with_http_info( @validate_call - async def index_austin_hackers_get_without_preload_content( + async def index_auscert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -42645,9 +42645,9 @@ async def index_austin_hackers_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"austin-hackers\" + """Return vulnerability data stored in index \"auscert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` :param page: set the page number of the response :type page: int @@ -42719,7 +42719,7 @@ async def index_austin_hackers_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_austin_hackers_get_serialize( + _param = self._index_auscert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -42751,7 +42751,7 @@ async def index_austin_hackers_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", '404': "str", '500': "str", } @@ -42762,7 +42762,7 @@ async def index_austin_hackers_get_without_preload_content( return response_data.response - def _index_austin_hackers_get_serialize( + def _index_auscert_get_serialize( self, page, limit, @@ -42930,7 +42930,7 @@ def _index_austin_hackers_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/austin-hackers', + resource_path='/v3/index/auscert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -42947,7 +42947,7 @@ def _index_austin_hackers_get_serialize( @validate_call - async def index_autodesk_get( + async def index_austin_hackers_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -42985,10 +42985,10 @@ async def index_autodesk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination: - """Return vulnerability data stored in index \"autodesk\" + ) -> RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"austin-hackers\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` :param page: set the page number of the response :type page: int @@ -43060,7 +43060,7 @@ async def index_autodesk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_autodesk_get_serialize( + _param = self._index_austin_hackers_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43092,7 +43092,7 @@ async def index_autodesk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -43108,7 +43108,7 @@ async def index_autodesk_get( @validate_call - async def index_autodesk_get_with_http_info( + async def index_austin_hackers_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43146,10 +43146,10 @@ async def index_autodesk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination]: - """Return vulnerability data stored in index \"autodesk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"austin-hackers\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` :param page: set the page number of the response :type page: int @@ -43221,7 +43221,7 @@ async def index_autodesk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_autodesk_get_serialize( + _param = self._index_austin_hackers_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43253,7 +43253,7 @@ async def index_autodesk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -43269,7 +43269,7 @@ async def index_autodesk_get_with_http_info( @validate_call - async def index_autodesk_get_without_preload_content( + async def index_austin_hackers_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43308,9 +43308,9 @@ async def index_autodesk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"autodesk\" + """Return vulnerability data stored in index \"austin-hackers\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` :param page: set the page number of the response :type page: int @@ -43382,7 +43382,7 @@ async def index_autodesk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_autodesk_get_serialize( + _param = self._index_austin_hackers_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43414,7 +43414,7 @@ async def index_autodesk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -43425,7 +43425,7 @@ async def index_autodesk_get_without_preload_content( return response_data.response - def _index_autodesk_get_serialize( + def _index_austin_hackers_get_serialize( self, page, limit, @@ -43593,7 +43593,7 @@ def _index_autodesk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/autodesk', + resource_path='/v3/index/austin-hackers', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -43610,7 +43610,7 @@ def _index_autodesk_get_serialize( @validate_call - async def index_avaya_get( + async def index_autodesk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43648,10 +43648,10 @@ async def index_avaya_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination: - """Return vulnerability data stored in index \"avaya\" + ) -> RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination: + """Return vulnerability data stored in index \"autodesk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` :param page: set the page number of the response :type page: int @@ -43723,7 +43723,7 @@ async def index_avaya_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avaya_get_serialize( + _param = self._index_autodesk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43755,7 +43755,7 @@ async def index_avaya_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", '404': "str", '500': "str", } @@ -43771,7 +43771,7 @@ async def index_avaya_get( @validate_call - async def index_avaya_get_with_http_info( + async def index_autodesk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43809,10 +43809,10 @@ async def index_avaya_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination]: - """Return vulnerability data stored in index \"avaya\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination]: + """Return vulnerability data stored in index \"autodesk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` :param page: set the page number of the response :type page: int @@ -43884,7 +43884,7 @@ async def index_avaya_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avaya_get_serialize( + _param = self._index_autodesk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43916,7 +43916,7 @@ async def index_avaya_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", '404': "str", '500': "str", } @@ -43932,7 +43932,7 @@ async def index_avaya_get_with_http_info( @validate_call - async def index_avaya_get_without_preload_content( + async def index_autodesk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43971,9 +43971,9 @@ async def index_avaya_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"avaya\" + """Return vulnerability data stored in index \"autodesk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` :param page: set the page number of the response :type page: int @@ -44045,7 +44045,7 @@ async def index_avaya_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avaya_get_serialize( + _param = self._index_autodesk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -44077,7 +44077,7 @@ async def index_avaya_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", '404': "str", '500': "str", } @@ -44088,7 +44088,7 @@ async def index_avaya_get_without_preload_content( return response_data.response - def _index_avaya_get_serialize( + def _index_autodesk_get_serialize( self, page, limit, @@ -44256,7 +44256,7 @@ def _index_avaya_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/avaya', + resource_path='/v3/index/autodesk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -44273,7 +44273,7 @@ def _index_avaya_get_serialize( @validate_call - async def index_aveva_get( + async def index_avaya_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -44311,10 +44311,10 @@ async def index_aveva_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"aveva\" + ) -> RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination: + """Return vulnerability data stored in index \"avaya\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` :param page: set the page number of the response :type page: int @@ -44386,7 +44386,7 @@ async def index_aveva_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aveva_get_serialize( + _param = self._index_avaya_get_serialize( page=page, limit=limit, cursor=cursor, @@ -44418,7 +44418,7 @@ async def index_aveva_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", '404': "str", '500': "str", } @@ -44434,7 +44434,7 @@ async def index_aveva_get( @validate_call - async def index_aveva_get_with_http_info( + async def index_avaya_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -44472,10 +44472,10 @@ async def index_aveva_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"aveva\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination]: + """Return vulnerability data stored in index \"avaya\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` :param page: set the page number of the response :type page: int @@ -44547,7 +44547,7 @@ async def index_aveva_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aveva_get_serialize( + _param = self._index_avaya_get_serialize( page=page, limit=limit, cursor=cursor, @@ -44579,7 +44579,7 @@ async def index_aveva_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", '404': "str", '500': "str", } @@ -44595,7 +44595,7 @@ async def index_aveva_get_with_http_info( @validate_call - async def index_aveva_get_without_preload_content( + async def index_avaya_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -44634,9 +44634,9 @@ async def index_aveva_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"aveva\" + """Return vulnerability data stored in index \"avaya\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` :param page: set the page number of the response :type page: int @@ -44708,7 +44708,7 @@ async def index_aveva_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aveva_get_serialize( + _param = self._index_avaya_get_serialize( page=page, limit=limit, cursor=cursor, @@ -44740,7 +44740,7 @@ async def index_aveva_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", '404': "str", '500': "str", } @@ -44751,7 +44751,7 @@ async def index_aveva_get_without_preload_content( return response_data.response - def _index_aveva_get_serialize( + def _index_avaya_get_serialize( self, page, limit, @@ -44919,7 +44919,7 @@ def _index_aveva_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/aveva', + resource_path='/v3/index/avaya', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -44936,7 +44936,7 @@ def _index_aveva_get_serialize( @validate_call - async def index_avidml_advs_get( + async def index_aveva_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -44974,10 +44974,10 @@ async def index_avidml_advs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination: - """Return vulnerability data stored in index \"avidml-advs\" + ) -> RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"aveva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` :param page: set the page number of the response :type page: int @@ -45049,7 +45049,7 @@ async def index_avidml_advs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avidml_advs_get_serialize( + _param = self._index_aveva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45081,7 +45081,7 @@ async def index_avidml_advs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -45097,7 +45097,7 @@ async def index_avidml_advs_get( @validate_call - async def index_avidml_advs_get_with_http_info( + async def index_aveva_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45135,10 +45135,10 @@ async def index_avidml_advs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination]: - """Return vulnerability data stored in index \"avidml-advs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"aveva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` :param page: set the page number of the response :type page: int @@ -45210,7 +45210,7 @@ async def index_avidml_advs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avidml_advs_get_serialize( + _param = self._index_aveva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45242,7 +45242,7 @@ async def index_avidml_advs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -45258,7 +45258,7 @@ async def index_avidml_advs_get_with_http_info( @validate_call - async def index_avidml_advs_get_without_preload_content( + async def index_aveva_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45297,9 +45297,9 @@ async def index_avidml_advs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"avidml-advs\" + """Return vulnerability data stored in index \"aveva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` :param page: set the page number of the response :type page: int @@ -45371,7 +45371,7 @@ async def index_avidml_advs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avidml_advs_get_serialize( + _param = self._index_aveva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45403,7 +45403,7 @@ async def index_avidml_advs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -45414,7 +45414,7 @@ async def index_avidml_advs_get_without_preload_content( return response_data.response - def _index_avidml_advs_get_serialize( + def _index_aveva_get_serialize( self, page, limit, @@ -45582,7 +45582,7 @@ def _index_avidml_advs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/avidml-advs', + resource_path='/v3/index/aveva', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -45599,7 +45599,7 @@ def _index_avidml_advs_get_serialize( @validate_call - async def index_avigilon_get( + async def index_avidml_advs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45637,10 +45637,10 @@ async def index_avigilon_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination: - """Return vulnerability data stored in index \"avigilon\" + ) -> RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination: + """Return vulnerability data stored in index \"avidml-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` :param page: set the page number of the response :type page: int @@ -45712,7 +45712,7 @@ async def index_avigilon_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avigilon_get_serialize( + _param = self._index_avidml_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45744,7 +45744,7 @@ async def index_avigilon_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", '404': "str", '500': "str", } @@ -45760,7 +45760,7 @@ async def index_avigilon_get( @validate_call - async def index_avigilon_get_with_http_info( + async def index_avidml_advs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45798,10 +45798,10 @@ async def index_avigilon_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination]: - """Return vulnerability data stored in index \"avigilon\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination]: + """Return vulnerability data stored in index \"avidml-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` :param page: set the page number of the response :type page: int @@ -45873,7 +45873,7 @@ async def index_avigilon_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avigilon_get_serialize( + _param = self._index_avidml_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45905,7 +45905,7 @@ async def index_avigilon_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", '404': "str", '500': "str", } @@ -45921,7 +45921,7 @@ async def index_avigilon_get_with_http_info( @validate_call - async def index_avigilon_get_without_preload_content( + async def index_avidml_advs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45960,9 +45960,9 @@ async def index_avigilon_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"avigilon\" + """Return vulnerability data stored in index \"avidml-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` :param page: set the page number of the response :type page: int @@ -46034,7 +46034,7 @@ async def index_avigilon_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avigilon_get_serialize( + _param = self._index_avidml_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -46066,7 +46066,7 @@ async def index_avigilon_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", '404': "str", '500': "str", } @@ -46077,7 +46077,7 @@ async def index_avigilon_get_without_preload_content( return response_data.response - def _index_avigilon_get_serialize( + def _index_avidml_advs_get_serialize( self, page, limit, @@ -46245,7 +46245,7 @@ def _index_avigilon_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/avigilon', + resource_path='/v3/index/avidml-advs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -46262,7 +46262,7 @@ def _index_avigilon_get_serialize( @validate_call - async def index_aws_get( + async def index_avigilon_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -46300,10 +46300,10 @@ async def index_aws_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination: - """Return vulnerability data stored in index \"aws\" + ) -> RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination: + """Return vulnerability data stored in index \"avigilon\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` :param page: set the page number of the response :type page: int @@ -46375,7 +46375,7 @@ async def index_aws_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_get_serialize( + _param = self._index_avigilon_get_serialize( page=page, limit=limit, cursor=cursor, @@ -46407,7 +46407,7 @@ async def index_aws_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", '404': "str", '500': "str", } @@ -46423,7 +46423,7 @@ async def index_aws_get( @validate_call - async def index_aws_get_with_http_info( + async def index_avigilon_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -46461,10 +46461,10 @@ async def index_aws_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination]: - """Return vulnerability data stored in index \"aws\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination]: + """Return vulnerability data stored in index \"avigilon\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` :param page: set the page number of the response :type page: int @@ -46536,7 +46536,7 @@ async def index_aws_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_get_serialize( + _param = self._index_avigilon_get_serialize( page=page, limit=limit, cursor=cursor, @@ -46568,7 +46568,7 @@ async def index_aws_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", '404': "str", '500': "str", } @@ -46584,7 +46584,7 @@ async def index_aws_get_with_http_info( @validate_call - async def index_aws_get_without_preload_content( + async def index_avigilon_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -46623,9 +46623,9 @@ async def index_aws_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"aws\" + """Return vulnerability data stored in index \"avigilon\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` :param page: set the page number of the response :type page: int @@ -46697,7 +46697,7 @@ async def index_aws_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_get_serialize( + _param = self._index_avigilon_get_serialize( page=page, limit=limit, cursor=cursor, @@ -46729,7 +46729,7 @@ async def index_aws_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", '404': "str", '500': "str", } @@ -46740,7 +46740,7 @@ async def index_aws_get_without_preload_content( return response_data.response - def _index_aws_get_serialize( + def _index_avigilon_get_serialize( self, page, limit, @@ -46908,7 +46908,7 @@ def _index_aws_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/aws', + resource_path='/v3/index/avigilon', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -46925,7 +46925,7 @@ def _index_aws_get_serialize( @validate_call - async def index_aws_rds_get( + async def index_aws_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -46963,10 +46963,10 @@ async def index_aws_rds_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"aws-rds\" + ) -> RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination: + """Return vulnerability data stored in index \"aws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` :param page: set the page number of the response :type page: int @@ -47038,7 +47038,7 @@ async def index_aws_rds_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_rds_get_serialize( + _param = self._index_aws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47070,7 +47070,7 @@ async def index_aws_rds_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", '404': "str", '500': "str", } @@ -47086,7 +47086,7 @@ async def index_aws_rds_get( @validate_call - async def index_aws_rds_get_with_http_info( + async def index_aws_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47124,10 +47124,10 @@ async def index_aws_rds_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"aws-rds\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination]: + """Return vulnerability data stored in index \"aws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` :param page: set the page number of the response :type page: int @@ -47199,7 +47199,7 @@ async def index_aws_rds_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_rds_get_serialize( + _param = self._index_aws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47231,7 +47231,7 @@ async def index_aws_rds_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", '404': "str", '500': "str", } @@ -47247,7 +47247,7 @@ async def index_aws_rds_get_with_http_info( @validate_call - async def index_aws_rds_get_without_preload_content( + async def index_aws_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47286,9 +47286,9 @@ async def index_aws_rds_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"aws-rds\" + """Return vulnerability data stored in index \"aws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` :param page: set the page number of the response :type page: int @@ -47360,7 +47360,7 @@ async def index_aws_rds_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_rds_get_serialize( + _param = self._index_aws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47392,7 +47392,7 @@ async def index_aws_rds_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", '404': "str", '500': "str", } @@ -47403,7 +47403,7 @@ async def index_aws_rds_get_without_preload_content( return response_data.response - def _index_aws_rds_get_serialize( + def _index_aws_get_serialize( self, page, limit, @@ -47571,7 +47571,7 @@ def _index_aws_rds_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/aws-rds', + resource_path='/v3/index/aws', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -47588,7 +47588,7 @@ def _index_aws_rds_get_serialize( @validate_call - async def index_axis_get( + async def index_aws_rds_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47626,10 +47626,10 @@ async def index_axis_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination: - """Return vulnerability data stored in index \"axis\" + ) -> RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"aws-rds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` :param page: set the page number of the response :type page: int @@ -47701,7 +47701,7 @@ async def index_axis_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_axis_get_serialize( + _param = self._index_aws_rds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47733,7 +47733,7 @@ async def index_axis_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -47749,7 +47749,7 @@ async def index_axis_get( @validate_call - async def index_axis_get_with_http_info( + async def index_aws_rds_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47787,10 +47787,10 @@ async def index_axis_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination]: - """Return vulnerability data stored in index \"axis\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"aws-rds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` :param page: set the page number of the response :type page: int @@ -47862,7 +47862,7 @@ async def index_axis_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_axis_get_serialize( + _param = self._index_aws_rds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47894,7 +47894,7 @@ async def index_axis_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -47910,7 +47910,7 @@ async def index_axis_get_with_http_info( @validate_call - async def index_axis_get_without_preload_content( + async def index_aws_rds_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47949,9 +47949,9 @@ async def index_axis_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"axis\" + """Return vulnerability data stored in index \"aws-rds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` :param page: set the page number of the response :type page: int @@ -48023,7 +48023,7 @@ async def index_axis_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_axis_get_serialize( + _param = self._index_aws_rds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -48055,7 +48055,7 @@ async def index_axis_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -48066,7 +48066,7 @@ async def index_axis_get_without_preload_content( return response_data.response - def _index_axis_get_serialize( + def _index_aws_rds_get_serialize( self, page, limit, @@ -48234,7 +48234,7 @@ def _index_axis_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/axis', + resource_path='/v3/index/aws-rds', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -48251,7 +48251,7 @@ def _index_axis_get_serialize( @validate_call - async def index_azul_get( + async def index_axis_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -48289,10 +48289,10 @@ async def index_azul_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination: - """Return vulnerability data stored in index \"azul\" + ) -> RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination: + """Return vulnerability data stored in index \"axis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` :param page: set the page number of the response :type page: int @@ -48364,7 +48364,7 @@ async def index_azul_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_azul_get_serialize( + _param = self._index_axis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -48396,7 +48396,7 @@ async def index_azul_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", '404': "str", '500': "str", } @@ -48412,7 +48412,7 @@ async def index_azul_get( @validate_call - async def index_azul_get_with_http_info( + async def index_axis_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -48450,10 +48450,10 @@ async def index_azul_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination]: - """Return vulnerability data stored in index \"azul\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination]: + """Return vulnerability data stored in index \"axis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` :param page: set the page number of the response :type page: int @@ -48525,7 +48525,7 @@ async def index_azul_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_azul_get_serialize( + _param = self._index_axis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -48557,7 +48557,7 @@ async def index_azul_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", '404': "str", '500': "str", } @@ -48573,7 +48573,7 @@ async def index_azul_get_with_http_info( @validate_call - async def index_azul_get_without_preload_content( + async def index_axis_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -48612,9 +48612,9 @@ async def index_azul_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"azul\" + """Return vulnerability data stored in index \"axis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` :param page: set the page number of the response :type page: int @@ -48686,7 +48686,7 @@ async def index_azul_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_azul_get_serialize( + _param = self._index_axis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -48718,7 +48718,7 @@ async def index_azul_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", '404': "str", '500': "str", } @@ -48729,7 +48729,7 @@ async def index_azul_get_without_preload_content( return response_data.response - def _index_azul_get_serialize( + def _index_axis_get_serialize( self, page, limit, @@ -48897,7 +48897,7 @@ def _index_azul_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/azul', + resource_path='/v3/index/axis', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -48914,7 +48914,7 @@ def _index_azul_get_serialize( @validate_call - async def index_bandr_get( + async def index_azul_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -48952,10 +48952,10 @@ async def index_bandr_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination: - """Return vulnerability data stored in index \"bandr\" + ) -> RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination: + """Return vulnerability data stored in index \"azul\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` :param page: set the page number of the response :type page: int @@ -49027,7 +49027,7 @@ async def index_bandr_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bandr_get_serialize( + _param = self._index_azul_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49059,7 +49059,7 @@ async def index_bandr_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", '404': "str", '500': "str", } @@ -49075,7 +49075,7 @@ async def index_bandr_get( @validate_call - async def index_bandr_get_with_http_info( + async def index_azul_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49113,10 +49113,10 @@ async def index_bandr_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination]: - """Return vulnerability data stored in index \"bandr\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination]: + """Return vulnerability data stored in index \"azul\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` :param page: set the page number of the response :type page: int @@ -49188,7 +49188,7 @@ async def index_bandr_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bandr_get_serialize( + _param = self._index_azul_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49220,7 +49220,7 @@ async def index_bandr_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", '404': "str", '500': "str", } @@ -49236,7 +49236,7 @@ async def index_bandr_get_with_http_info( @validate_call - async def index_bandr_get_without_preload_content( + async def index_azul_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49275,9 +49275,9 @@ async def index_bandr_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bandr\" + """Return vulnerability data stored in index \"azul\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` :param page: set the page number of the response :type page: int @@ -49349,7 +49349,7 @@ async def index_bandr_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bandr_get_serialize( + _param = self._index_azul_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49381,7 +49381,7 @@ async def index_bandr_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", '404': "str", '500': "str", } @@ -49392,7 +49392,7 @@ async def index_bandr_get_without_preload_content( return response_data.response - def _index_bandr_get_serialize( + def _index_azul_get_serialize( self, page, limit, @@ -49560,7 +49560,7 @@ def _index_bandr_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bandr', + resource_path='/v3/index/azul', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -49577,7 +49577,7 @@ def _index_bandr_get_serialize( @validate_call - async def index_baxter_get( + async def index_bandr_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49615,10 +49615,10 @@ async def index_baxter_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"baxter\" + ) -> RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination: + """Return vulnerability data stored in index \"bandr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` :param page: set the page number of the response :type page: int @@ -49690,7 +49690,7 @@ async def index_baxter_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_baxter_get_serialize( + _param = self._index_bandr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49722,7 +49722,7 @@ async def index_baxter_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", '404': "str", '500': "str", } @@ -49738,7 +49738,7 @@ async def index_baxter_get( @validate_call - async def index_baxter_get_with_http_info( + async def index_bandr_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49776,10 +49776,10 @@ async def index_baxter_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"baxter\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination]: + """Return vulnerability data stored in index \"bandr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` :param page: set the page number of the response :type page: int @@ -49851,7 +49851,7 @@ async def index_baxter_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_baxter_get_serialize( + _param = self._index_bandr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49883,7 +49883,7 @@ async def index_baxter_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", '404': "str", '500': "str", } @@ -49899,7 +49899,7 @@ async def index_baxter_get_with_http_info( @validate_call - async def index_baxter_get_without_preload_content( + async def index_bandr_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49938,9 +49938,9 @@ async def index_baxter_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"baxter\" + """Return vulnerability data stored in index \"bandr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` :param page: set the page number of the response :type page: int @@ -50012,7 +50012,7 @@ async def index_baxter_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_baxter_get_serialize( + _param = self._index_bandr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -50044,7 +50044,7 @@ async def index_baxter_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", '404': "str", '500': "str", } @@ -50055,7 +50055,7 @@ async def index_baxter_get_without_preload_content( return response_data.response - def _index_baxter_get_serialize( + def _index_bandr_get_serialize( self, page, limit, @@ -50223,7 +50223,7 @@ def _index_baxter_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/baxter', + resource_path='/v3/index/bandr', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -50240,7 +50240,7 @@ def _index_baxter_get_serialize( @validate_call - async def index_bbraun_get( + async def index_baxter_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -50278,10 +50278,10 @@ async def index_bbraun_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"bbraun\" + ) -> RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"baxter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` :param page: set the page number of the response :type page: int @@ -50353,7 +50353,7 @@ async def index_bbraun_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bbraun_get_serialize( + _param = self._index_baxter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -50385,7 +50385,7 @@ async def index_bbraun_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -50401,7 +50401,7 @@ async def index_bbraun_get( @validate_call - async def index_bbraun_get_with_http_info( + async def index_baxter_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -50439,10 +50439,10 @@ async def index_bbraun_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"bbraun\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"baxter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` :param page: set the page number of the response :type page: int @@ -50514,7 +50514,7 @@ async def index_bbraun_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bbraun_get_serialize( + _param = self._index_baxter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -50546,7 +50546,7 @@ async def index_bbraun_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -50562,7 +50562,7 @@ async def index_bbraun_get_with_http_info( @validate_call - async def index_bbraun_get_without_preload_content( + async def index_baxter_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -50601,9 +50601,9 @@ async def index_bbraun_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bbraun\" + """Return vulnerability data stored in index \"baxter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` :param page: set the page number of the response :type page: int @@ -50675,7 +50675,7 @@ async def index_bbraun_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bbraun_get_serialize( + _param = self._index_baxter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -50707,7 +50707,7 @@ async def index_bbraun_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -50718,7 +50718,7 @@ async def index_bbraun_get_without_preload_content( return response_data.response - def _index_bbraun_get_serialize( + def _index_baxter_get_serialize( self, page, limit, @@ -50886,7 +50886,7 @@ def _index_bbraun_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bbraun', + resource_path='/v3/index/baxter', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -50903,7 +50903,7 @@ def _index_bbraun_get_serialize( @validate_call - async def index_bd_get( + async def index_bbraun_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -50941,10 +50941,10 @@ async def index_bd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"bd\" + ) -> RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"bbraun\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` :param page: set the page number of the response :type page: int @@ -51016,7 +51016,7 @@ async def index_bd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bd_get_serialize( + _param = self._index_bbraun_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51048,7 +51048,7 @@ async def index_bd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51064,7 +51064,7 @@ async def index_bd_get( @validate_call - async def index_bd_get_with_http_info( + async def index_bbraun_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51102,10 +51102,10 @@ async def index_bd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"bd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"bbraun\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` :param page: set the page number of the response :type page: int @@ -51177,7 +51177,7 @@ async def index_bd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bd_get_serialize( + _param = self._index_bbraun_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51209,7 +51209,7 @@ async def index_bd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51225,7 +51225,7 @@ async def index_bd_get_with_http_info( @validate_call - async def index_bd_get_without_preload_content( + async def index_bbraun_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51264,9 +51264,9 @@ async def index_bd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bd\" + """Return vulnerability data stored in index \"bbraun\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` :param page: set the page number of the response :type page: int @@ -51338,7 +51338,7 @@ async def index_bd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bd_get_serialize( + _param = self._index_bbraun_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51370,7 +51370,7 @@ async def index_bd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51381,7 +51381,7 @@ async def index_bd_get_without_preload_content( return response_data.response - def _index_bd_get_serialize( + def _index_bbraun_get_serialize( self, page, limit, @@ -51549,7 +51549,7 @@ def _index_bd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bd', + resource_path='/v3/index/bbraun', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -51566,7 +51566,7 @@ def _index_bd_get_serialize( @validate_call - async def index_bdu_get( + async def index_bd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51604,10 +51604,10 @@ async def index_bdu_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"bdu\" + ) -> RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"bd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` :param page: set the page number of the response :type page: int @@ -51679,7 +51679,7 @@ async def index_bdu_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bdu_get_serialize( + _param = self._index_bd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51711,7 +51711,7 @@ async def index_bdu_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51727,7 +51727,7 @@ async def index_bdu_get( @validate_call - async def index_bdu_get_with_http_info( + async def index_bd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51765,10 +51765,10 @@ async def index_bdu_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"bdu\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"bd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` :param page: set the page number of the response :type page: int @@ -51840,7 +51840,7 @@ async def index_bdu_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bdu_get_serialize( + _param = self._index_bd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51872,7 +51872,7 @@ async def index_bdu_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51888,7 +51888,7 @@ async def index_bdu_get_with_http_info( @validate_call - async def index_bdu_get_without_preload_content( + async def index_bd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51927,9 +51927,9 @@ async def index_bdu_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bdu\" + """Return vulnerability data stored in index \"bd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` :param page: set the page number of the response :type page: int @@ -52001,7 +52001,7 @@ async def index_bdu_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bdu_get_serialize( + _param = self._index_bd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -52033,7 +52033,7 @@ async def index_bdu_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -52044,7 +52044,7 @@ async def index_bdu_get_without_preload_content( return response_data.response - def _index_bdu_get_serialize( + def _index_bd_get_serialize( self, page, limit, @@ -52212,7 +52212,7 @@ def _index_bdu_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bdu', + resource_path='/v3/index/bd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -52229,7 +52229,7 @@ def _index_bdu_get_serialize( @validate_call - async def index_beckhoff_get( + async def index_bdu_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -52267,10 +52267,10 @@ async def index_beckhoff_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"beckhoff\" + ) -> RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"bdu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` :param page: set the page number of the response :type page: int @@ -52342,7 +52342,7 @@ async def index_beckhoff_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckhoff_get_serialize( + _param = self._index_bdu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -52374,7 +52374,7 @@ async def index_beckhoff_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -52390,7 +52390,7 @@ async def index_beckhoff_get( @validate_call - async def index_beckhoff_get_with_http_info( + async def index_bdu_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -52428,10 +52428,10 @@ async def index_beckhoff_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"beckhoff\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"bdu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` :param page: set the page number of the response :type page: int @@ -52503,7 +52503,7 @@ async def index_beckhoff_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckhoff_get_serialize( + _param = self._index_bdu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -52535,7 +52535,7 @@ async def index_beckhoff_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -52551,7 +52551,7 @@ async def index_beckhoff_get_with_http_info( @validate_call - async def index_beckhoff_get_without_preload_content( + async def index_bdu_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -52590,9 +52590,9 @@ async def index_beckhoff_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"beckhoff\" + """Return vulnerability data stored in index \"bdu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` :param page: set the page number of the response :type page: int @@ -52664,7 +52664,7 @@ async def index_beckhoff_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckhoff_get_serialize( + _param = self._index_bdu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -52696,7 +52696,7 @@ async def index_beckhoff_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -52707,7 +52707,7 @@ async def index_beckhoff_get_without_preload_content( return response_data.response - def _index_beckhoff_get_serialize( + def _index_bdu_get_serialize( self, page, limit, @@ -52875,7 +52875,7 @@ def _index_beckhoff_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/beckhoff', + resource_path='/v3/index/bdu', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -52892,7 +52892,7 @@ def _index_beckhoff_get_serialize( @validate_call - async def index_beckman_coulter_get( + async def index_beckhoff_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -52930,10 +52930,10 @@ async def index_beckman_coulter_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination: - """Return vulnerability data stored in index \"beckman-coulter\" + ) -> RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"beckhoff\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` :param page: set the page number of the response :type page: int @@ -53005,7 +53005,7 @@ async def index_beckman_coulter_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckman_coulter_get_serialize( + _param = self._index_beckhoff_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53037,7 +53037,7 @@ async def index_beckman_coulter_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -53053,7 +53053,7 @@ async def index_beckman_coulter_get( @validate_call - async def index_beckman_coulter_get_with_http_info( + async def index_beckhoff_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53091,10 +53091,10 @@ async def index_beckman_coulter_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination]: - """Return vulnerability data stored in index \"beckman-coulter\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"beckhoff\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` :param page: set the page number of the response :type page: int @@ -53166,7 +53166,7 @@ async def index_beckman_coulter_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckman_coulter_get_serialize( + _param = self._index_beckhoff_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53198,7 +53198,7 @@ async def index_beckman_coulter_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -53214,7 +53214,7 @@ async def index_beckman_coulter_get_with_http_info( @validate_call - async def index_beckman_coulter_get_without_preload_content( + async def index_beckhoff_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53253,9 +53253,9 @@ async def index_beckman_coulter_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"beckman-coulter\" + """Return vulnerability data stored in index \"beckhoff\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` :param page: set the page number of the response :type page: int @@ -53327,7 +53327,7 @@ async def index_beckman_coulter_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckman_coulter_get_serialize( + _param = self._index_beckhoff_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53359,7 +53359,7 @@ async def index_beckman_coulter_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -53370,7 +53370,7 @@ async def index_beckman_coulter_get_without_preload_content( return response_data.response - def _index_beckman_coulter_get_serialize( + def _index_beckhoff_get_serialize( self, page, limit, @@ -53538,7 +53538,7 @@ def _index_beckman_coulter_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/beckman-coulter', + resource_path='/v3/index/beckhoff', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -53555,7 +53555,7 @@ def _index_beckman_coulter_get_serialize( @validate_call - async def index_belden_get( + async def index_beckman_coulter_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53593,10 +53593,10 @@ async def index_belden_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"belden\" + ) -> RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination: + """Return vulnerability data stored in index \"beckman-coulter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` :param page: set the page number of the response :type page: int @@ -53668,7 +53668,7 @@ async def index_belden_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_belden_get_serialize( + _param = self._index_beckman_coulter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53700,7 +53700,7 @@ async def index_belden_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", '404': "str", '500': "str", } @@ -53716,7 +53716,7 @@ async def index_belden_get( @validate_call - async def index_belden_get_with_http_info( + async def index_beckman_coulter_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53754,10 +53754,10 @@ async def index_belden_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"belden\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination]: + """Return vulnerability data stored in index \"beckman-coulter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` :param page: set the page number of the response :type page: int @@ -53829,7 +53829,7 @@ async def index_belden_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_belden_get_serialize( + _param = self._index_beckman_coulter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53861,7 +53861,7 @@ async def index_belden_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", '404': "str", '500': "str", } @@ -53877,7 +53877,7 @@ async def index_belden_get_with_http_info( @validate_call - async def index_belden_get_without_preload_content( + async def index_beckman_coulter_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53916,9 +53916,9 @@ async def index_belden_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"belden\" + """Return vulnerability data stored in index \"beckman-coulter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` :param page: set the page number of the response :type page: int @@ -53990,7 +53990,7 @@ async def index_belden_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_belden_get_serialize( + _param = self._index_beckman_coulter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -54022,7 +54022,7 @@ async def index_belden_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", '404': "str", '500': "str", } @@ -54033,7 +54033,7 @@ async def index_belden_get_without_preload_content( return response_data.response - def _index_belden_get_serialize( + def _index_beckman_coulter_get_serialize( self, page, limit, @@ -54201,7 +54201,7 @@ def _index_belden_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/belden', + resource_path='/v3/index/beckman-coulter', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -54218,7 +54218,7 @@ def _index_belden_get_serialize( @validate_call - async def index_beyond_trust_get( + async def index_belden_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -54256,10 +54256,10 @@ async def index_beyond_trust_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination: - """Return vulnerability data stored in index \"beyond-trust\" + ) -> RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"belden\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` :param page: set the page number of the response :type page: int @@ -54331,7 +54331,7 @@ async def index_beyond_trust_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beyond_trust_get_serialize( + _param = self._index_belden_get_serialize( page=page, limit=limit, cursor=cursor, @@ -54363,7 +54363,7 @@ async def index_beyond_trust_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -54379,7 +54379,7 @@ async def index_beyond_trust_get( @validate_call - async def index_beyond_trust_get_with_http_info( + async def index_belden_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -54417,10 +54417,10 @@ async def index_beyond_trust_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination]: - """Return vulnerability data stored in index \"beyond-trust\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"belden\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` :param page: set the page number of the response :type page: int @@ -54492,7 +54492,7 @@ async def index_beyond_trust_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beyond_trust_get_serialize( + _param = self._index_belden_get_serialize( page=page, limit=limit, cursor=cursor, @@ -54524,7 +54524,7 @@ async def index_beyond_trust_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -54540,7 +54540,7 @@ async def index_beyond_trust_get_with_http_info( @validate_call - async def index_beyond_trust_get_without_preload_content( + async def index_belden_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -54579,9 +54579,9 @@ async def index_beyond_trust_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"beyond-trust\" + """Return vulnerability data stored in index \"belden\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` :param page: set the page number of the response :type page: int @@ -54653,7 +54653,7 @@ async def index_beyond_trust_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beyond_trust_get_serialize( + _param = self._index_belden_get_serialize( page=page, limit=limit, cursor=cursor, @@ -54685,7 +54685,7 @@ async def index_beyond_trust_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -54696,7 +54696,7 @@ async def index_beyond_trust_get_without_preload_content( return response_data.response - def _index_beyond_trust_get_serialize( + def _index_belden_get_serialize( self, page, limit, @@ -54864,7 +54864,7 @@ def _index_beyond_trust_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/beyond-trust', + resource_path='/v3/index/belden', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -54881,7 +54881,7 @@ def _index_beyond_trust_get_serialize( @validate_call - async def index_binarly_get( + async def index_beyond_trust_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -54919,10 +54919,10 @@ async def index_binarly_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination: - """Return vulnerability data stored in index \"binarly\" + ) -> RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination: + """Return vulnerability data stored in index \"beyond-trust\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` :param page: set the page number of the response :type page: int @@ -54994,7 +54994,7 @@ async def index_binarly_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_binarly_get_serialize( + _param = self._index_beyond_trust_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55026,7 +55026,7 @@ async def index_binarly_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", '404': "str", '500': "str", } @@ -55042,7 +55042,7 @@ async def index_binarly_get( @validate_call - async def index_binarly_get_with_http_info( + async def index_beyond_trust_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55080,10 +55080,10 @@ async def index_binarly_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination]: - """Return vulnerability data stored in index \"binarly\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination]: + """Return vulnerability data stored in index \"beyond-trust\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` :param page: set the page number of the response :type page: int @@ -55155,7 +55155,7 @@ async def index_binarly_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_binarly_get_serialize( + _param = self._index_beyond_trust_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55187,7 +55187,7 @@ async def index_binarly_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", '404': "str", '500': "str", } @@ -55203,7 +55203,7 @@ async def index_binarly_get_with_http_info( @validate_call - async def index_binarly_get_without_preload_content( + async def index_beyond_trust_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55242,9 +55242,9 @@ async def index_binarly_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"binarly\" + """Return vulnerability data stored in index \"beyond-trust\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` :param page: set the page number of the response :type page: int @@ -55316,7 +55316,7 @@ async def index_binarly_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_binarly_get_serialize( + _param = self._index_beyond_trust_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55348,7 +55348,7 @@ async def index_binarly_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", '404': "str", '500': "str", } @@ -55359,7 +55359,7 @@ async def index_binarly_get_without_preload_content( return response_data.response - def _index_binarly_get_serialize( + def _index_beyond_trust_get_serialize( self, page, limit, @@ -55527,7 +55527,7 @@ def _index_binarly_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/binarly', + resource_path='/v3/index/beyond-trust', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -55544,7 +55544,7 @@ def _index_binarly_get_serialize( @validate_call - async def index_bitdefender_get( + async def index_binarly_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55582,10 +55582,10 @@ async def index_bitdefender_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination: - """Return vulnerability data stored in index \"bitdefender\" + ) -> RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination: + """Return vulnerability data stored in index \"binarly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` :param page: set the page number of the response :type page: int @@ -55657,7 +55657,7 @@ async def index_bitdefender_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bitdefender_get_serialize( + _param = self._index_binarly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55689,7 +55689,7 @@ async def index_bitdefender_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", '404': "str", '500': "str", } @@ -55705,7 +55705,7 @@ async def index_bitdefender_get( @validate_call - async def index_bitdefender_get_with_http_info( + async def index_binarly_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55743,10 +55743,10 @@ async def index_bitdefender_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination]: - """Return vulnerability data stored in index \"bitdefender\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination]: + """Return vulnerability data stored in index \"binarly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` :param page: set the page number of the response :type page: int @@ -55818,7 +55818,7 @@ async def index_bitdefender_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bitdefender_get_serialize( + _param = self._index_binarly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55850,7 +55850,7 @@ async def index_bitdefender_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", '404': "str", '500': "str", } @@ -55866,7 +55866,7 @@ async def index_bitdefender_get_with_http_info( @validate_call - async def index_bitdefender_get_without_preload_content( + async def index_binarly_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55905,9 +55905,9 @@ async def index_bitdefender_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bitdefender\" + """Return vulnerability data stored in index \"binarly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` :param page: set the page number of the response :type page: int @@ -55979,7 +55979,7 @@ async def index_bitdefender_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bitdefender_get_serialize( + _param = self._index_binarly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -56011,7 +56011,7 @@ async def index_bitdefender_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", '404': "str", '500': "str", } @@ -56022,7 +56022,7 @@ async def index_bitdefender_get_without_preload_content( return response_data.response - def _index_bitdefender_get_serialize( + def _index_binarly_get_serialize( self, page, limit, @@ -56190,7 +56190,7 @@ def _index_bitdefender_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bitdefender', + resource_path='/v3/index/binarly', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -56207,7 +56207,7 @@ def _index_bitdefender_get_serialize( @validate_call - async def index_blackberry_get( + async def index_bitdefender_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -56245,10 +56245,10 @@ async def index_blackberry_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination: - """Return vulnerability data stored in index \"blackberry\" + ) -> RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination: + """Return vulnerability data stored in index \"bitdefender\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` :param page: set the page number of the response :type page: int @@ -56320,7 +56320,7 @@ async def index_blackberry_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_blackberry_get_serialize( + _param = self._index_bitdefender_get_serialize( page=page, limit=limit, cursor=cursor, @@ -56352,7 +56352,7 @@ async def index_blackberry_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", '404': "str", '500': "str", } @@ -56368,7 +56368,7 @@ async def index_blackberry_get( @validate_call - async def index_blackberry_get_with_http_info( + async def index_bitdefender_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -56406,10 +56406,10 @@ async def index_blackberry_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination]: - """Return vulnerability data stored in index \"blackberry\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination]: + """Return vulnerability data stored in index \"bitdefender\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` :param page: set the page number of the response :type page: int @@ -56481,7 +56481,7 @@ async def index_blackberry_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_blackberry_get_serialize( + _param = self._index_bitdefender_get_serialize( page=page, limit=limit, cursor=cursor, @@ -56513,7 +56513,7 @@ async def index_blackberry_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", '404': "str", '500': "str", } @@ -56529,7 +56529,7 @@ async def index_blackberry_get_with_http_info( @validate_call - async def index_blackberry_get_without_preload_content( + async def index_bitdefender_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -56568,9 +56568,9 @@ async def index_blackberry_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"blackberry\" + """Return vulnerability data stored in index \"bitdefender\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` :param page: set the page number of the response :type page: int @@ -56642,7 +56642,7 @@ async def index_blackberry_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_blackberry_get_serialize( + _param = self._index_bitdefender_get_serialize( page=page, limit=limit, cursor=cursor, @@ -56674,7 +56674,7 @@ async def index_blackberry_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", '404': "str", '500': "str", } @@ -56685,7 +56685,7 @@ async def index_blackberry_get_without_preload_content( return response_data.response - def _index_blackberry_get_serialize( + def _index_bitdefender_get_serialize( self, page, limit, @@ -56853,7 +56853,7 @@ def _index_blackberry_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/blackberry', + resource_path='/v3/index/bitdefender', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -56870,7 +56870,7 @@ def _index_blackberry_get_serialize( @validate_call - async def index_bls_get( + async def index_blackberry_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -56908,10 +56908,10 @@ async def index_bls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination: - """Return vulnerability data stored in index \"bls\" + ) -> RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination: + """Return vulnerability data stored in index \"blackberry\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` :param page: set the page number of the response :type page: int @@ -56983,7 +56983,7 @@ async def index_bls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bls_get_serialize( + _param = self._index_blackberry_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57015,7 +57015,7 @@ async def index_bls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", '404': "str", '500': "str", } @@ -57031,7 +57031,7 @@ async def index_bls_get( @validate_call - async def index_bls_get_with_http_info( + async def index_blackberry_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57069,10 +57069,10 @@ async def index_bls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination]: - """Return vulnerability data stored in index \"bls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination]: + """Return vulnerability data stored in index \"blackberry\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` :param page: set the page number of the response :type page: int @@ -57144,7 +57144,7 @@ async def index_bls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bls_get_serialize( + _param = self._index_blackberry_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57176,7 +57176,7 @@ async def index_bls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", '404': "str", '500': "str", } @@ -57192,7 +57192,7 @@ async def index_bls_get_with_http_info( @validate_call - async def index_bls_get_without_preload_content( + async def index_blackberry_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57231,9 +57231,9 @@ async def index_bls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bls\" + """Return vulnerability data stored in index \"blackberry\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` :param page: set the page number of the response :type page: int @@ -57305,7 +57305,7 @@ async def index_bls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bls_get_serialize( + _param = self._index_blackberry_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57337,7 +57337,7 @@ async def index_bls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", '404': "str", '500': "str", } @@ -57348,7 +57348,7 @@ async def index_bls_get_without_preload_content( return response_data.response - def _index_bls_get_serialize( + def _index_blackberry_get_serialize( self, page, limit, @@ -57516,7 +57516,7 @@ def _index_bls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bls', + resource_path='/v3/index/blackberry', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -57533,7 +57533,7 @@ def _index_bls_get_serialize( @validate_call - async def index_bosch_get( + async def index_bls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57571,10 +57571,10 @@ async def index_bosch_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"bosch\" + ) -> RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination: + """Return vulnerability data stored in index \"bls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` :param page: set the page number of the response :type page: int @@ -57646,7 +57646,7 @@ async def index_bosch_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bosch_get_serialize( + _param = self._index_bls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57678,7 +57678,7 @@ async def index_bosch_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", '404': "str", '500': "str", } @@ -57694,7 +57694,7 @@ async def index_bosch_get( @validate_call - async def index_bosch_get_with_http_info( + async def index_bls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57732,10 +57732,10 @@ async def index_bosch_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"bosch\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination]: + """Return vulnerability data stored in index \"bls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` :param page: set the page number of the response :type page: int @@ -57807,7 +57807,7 @@ async def index_bosch_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bosch_get_serialize( + _param = self._index_bls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57839,7 +57839,7 @@ async def index_bosch_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", '404': "str", '500': "str", } @@ -57855,7 +57855,7 @@ async def index_bosch_get_with_http_info( @validate_call - async def index_bosch_get_without_preload_content( + async def index_bls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57894,9 +57894,9 @@ async def index_bosch_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bosch\" + """Return vulnerability data stored in index \"bls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` :param page: set the page number of the response :type page: int @@ -57968,7 +57968,7 @@ async def index_bosch_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bosch_get_serialize( + _param = self._index_bls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -58000,7 +58000,7 @@ async def index_bosch_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", '404': "str", '500': "str", } @@ -58011,7 +58011,7 @@ async def index_bosch_get_without_preload_content( return response_data.response - def _index_bosch_get_serialize( + def _index_bls_get_serialize( self, page, limit, @@ -58179,7 +58179,7 @@ def _index_bosch_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bosch', + resource_path='/v3/index/bls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -58196,7 +58196,7 @@ def _index_bosch_get_serialize( @validate_call - async def index_boston_scientific_get( + async def index_bosch_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -58234,10 +58234,10 @@ async def index_boston_scientific_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"boston-scientific\" + ) -> RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"bosch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` :param page: set the page number of the response :type page: int @@ -58309,7 +58309,7 @@ async def index_boston_scientific_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_boston_scientific_get_serialize( + _param = self._index_bosch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -58341,7 +58341,7 @@ async def index_boston_scientific_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -58357,7 +58357,7 @@ async def index_boston_scientific_get( @validate_call - async def index_boston_scientific_get_with_http_info( + async def index_bosch_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -58395,10 +58395,10 @@ async def index_boston_scientific_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"boston-scientific\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"bosch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` :param page: set the page number of the response :type page: int @@ -58470,7 +58470,7 @@ async def index_boston_scientific_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_boston_scientific_get_serialize( + _param = self._index_bosch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -58502,7 +58502,7 @@ async def index_boston_scientific_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -58518,7 +58518,7 @@ async def index_boston_scientific_get_with_http_info( @validate_call - async def index_boston_scientific_get_without_preload_content( + async def index_bosch_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -58557,9 +58557,9 @@ async def index_boston_scientific_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"boston-scientific\" + """Return vulnerability data stored in index \"bosch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` :param page: set the page number of the response :type page: int @@ -58631,7 +58631,7 @@ async def index_boston_scientific_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_boston_scientific_get_serialize( + _param = self._index_bosch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -58663,7 +58663,7 @@ async def index_boston_scientific_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -58674,7 +58674,7 @@ async def index_boston_scientific_get_without_preload_content( return response_data.response - def _index_boston_scientific_get_serialize( + def _index_bosch_get_serialize( self, page, limit, @@ -58842,7 +58842,7 @@ def _index_boston_scientific_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/boston-scientific', + resource_path='/v3/index/bosch', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -58859,7 +58859,7 @@ def _index_boston_scientific_get_serialize( @validate_call - async def index_botnets_get( + async def index_boston_scientific_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -58897,10 +58897,10 @@ async def index_botnets_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination: - """Return vulnerability data stored in index \"botnets\" + ) -> RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"boston-scientific\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` :param page: set the page number of the response :type page: int @@ -58972,7 +58972,7 @@ async def index_botnets_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_botnets_get_serialize( + _param = self._index_boston_scientific_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59004,7 +59004,7 @@ async def index_botnets_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -59020,7 +59020,7 @@ async def index_botnets_get( @validate_call - async def index_botnets_get_with_http_info( + async def index_boston_scientific_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59058,10 +59058,10 @@ async def index_botnets_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination]: - """Return vulnerability data stored in index \"botnets\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"boston-scientific\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` :param page: set the page number of the response :type page: int @@ -59133,7 +59133,7 @@ async def index_botnets_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_botnets_get_serialize( + _param = self._index_boston_scientific_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59165,7 +59165,7 @@ async def index_botnets_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -59181,7 +59181,7 @@ async def index_botnets_get_with_http_info( @validate_call - async def index_botnets_get_without_preload_content( + async def index_boston_scientific_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59220,9 +59220,9 @@ async def index_botnets_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"botnets\" + """Return vulnerability data stored in index \"boston-scientific\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` :param page: set the page number of the response :type page: int @@ -59294,7 +59294,7 @@ async def index_botnets_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_botnets_get_serialize( + _param = self._index_boston_scientific_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59326,7 +59326,7 @@ async def index_botnets_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -59337,7 +59337,7 @@ async def index_botnets_get_without_preload_content( return response_data.response - def _index_botnets_get_serialize( + def _index_boston_scientific_get_serialize( self, page, limit, @@ -59505,7 +59505,7 @@ def _index_botnets_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/botnets', + resource_path='/v3/index/boston-scientific', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -59522,7 +59522,7 @@ def _index_botnets_get_serialize( @validate_call - async def index_ca_cyber_centre_get( + async def index_botnets_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59560,10 +59560,10 @@ async def index_ca_cyber_centre_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ca-cyber-centre\" + ) -> RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination: + """Return vulnerability data stored in index \"botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` :param page: set the page number of the response :type page: int @@ -59635,7 +59635,7 @@ async def index_ca_cyber_centre_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ca_cyber_centre_get_serialize( + _param = self._index_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59667,7 +59667,7 @@ async def index_ca_cyber_centre_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", '404': "str", '500': "str", } @@ -59683,7 +59683,7 @@ async def index_ca_cyber_centre_get( @validate_call - async def index_ca_cyber_centre_get_with_http_info( + async def index_botnets_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59721,10 +59721,10 @@ async def index_ca_cyber_centre_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ca-cyber-centre\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination]: + """Return vulnerability data stored in index \"botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` :param page: set the page number of the response :type page: int @@ -59796,7 +59796,7 @@ async def index_ca_cyber_centre_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ca_cyber_centre_get_serialize( + _param = self._index_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59828,7 +59828,7 @@ async def index_ca_cyber_centre_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", '404': "str", '500': "str", } @@ -59844,7 +59844,7 @@ async def index_ca_cyber_centre_get_with_http_info( @validate_call - async def index_ca_cyber_centre_get_without_preload_content( + async def index_botnets_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59883,9 +59883,9 @@ async def index_ca_cyber_centre_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ca-cyber-centre\" + """Return vulnerability data stored in index \"botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` :param page: set the page number of the response :type page: int @@ -59957,7 +59957,7 @@ async def index_ca_cyber_centre_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ca_cyber_centre_get_serialize( + _param = self._index_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59989,7 +59989,7 @@ async def index_ca_cyber_centre_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", '404': "str", '500': "str", } @@ -60000,7 +60000,7 @@ async def index_ca_cyber_centre_get_without_preload_content( return response_data.response - def _index_ca_cyber_centre_get_serialize( + def _index_botnets_get_serialize( self, page, limit, @@ -60168,7 +60168,7 @@ def _index_ca_cyber_centre_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ca-cyber-centre', + resource_path='/v3/index/botnets', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -60185,7 +60185,7 @@ def _index_ca_cyber_centre_get_serialize( @validate_call - async def index_canvas_get( + async def index_ca_cyber_centre_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -60223,10 +60223,10 @@ async def index_canvas_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination: - """Return vulnerability data stored in index \"canvas\" + ) -> RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ca-cyber-centre\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` :param page: set the page number of the response :type page: int @@ -60298,7 +60298,7 @@ async def index_canvas_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_canvas_get_serialize( + _param = self._index_ca_cyber_centre_get_serialize( page=page, limit=limit, cursor=cursor, @@ -60330,7 +60330,7 @@ async def index_canvas_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -60346,7 +60346,7 @@ async def index_canvas_get( @validate_call - async def index_canvas_get_with_http_info( + async def index_ca_cyber_centre_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -60384,10 +60384,10 @@ async def index_canvas_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination]: - """Return vulnerability data stored in index \"canvas\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ca-cyber-centre\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` :param page: set the page number of the response :type page: int @@ -60459,7 +60459,7 @@ async def index_canvas_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_canvas_get_serialize( + _param = self._index_ca_cyber_centre_get_serialize( page=page, limit=limit, cursor=cursor, @@ -60491,7 +60491,7 @@ async def index_canvas_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -60507,7 +60507,7 @@ async def index_canvas_get_with_http_info( @validate_call - async def index_canvas_get_without_preload_content( + async def index_ca_cyber_centre_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -60546,9 +60546,9 @@ async def index_canvas_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"canvas\" + """Return vulnerability data stored in index \"ca-cyber-centre\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` :param page: set the page number of the response :type page: int @@ -60620,7 +60620,7 @@ async def index_canvas_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_canvas_get_serialize( + _param = self._index_ca_cyber_centre_get_serialize( page=page, limit=limit, cursor=cursor, @@ -60652,7 +60652,7 @@ async def index_canvas_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -60663,7 +60663,7 @@ async def index_canvas_get_without_preload_content( return response_data.response - def _index_canvas_get_serialize( + def _index_ca_cyber_centre_get_serialize( self, page, limit, @@ -60831,7 +60831,7 @@ def _index_canvas_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/canvas', + resource_path='/v3/index/ca-cyber-centre', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -60848,7 +60848,7 @@ def _index_canvas_get_serialize( @validate_call - async def index_carestream_get( + async def index_canvas_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -60886,10 +60886,10 @@ async def index_carestream_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"carestream\" + ) -> RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination: + """Return vulnerability data stored in index \"canvas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` :param page: set the page number of the response :type page: int @@ -60961,7 +60961,7 @@ async def index_carestream_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carestream_get_serialize( + _param = self._index_canvas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -60993,7 +60993,7 @@ async def index_carestream_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", '404': "str", '500': "str", } @@ -61009,7 +61009,7 @@ async def index_carestream_get( @validate_call - async def index_carestream_get_with_http_info( + async def index_canvas_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61047,10 +61047,10 @@ async def index_carestream_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"carestream\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination]: + """Return vulnerability data stored in index \"canvas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` :param page: set the page number of the response :type page: int @@ -61122,7 +61122,7 @@ async def index_carestream_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carestream_get_serialize( + _param = self._index_canvas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61154,7 +61154,7 @@ async def index_carestream_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", '404': "str", '500': "str", } @@ -61170,7 +61170,7 @@ async def index_carestream_get_with_http_info( @validate_call - async def index_carestream_get_without_preload_content( + async def index_canvas_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61209,9 +61209,9 @@ async def index_carestream_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"carestream\" + """Return vulnerability data stored in index \"canvas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` :param page: set the page number of the response :type page: int @@ -61283,7 +61283,7 @@ async def index_carestream_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carestream_get_serialize( + _param = self._index_canvas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61315,7 +61315,7 @@ async def index_carestream_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", '404': "str", '500': "str", } @@ -61326,7 +61326,7 @@ async def index_carestream_get_without_preload_content( return response_data.response - def _index_carestream_get_serialize( + def _index_canvas_get_serialize( self, page, limit, @@ -61494,7 +61494,7 @@ def _index_carestream_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/carestream', + resource_path='/v3/index/canvas', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -61511,7 +61511,7 @@ def _index_carestream_get_serialize( @validate_call - async def index_cargo_get( + async def index_carestream_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61549,10 +61549,10 @@ async def index_cargo_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"cargo\" + ) -> RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"carestream\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` :param page: set the page number of the response :type page: int @@ -61624,7 +61624,7 @@ async def index_cargo_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cargo_get_serialize( + _param = self._index_carestream_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61656,7 +61656,7 @@ async def index_cargo_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -61672,7 +61672,7 @@ async def index_cargo_get( @validate_call - async def index_cargo_get_with_http_info( + async def index_carestream_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61710,10 +61710,10 @@ async def index_cargo_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"cargo\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"carestream\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` :param page: set the page number of the response :type page: int @@ -61785,7 +61785,7 @@ async def index_cargo_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cargo_get_serialize( + _param = self._index_carestream_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61817,7 +61817,7 @@ async def index_cargo_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -61833,7 +61833,7 @@ async def index_cargo_get_with_http_info( @validate_call - async def index_cargo_get_without_preload_content( + async def index_carestream_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61872,9 +61872,9 @@ async def index_cargo_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cargo\" + """Return vulnerability data stored in index \"carestream\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` :param page: set the page number of the response :type page: int @@ -61946,7 +61946,7 @@ async def index_cargo_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cargo_get_serialize( + _param = self._index_carestream_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61978,7 +61978,7 @@ async def index_cargo_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -61989,7 +61989,7 @@ async def index_cargo_get_without_preload_content( return response_data.response - def _index_cargo_get_serialize( + def _index_carestream_get_serialize( self, page, limit, @@ -62157,7 +62157,7 @@ def _index_cargo_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cargo', + resource_path='/v3/index/carestream', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -62174,7 +62174,7 @@ def _index_cargo_get_serialize( @validate_call - async def index_carrier_get( + async def index_cargo_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -62212,10 +62212,10 @@ async def index_carrier_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination: - """Return vulnerability data stored in index \"carrier\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"cargo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` :param page: set the page number of the response :type page: int @@ -62287,7 +62287,7 @@ async def index_carrier_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carrier_get_serialize( + _param = self._index_cargo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -62319,7 +62319,7 @@ async def index_carrier_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -62335,7 +62335,7 @@ async def index_carrier_get( @validate_call - async def index_carrier_get_with_http_info( + async def index_cargo_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -62373,10 +62373,10 @@ async def index_carrier_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination]: - """Return vulnerability data stored in index \"carrier\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"cargo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` :param page: set the page number of the response :type page: int @@ -62448,7 +62448,7 @@ async def index_carrier_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carrier_get_serialize( + _param = self._index_cargo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -62480,7 +62480,7 @@ async def index_carrier_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -62496,7 +62496,7 @@ async def index_carrier_get_with_http_info( @validate_call - async def index_carrier_get_without_preload_content( + async def index_cargo_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -62535,9 +62535,9 @@ async def index_carrier_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"carrier\" + """Return vulnerability data stored in index \"cargo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` :param page: set the page number of the response :type page: int @@ -62609,7 +62609,7 @@ async def index_carrier_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carrier_get_serialize( + _param = self._index_cargo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -62641,7 +62641,7 @@ async def index_carrier_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -62652,7 +62652,7 @@ async def index_carrier_get_without_preload_content( return response_data.response - def _index_carrier_get_serialize( + def _index_cargo_get_serialize( self, page, limit, @@ -62820,7 +62820,7 @@ def _index_carrier_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/carrier', + resource_path='/v3/index/cargo', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -62837,7 +62837,7 @@ def _index_carrier_get_serialize( @validate_call - async def index_cbl_mariner_get( + async def index_carrier_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -62875,10 +62875,10 @@ async def index_cbl_mariner_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination: - """Return vulnerability data stored in index \"cbl-mariner\" + ) -> RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination: + """Return vulnerability data stored in index \"carrier\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` :param page: set the page number of the response :type page: int @@ -62950,7 +62950,7 @@ async def index_cbl_mariner_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cbl_mariner_get_serialize( + _param = self._index_carrier_get_serialize( page=page, limit=limit, cursor=cursor, @@ -62982,7 +62982,7 @@ async def index_cbl_mariner_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", '404': "str", '500': "str", } @@ -62998,7 +62998,7 @@ async def index_cbl_mariner_get( @validate_call - async def index_cbl_mariner_get_with_http_info( + async def index_carrier_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63036,10 +63036,10 @@ async def index_cbl_mariner_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination]: - """Return vulnerability data stored in index \"cbl-mariner\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination]: + """Return vulnerability data stored in index \"carrier\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` :param page: set the page number of the response :type page: int @@ -63111,7 +63111,7 @@ async def index_cbl_mariner_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cbl_mariner_get_serialize( + _param = self._index_carrier_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63143,7 +63143,7 @@ async def index_cbl_mariner_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", '404': "str", '500': "str", } @@ -63159,7 +63159,7 @@ async def index_cbl_mariner_get_with_http_info( @validate_call - async def index_cbl_mariner_get_without_preload_content( + async def index_carrier_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63198,9 +63198,9 @@ async def index_cbl_mariner_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cbl-mariner\" + """Return vulnerability data stored in index \"carrier\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` :param page: set the page number of the response :type page: int @@ -63272,7 +63272,7 @@ async def index_cbl_mariner_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cbl_mariner_get_serialize( + _param = self._index_carrier_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63304,7 +63304,7 @@ async def index_cbl_mariner_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", '404': "str", '500': "str", } @@ -63315,7 +63315,7 @@ async def index_cbl_mariner_get_without_preload_content( return response_data.response - def _index_cbl_mariner_get_serialize( + def _index_carrier_get_serialize( self, page, limit, @@ -63483,7 +63483,7 @@ def _index_cbl_mariner_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cbl-mariner', + resource_path='/v3/index/carrier', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -63500,7 +63500,7 @@ def _index_cbl_mariner_get_serialize( @validate_call - async def index_centos_get( + async def index_cbl_mariner_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63538,10 +63538,10 @@ async def index_centos_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination: - """Return vulnerability data stored in index \"centos\" + ) -> RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination: + """Return vulnerability data stored in index \"cbl-mariner\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` :param page: set the page number of the response :type page: int @@ -63613,7 +63613,7 @@ async def index_centos_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_centos_get_serialize( + _param = self._index_cbl_mariner_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63645,7 +63645,7 @@ async def index_centos_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", '404': "str", '500': "str", } @@ -63661,7 +63661,7 @@ async def index_centos_get( @validate_call - async def index_centos_get_with_http_info( + async def index_cbl_mariner_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63699,10 +63699,10 @@ async def index_centos_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination]: - """Return vulnerability data stored in index \"centos\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination]: + """Return vulnerability data stored in index \"cbl-mariner\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` :param page: set the page number of the response :type page: int @@ -63774,7 +63774,7 @@ async def index_centos_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_centos_get_serialize( + _param = self._index_cbl_mariner_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63806,7 +63806,7 @@ async def index_centos_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", '404': "str", '500': "str", } @@ -63822,7 +63822,7 @@ async def index_centos_get_with_http_info( @validate_call - async def index_centos_get_without_preload_content( + async def index_cbl_mariner_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63861,9 +63861,9 @@ async def index_centos_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"centos\" + """Return vulnerability data stored in index \"cbl-mariner\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` :param page: set the page number of the response :type page: int @@ -63935,7 +63935,7 @@ async def index_centos_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_centos_get_serialize( + _param = self._index_cbl_mariner_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63967,7 +63967,7 @@ async def index_centos_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", '404': "str", '500': "str", } @@ -63978,7 +63978,7 @@ async def index_centos_get_without_preload_content( return response_data.response - def _index_centos_get_serialize( + def _index_cbl_mariner_get_serialize( self, page, limit, @@ -64146,7 +64146,7 @@ def _index_centos_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/centos', + resource_path='/v3/index/cbl-mariner', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -64163,7 +64163,7 @@ def _index_centos_get_serialize( @validate_call - async def index_cert_be_get( + async def index_centos_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -64201,10 +64201,10 @@ async def index_cert_be_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination: - """Return vulnerability data stored in index \"cert-be\" + ) -> RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination: + """Return vulnerability data stored in index \"centos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` :param page: set the page number of the response :type page: int @@ -64276,7 +64276,7 @@ async def index_cert_be_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_be_get_serialize( + _param = self._index_centos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -64308,7 +64308,7 @@ async def index_cert_be_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", '404': "str", '500': "str", } @@ -64324,7 +64324,7 @@ async def index_cert_be_get( @validate_call - async def index_cert_be_get_with_http_info( + async def index_centos_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -64362,10 +64362,10 @@ async def index_cert_be_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination]: - """Return vulnerability data stored in index \"cert-be\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination]: + """Return vulnerability data stored in index \"centos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` :param page: set the page number of the response :type page: int @@ -64437,7 +64437,7 @@ async def index_cert_be_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_be_get_serialize( + _param = self._index_centos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -64469,7 +64469,7 @@ async def index_cert_be_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", '404': "str", '500': "str", } @@ -64485,7 +64485,7 @@ async def index_cert_be_get_with_http_info( @validate_call - async def index_cert_be_get_without_preload_content( + async def index_centos_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -64524,9 +64524,9 @@ async def index_cert_be_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-be\" + """Return vulnerability data stored in index \"centos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` :param page: set the page number of the response :type page: int @@ -64598,7 +64598,7 @@ async def index_cert_be_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_be_get_serialize( + _param = self._index_centos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -64630,7 +64630,7 @@ async def index_cert_be_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", '404': "str", '500': "str", } @@ -64641,7 +64641,7 @@ async def index_cert_be_get_without_preload_content( return response_data.response - def _index_cert_be_get_serialize( + def _index_centos_get_serialize( self, page, limit, @@ -64809,7 +64809,7 @@ def _index_cert_be_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-be', + resource_path='/v3/index/centos', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -64826,7 +64826,7 @@ def _index_cert_be_get_serialize( @validate_call - async def index_cert_in_get( + async def index_cert_be_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -64864,10 +64864,10 @@ async def index_cert_in_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination: - """Return vulnerability data stored in index \"cert-in\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination: + """Return vulnerability data stored in index \"cert-be\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` :param page: set the page number of the response :type page: int @@ -64939,7 +64939,7 @@ async def index_cert_in_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_in_get_serialize( + _param = self._index_cert_be_get_serialize( page=page, limit=limit, cursor=cursor, @@ -64971,7 +64971,7 @@ async def index_cert_in_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", '404': "str", '500': "str", } @@ -64987,7 +64987,7 @@ async def index_cert_in_get( @validate_call - async def index_cert_in_get_with_http_info( + async def index_cert_be_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65025,10 +65025,10 @@ async def index_cert_in_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination]: - """Return vulnerability data stored in index \"cert-in\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination]: + """Return vulnerability data stored in index \"cert-be\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` :param page: set the page number of the response :type page: int @@ -65100,7 +65100,7 @@ async def index_cert_in_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_in_get_serialize( + _param = self._index_cert_be_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65132,7 +65132,7 @@ async def index_cert_in_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", '404': "str", '500': "str", } @@ -65148,7 +65148,7 @@ async def index_cert_in_get_with_http_info( @validate_call - async def index_cert_in_get_without_preload_content( + async def index_cert_be_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65187,9 +65187,9 @@ async def index_cert_in_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-in\" + """Return vulnerability data stored in index \"cert-be\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` :param page: set the page number of the response :type page: int @@ -65261,7 +65261,7 @@ async def index_cert_in_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_in_get_serialize( + _param = self._index_cert_be_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65293,7 +65293,7 @@ async def index_cert_in_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", '404': "str", '500': "str", } @@ -65304,7 +65304,7 @@ async def index_cert_in_get_without_preload_content( return response_data.response - def _index_cert_in_get_serialize( + def _index_cert_be_get_serialize( self, page, limit, @@ -65472,7 +65472,7 @@ def _index_cert_in_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-in', + resource_path='/v3/index/cert-be', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -65489,7 +65489,7 @@ def _index_cert_in_get_serialize( @validate_call - async def index_cert_ir_security_alerts_get( + async def index_cert_in_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65527,10 +65527,10 @@ async def index_cert_ir_security_alerts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination: - """Return vulnerability data stored in index \"cert-ir-security-alerts\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination: + """Return vulnerability data stored in index \"cert-in\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` :param page: set the page number of the response :type page: int @@ -65602,7 +65602,7 @@ async def index_cert_ir_security_alerts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ir_security_alerts_get_serialize( + _param = self._index_cert_in_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65634,7 +65634,7 @@ async def index_cert_ir_security_alerts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", '404': "str", '500': "str", } @@ -65650,7 +65650,7 @@ async def index_cert_ir_security_alerts_get( @validate_call - async def index_cert_ir_security_alerts_get_with_http_info( + async def index_cert_in_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65688,10 +65688,10 @@ async def index_cert_ir_security_alerts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination]: - """Return vulnerability data stored in index \"cert-ir-security-alerts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination]: + """Return vulnerability data stored in index \"cert-in\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` :param page: set the page number of the response :type page: int @@ -65763,7 +65763,7 @@ async def index_cert_ir_security_alerts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ir_security_alerts_get_serialize( + _param = self._index_cert_in_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65795,7 +65795,7 @@ async def index_cert_ir_security_alerts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", '404': "str", '500': "str", } @@ -65811,7 +65811,7 @@ async def index_cert_ir_security_alerts_get_with_http_info( @validate_call - async def index_cert_ir_security_alerts_get_without_preload_content( + async def index_cert_in_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65850,9 +65850,9 @@ async def index_cert_ir_security_alerts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-ir-security-alerts\" + """Return vulnerability data stored in index \"cert-in\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` :param page: set the page number of the response :type page: int @@ -65924,7 +65924,7 @@ async def index_cert_ir_security_alerts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ir_security_alerts_get_serialize( + _param = self._index_cert_in_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65956,7 +65956,7 @@ async def index_cert_ir_security_alerts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", '404': "str", '500': "str", } @@ -65967,7 +65967,7 @@ async def index_cert_ir_security_alerts_get_without_preload_content( return response_data.response - def _index_cert_ir_security_alerts_get_serialize( + def _index_cert_in_get_serialize( self, page, limit, @@ -66135,7 +66135,7 @@ def _index_cert_ir_security_alerts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-ir-security-alerts', + resource_path='/v3/index/cert-in', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -66152,7 +66152,7 @@ def _index_cert_ir_security_alerts_get_serialize( @validate_call - async def index_cert_se_get( + async def index_cert_ir_security_alerts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -66190,10 +66190,10 @@ async def index_cert_se_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination: - """Return vulnerability data stored in index \"cert-se\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination: + """Return vulnerability data stored in index \"cert-ir-security-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -66265,7 +66265,7 @@ async def index_cert_se_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_se_get_serialize( + _param = self._index_cert_ir_security_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -66297,7 +66297,7 @@ async def index_cert_se_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", '404': "str", '500': "str", } @@ -66313,7 +66313,7 @@ async def index_cert_se_get( @validate_call - async def index_cert_se_get_with_http_info( + async def index_cert_ir_security_alerts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -66351,10 +66351,10 @@ async def index_cert_se_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination]: - """Return vulnerability data stored in index \"cert-se\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination]: + """Return vulnerability data stored in index \"cert-ir-security-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -66426,7 +66426,7 @@ async def index_cert_se_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_se_get_serialize( + _param = self._index_cert_ir_security_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -66458,7 +66458,7 @@ async def index_cert_se_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", '404': "str", '500': "str", } @@ -66474,7 +66474,7 @@ async def index_cert_se_get_with_http_info( @validate_call - async def index_cert_se_get_without_preload_content( + async def index_cert_ir_security_alerts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -66513,9 +66513,9 @@ async def index_cert_se_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-se\" + """Return vulnerability data stored in index \"cert-ir-security-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -66587,7 +66587,7 @@ async def index_cert_se_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_se_get_serialize( + _param = self._index_cert_ir_security_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -66619,7 +66619,7 @@ async def index_cert_se_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", '404': "str", '500': "str", } @@ -66630,7 +66630,7 @@ async def index_cert_se_get_without_preload_content( return response_data.response - def _index_cert_se_get_serialize( + def _index_cert_ir_security_alerts_get_serialize( self, page, limit, @@ -66798,7 +66798,7 @@ def _index_cert_se_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-se', + resource_path='/v3/index/cert-ir-security-alerts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -66815,7 +66815,7 @@ def _index_cert_se_get_serialize( @validate_call - async def index_cert_ua_get( + async def index_cert_se_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -66853,10 +66853,10 @@ async def index_cert_ua_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination: - """Return vulnerability data stored in index \"cert-ua\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination: + """Return vulnerability data stored in index \"cert-se\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` :param page: set the page number of the response :type page: int @@ -66928,7 +66928,7 @@ async def index_cert_ua_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ua_get_serialize( + _param = self._index_cert_se_get_serialize( page=page, limit=limit, cursor=cursor, @@ -66960,7 +66960,7 @@ async def index_cert_ua_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", '404': "str", '500': "str", } @@ -66976,7 +66976,7 @@ async def index_cert_ua_get( @validate_call - async def index_cert_ua_get_with_http_info( + async def index_cert_se_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67014,10 +67014,10 @@ async def index_cert_ua_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination]: - """Return vulnerability data stored in index \"cert-ua\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination]: + """Return vulnerability data stored in index \"cert-se\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` :param page: set the page number of the response :type page: int @@ -67089,7 +67089,7 @@ async def index_cert_ua_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ua_get_serialize( + _param = self._index_cert_se_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67121,7 +67121,7 @@ async def index_cert_ua_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", '404': "str", '500': "str", } @@ -67137,7 +67137,7 @@ async def index_cert_ua_get_with_http_info( @validate_call - async def index_cert_ua_get_without_preload_content( + async def index_cert_se_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67176,9 +67176,9 @@ async def index_cert_ua_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-ua\" + """Return vulnerability data stored in index \"cert-se\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` :param page: set the page number of the response :type page: int @@ -67250,7 +67250,7 @@ async def index_cert_ua_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ua_get_serialize( + _param = self._index_cert_se_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67282,7 +67282,7 @@ async def index_cert_ua_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", '404': "str", '500': "str", } @@ -67293,7 +67293,7 @@ async def index_cert_ua_get_without_preload_content( return response_data.response - def _index_cert_ua_get_serialize( + def _index_cert_se_get_serialize( self, page, limit, @@ -67461,7 +67461,7 @@ def _index_cert_ua_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-ua', + resource_path='/v3/index/cert-se', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -67478,7 +67478,7 @@ def _index_cert_ua_get_serialize( @validate_call - async def index_certeu_get( + async def index_cert_ua_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67516,10 +67516,10 @@ async def index_certeu_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"certeu\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination: + """Return vulnerability data stored in index \"cert-ua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` :param page: set the page number of the response :type page: int @@ -67591,7 +67591,7 @@ async def index_certeu_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certeu_get_serialize( + _param = self._index_cert_ua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67623,7 +67623,7 @@ async def index_certeu_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", '404': "str", '500': "str", } @@ -67639,7 +67639,7 @@ async def index_certeu_get( @validate_call - async def index_certeu_get_with_http_info( + async def index_cert_ua_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67677,10 +67677,10 @@ async def index_certeu_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"certeu\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination]: + """Return vulnerability data stored in index \"cert-ua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` :param page: set the page number of the response :type page: int @@ -67752,7 +67752,7 @@ async def index_certeu_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certeu_get_serialize( + _param = self._index_cert_ua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67784,7 +67784,7 @@ async def index_certeu_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", '404': "str", '500': "str", } @@ -67800,7 +67800,7 @@ async def index_certeu_get_with_http_info( @validate_call - async def index_certeu_get_without_preload_content( + async def index_cert_ua_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67839,9 +67839,9 @@ async def index_certeu_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"certeu\" + """Return vulnerability data stored in index \"cert-ua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` :param page: set the page number of the response :type page: int @@ -67913,7 +67913,7 @@ async def index_certeu_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certeu_get_serialize( + _param = self._index_cert_ua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67945,7 +67945,7 @@ async def index_certeu_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", '404': "str", '500': "str", } @@ -67956,7 +67956,7 @@ async def index_certeu_get_without_preload_content( return response_data.response - def _index_certeu_get_serialize( + def _index_cert_ua_get_serialize( self, page, limit, @@ -68124,7 +68124,7 @@ def _index_certeu_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/certeu', + resource_path='/v3/index/cert-ua', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -68141,7 +68141,7 @@ def _index_certeu_get_serialize( @validate_call - async def index_certfr_get( + async def index_certeu_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -68179,10 +68179,10 @@ async def index_certfr_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"certfr\" + ) -> RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"certeu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` :param page: set the page number of the response :type page: int @@ -68254,7 +68254,7 @@ async def index_certfr_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certfr_get_serialize( + _param = self._index_certeu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -68286,7 +68286,7 @@ async def index_certfr_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -68302,7 +68302,7 @@ async def index_certfr_get( @validate_call - async def index_certfr_get_with_http_info( + async def index_certeu_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -68340,10 +68340,10 @@ async def index_certfr_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"certfr\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"certeu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` :param page: set the page number of the response :type page: int @@ -68415,7 +68415,7 @@ async def index_certfr_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certfr_get_serialize( + _param = self._index_certeu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -68447,7 +68447,7 @@ async def index_certfr_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -68463,7 +68463,7 @@ async def index_certfr_get_with_http_info( @validate_call - async def index_certfr_get_without_preload_content( + async def index_certeu_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -68502,9 +68502,9 @@ async def index_certfr_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"certfr\" + """Return vulnerability data stored in index \"certeu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` :param page: set the page number of the response :type page: int @@ -68576,7 +68576,7 @@ async def index_certfr_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certfr_get_serialize( + _param = self._index_certeu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -68608,7 +68608,7 @@ async def index_certfr_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -68619,7 +68619,7 @@ async def index_certfr_get_without_preload_content( return response_data.response - def _index_certfr_get_serialize( + def _index_certeu_get_serialize( self, page, limit, @@ -68787,7 +68787,7 @@ def _index_certfr_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/certfr', + resource_path='/v3/index/certeu', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -68804,7 +68804,7 @@ def _index_certfr_get_serialize( @validate_call - async def index_chainguard_get( + async def index_certfr_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -68842,10 +68842,10 @@ async def index_chainguard_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination: - """Return vulnerability data stored in index \"chainguard\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"certfr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` :param page: set the page number of the response :type page: int @@ -68917,7 +68917,7 @@ async def index_chainguard_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chainguard_get_serialize( + _param = self._index_certfr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -68949,7 +68949,7 @@ async def index_chainguard_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -68965,7 +68965,7 @@ async def index_chainguard_get( @validate_call - async def index_chainguard_get_with_http_info( + async def index_certfr_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69003,10 +69003,10 @@ async def index_chainguard_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination]: - """Return vulnerability data stored in index \"chainguard\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"certfr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` :param page: set the page number of the response :type page: int @@ -69078,7 +69078,7 @@ async def index_chainguard_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chainguard_get_serialize( + _param = self._index_certfr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69110,7 +69110,7 @@ async def index_chainguard_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -69126,7 +69126,7 @@ async def index_chainguard_get_with_http_info( @validate_call - async def index_chainguard_get_without_preload_content( + async def index_certfr_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69165,9 +69165,9 @@ async def index_chainguard_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"chainguard\" + """Return vulnerability data stored in index \"certfr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` :param page: set the page number of the response :type page: int @@ -69239,7 +69239,7 @@ async def index_chainguard_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chainguard_get_serialize( + _param = self._index_certfr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69271,7 +69271,7 @@ async def index_chainguard_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -69282,7 +69282,7 @@ async def index_chainguard_get_without_preload_content( return response_data.response - def _index_chainguard_get_serialize( + def _index_certfr_get_serialize( self, page, limit, @@ -69450,7 +69450,7 @@ def _index_chainguard_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/chainguard', + resource_path='/v3/index/certfr', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -69467,7 +69467,7 @@ def _index_chainguard_get_serialize( @validate_call - async def index_checkpoint_get( + async def index_chainguard_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69505,10 +69505,10 @@ async def index_checkpoint_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination: - """Return vulnerability data stored in index \"checkpoint\" + ) -> RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination: + """Return vulnerability data stored in index \"chainguard\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` :param page: set the page number of the response :type page: int @@ -69580,7 +69580,7 @@ async def index_checkpoint_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_checkpoint_get_serialize( + _param = self._index_chainguard_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69612,7 +69612,7 @@ async def index_checkpoint_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", '404': "str", '500': "str", } @@ -69628,7 +69628,7 @@ async def index_checkpoint_get( @validate_call - async def index_checkpoint_get_with_http_info( + async def index_chainguard_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69666,10 +69666,10 @@ async def index_checkpoint_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination]: - """Return vulnerability data stored in index \"checkpoint\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination]: + """Return vulnerability data stored in index \"chainguard\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` :param page: set the page number of the response :type page: int @@ -69741,7 +69741,7 @@ async def index_checkpoint_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_checkpoint_get_serialize( + _param = self._index_chainguard_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69773,7 +69773,7 @@ async def index_checkpoint_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", '404': "str", '500': "str", } @@ -69789,7 +69789,7 @@ async def index_checkpoint_get_with_http_info( @validate_call - async def index_checkpoint_get_without_preload_content( + async def index_chainguard_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69828,9 +69828,9 @@ async def index_checkpoint_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"checkpoint\" + """Return vulnerability data stored in index \"chainguard\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` :param page: set the page number of the response :type page: int @@ -69902,7 +69902,7 @@ async def index_checkpoint_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_checkpoint_get_serialize( + _param = self._index_chainguard_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69934,7 +69934,7 @@ async def index_checkpoint_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", '404': "str", '500': "str", } @@ -69945,7 +69945,7 @@ async def index_checkpoint_get_without_preload_content( return response_data.response - def _index_checkpoint_get_serialize( + def _index_chainguard_get_serialize( self, page, limit, @@ -70113,7 +70113,7 @@ def _index_checkpoint_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/checkpoint', + resource_path='/v3/index/chainguard', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -70130,7 +70130,7 @@ def _index_checkpoint_get_serialize( @validate_call - async def index_chrome_get( + async def index_checkpoint_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70168,10 +70168,10 @@ async def index_chrome_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination: - """Return vulnerability data stored in index \"chrome\" + ) -> RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination: + """Return vulnerability data stored in index \"checkpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` :param page: set the page number of the response :type page: int @@ -70243,7 +70243,7 @@ async def index_chrome_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chrome_get_serialize( + _param = self._index_checkpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -70275,7 +70275,7 @@ async def index_chrome_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", '404': "str", '500': "str", } @@ -70291,7 +70291,7 @@ async def index_chrome_get( @validate_call - async def index_chrome_get_with_http_info( + async def index_checkpoint_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70329,10 +70329,10 @@ async def index_chrome_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination]: - """Return vulnerability data stored in index \"chrome\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination]: + """Return vulnerability data stored in index \"checkpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` :param page: set the page number of the response :type page: int @@ -70404,7 +70404,7 @@ async def index_chrome_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chrome_get_serialize( + _param = self._index_checkpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -70436,7 +70436,7 @@ async def index_chrome_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", '404': "str", '500': "str", } @@ -70452,7 +70452,7 @@ async def index_chrome_get_with_http_info( @validate_call - async def index_chrome_get_without_preload_content( + async def index_checkpoint_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70491,9 +70491,9 @@ async def index_chrome_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"chrome\" + """Return vulnerability data stored in index \"checkpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` :param page: set the page number of the response :type page: int @@ -70565,7 +70565,7 @@ async def index_chrome_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chrome_get_serialize( + _param = self._index_checkpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -70597,7 +70597,7 @@ async def index_chrome_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", '404': "str", '500': "str", } @@ -70608,7 +70608,7 @@ async def index_chrome_get_without_preload_content( return response_data.response - def _index_chrome_get_serialize( + def _index_checkpoint_get_serialize( self, page, limit, @@ -70776,7 +70776,7 @@ def _index_chrome_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/chrome', + resource_path='/v3/index/checkpoint', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -70793,7 +70793,7 @@ def _index_chrome_get_serialize( @validate_call - async def index_ciena_get( + async def index_chrome_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70831,10 +70831,10 @@ async def index_ciena_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination: - """Return vulnerability data stored in index \"ciena\" + ) -> RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination: + """Return vulnerability data stored in index \"chrome\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` :param page: set the page number of the response :type page: int @@ -70906,7 +70906,7 @@ async def index_ciena_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ciena_get_serialize( + _param = self._index_chrome_get_serialize( page=page, limit=limit, cursor=cursor, @@ -70938,7 +70938,7 @@ async def index_ciena_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", '404': "str", '500': "str", } @@ -70954,7 +70954,7 @@ async def index_ciena_get( @validate_call - async def index_ciena_get_with_http_info( + async def index_chrome_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70992,10 +70992,10 @@ async def index_ciena_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination]: - """Return vulnerability data stored in index \"ciena\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination]: + """Return vulnerability data stored in index \"chrome\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` :param page: set the page number of the response :type page: int @@ -71067,7 +71067,7 @@ async def index_ciena_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ciena_get_serialize( + _param = self._index_chrome_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71099,7 +71099,7 @@ async def index_ciena_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", '404': "str", '500': "str", } @@ -71115,7 +71115,7 @@ async def index_ciena_get_with_http_info( @validate_call - async def index_ciena_get_without_preload_content( + async def index_chrome_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -71154,9 +71154,9 @@ async def index_ciena_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ciena\" + """Return vulnerability data stored in index \"chrome\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` :param page: set the page number of the response :type page: int @@ -71228,7 +71228,7 @@ async def index_ciena_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ciena_get_serialize( + _param = self._index_chrome_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71260,7 +71260,7 @@ async def index_ciena_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", '404': "str", '500': "str", } @@ -71271,7 +71271,7 @@ async def index_ciena_get_without_preload_content( return response_data.response - def _index_ciena_get_serialize( + def _index_chrome_get_serialize( self, page, limit, @@ -71439,7 +71439,7 @@ def _index_ciena_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ciena', + resource_path='/v3/index/chrome', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -71456,7 +71456,7 @@ def _index_ciena_get_serialize( @validate_call - async def index_circl_get( + async def index_ciena_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -71494,10 +71494,10 @@ async def index_circl_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"circl\" + ) -> RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination: + """Return vulnerability data stored in index \"ciena\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` :param page: set the page number of the response :type page: int @@ -71569,7 +71569,7 @@ async def index_circl_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_circl_get_serialize( + _param = self._index_ciena_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71601,7 +71601,7 @@ async def index_circl_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", '404': "str", '500': "str", } @@ -71617,7 +71617,7 @@ async def index_circl_get( @validate_call - async def index_circl_get_with_http_info( + async def index_ciena_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -71655,10 +71655,10 @@ async def index_circl_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"circl\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination]: + """Return vulnerability data stored in index \"ciena\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` :param page: set the page number of the response :type page: int @@ -71730,7 +71730,7 @@ async def index_circl_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_circl_get_serialize( + _param = self._index_ciena_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71762,7 +71762,7 @@ async def index_circl_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", '404': "str", '500': "str", } @@ -71778,7 +71778,7 @@ async def index_circl_get_with_http_info( @validate_call - async def index_circl_get_without_preload_content( + async def index_ciena_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -71817,9 +71817,9 @@ async def index_circl_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"circl\" + """Return vulnerability data stored in index \"ciena\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` :param page: set the page number of the response :type page: int @@ -71891,7 +71891,7 @@ async def index_circl_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_circl_get_serialize( + _param = self._index_ciena_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71923,7 +71923,7 @@ async def index_circl_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", '404': "str", '500': "str", } @@ -71934,7 +71934,7 @@ async def index_circl_get_without_preload_content( return response_data.response - def _index_circl_get_serialize( + def _index_ciena_get_serialize( self, page, limit, @@ -72102,7 +72102,7 @@ def _index_circl_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/circl', + resource_path='/v3/index/ciena', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -72119,7 +72119,7 @@ def _index_circl_get_serialize( @validate_call - async def index_cisa_alerts_get( + async def index_circl_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72157,10 +72157,10 @@ async def index_cisa_alerts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination: - """Return vulnerability data stored in index \"cisa-alerts\" + ) -> RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"circl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` :param page: set the page number of the response :type page: int @@ -72232,7 +72232,7 @@ async def index_cisa_alerts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_alerts_get_serialize( + _param = self._index_circl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -72264,7 +72264,7 @@ async def index_cisa_alerts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -72280,7 +72280,7 @@ async def index_cisa_alerts_get( @validate_call - async def index_cisa_alerts_get_with_http_info( + async def index_circl_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72318,10 +72318,10 @@ async def index_cisa_alerts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination]: - """Return vulnerability data stored in index \"cisa-alerts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"circl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` :param page: set the page number of the response :type page: int @@ -72393,7 +72393,7 @@ async def index_cisa_alerts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_alerts_get_serialize( + _param = self._index_circl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -72425,7 +72425,7 @@ async def index_cisa_alerts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -72441,7 +72441,7 @@ async def index_cisa_alerts_get_with_http_info( @validate_call - async def index_cisa_alerts_get_without_preload_content( + async def index_circl_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72480,9 +72480,9 @@ async def index_cisa_alerts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisa-alerts\" + """Return vulnerability data stored in index \"circl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` :param page: set the page number of the response :type page: int @@ -72554,7 +72554,7 @@ async def index_cisa_alerts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_alerts_get_serialize( + _param = self._index_circl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -72586,7 +72586,7 @@ async def index_cisa_alerts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -72597,7 +72597,7 @@ async def index_cisa_alerts_get_without_preload_content( return response_data.response - def _index_cisa_alerts_get_serialize( + def _index_circl_get_serialize( self, page, limit, @@ -72765,7 +72765,7 @@ def _index_cisa_alerts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisa-alerts', + resource_path='/v3/index/circl', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -72782,7 +72782,7 @@ def _index_cisa_alerts_get_serialize( @validate_call - async def index_cisa_csaf_get( + async def index_cisa_alerts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72820,10 +72820,10 @@ async def index_cisa_csaf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination: - """Return vulnerability data stored in index \"cisa-csaf\" + ) -> RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination: + """Return vulnerability data stored in index \"cisa-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -72895,7 +72895,7 @@ async def index_cisa_csaf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_csaf_get_serialize( + _param = self._index_cisa_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -72927,7 +72927,7 @@ async def index_cisa_csaf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", '404': "str", '500': "str", } @@ -72943,7 +72943,7 @@ async def index_cisa_csaf_get( @validate_call - async def index_cisa_csaf_get_with_http_info( + async def index_cisa_alerts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72981,10 +72981,10 @@ async def index_cisa_csaf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination]: - """Return vulnerability data stored in index \"cisa-csaf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination]: + """Return vulnerability data stored in index \"cisa-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -73056,7 +73056,7 @@ async def index_cisa_csaf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_csaf_get_serialize( + _param = self._index_cisa_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73088,7 +73088,7 @@ async def index_cisa_csaf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", '404': "str", '500': "str", } @@ -73104,7 +73104,7 @@ async def index_cisa_csaf_get_with_http_info( @validate_call - async def index_cisa_csaf_get_without_preload_content( + async def index_cisa_alerts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -73143,9 +73143,9 @@ async def index_cisa_csaf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisa-csaf\" + """Return vulnerability data stored in index \"cisa-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -73217,7 +73217,7 @@ async def index_cisa_csaf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_csaf_get_serialize( + _param = self._index_cisa_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73249,7 +73249,7 @@ async def index_cisa_csaf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", '404': "str", '500': "str", } @@ -73260,7 +73260,7 @@ async def index_cisa_csaf_get_without_preload_content( return response_data.response - def _index_cisa_csaf_get_serialize( + def _index_cisa_alerts_get_serialize( self, page, limit, @@ -73428,7 +73428,7 @@ def _index_cisa_csaf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisa-csaf', + resource_path='/v3/index/cisa-alerts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -73445,7 +73445,7 @@ def _index_cisa_csaf_get_serialize( @validate_call - async def index_cisa_kev_get( + async def index_cisa_csaf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -73483,10 +73483,10 @@ async def index_cisa_kev_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination: - """Return vulnerability data stored in index \"cisa-kev\" + ) -> RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination: + """Return vulnerability data stored in index \"cisa-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -73558,7 +73558,7 @@ async def index_cisa_kev_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_kev_get_serialize( + _param = self._index_cisa_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73590,7 +73590,7 @@ async def index_cisa_kev_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", '404': "str", '500': "str", } @@ -73606,7 +73606,7 @@ async def index_cisa_kev_get( @validate_call - async def index_cisa_kev_get_with_http_info( + async def index_cisa_csaf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -73644,10 +73644,10 @@ async def index_cisa_kev_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination]: - """Return vulnerability data stored in index \"cisa-kev\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination]: + """Return vulnerability data stored in index \"cisa-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -73719,7 +73719,7 @@ async def index_cisa_kev_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_kev_get_serialize( + _param = self._index_cisa_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73751,7 +73751,7 @@ async def index_cisa_kev_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", '404': "str", '500': "str", } @@ -73767,7 +73767,7 @@ async def index_cisa_kev_get_with_http_info( @validate_call - async def index_cisa_kev_get_without_preload_content( + async def index_cisa_csaf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -73806,9 +73806,9 @@ async def index_cisa_kev_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisa-kev\" + """Return vulnerability data stored in index \"cisa-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -73880,7 +73880,7 @@ async def index_cisa_kev_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_kev_get_serialize( + _param = self._index_cisa_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73912,7 +73912,7 @@ async def index_cisa_kev_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", '404': "str", '500': "str", } @@ -73923,7 +73923,7 @@ async def index_cisa_kev_get_without_preload_content( return response_data.response - def _index_cisa_kev_get_serialize( + def _index_cisa_csaf_get_serialize( self, page, limit, @@ -74091,7 +74091,7 @@ def _index_cisa_kev_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisa-kev', + resource_path='/v3/index/cisa-csaf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -74108,7 +74108,7 @@ def _index_cisa_kev_get_serialize( @validate_call - async def index_cisco_csaf_get( + async def index_cisa_kev_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74146,10 +74146,10 @@ async def index_cisco_csaf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination: - """Return vulnerability data stored in index \"cisco-csaf\" + ) -> RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination: + """Return vulnerability data stored in index \"cisa-kev\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` :param page: set the page number of the response :type page: int @@ -74221,7 +74221,7 @@ async def index_cisco_csaf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_csaf_get_serialize( + _param = self._index_cisa_kev_get_serialize( page=page, limit=limit, cursor=cursor, @@ -74253,7 +74253,7 @@ async def index_cisco_csaf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -74269,7 +74269,7 @@ async def index_cisco_csaf_get( @validate_call - async def index_cisco_csaf_get_with_http_info( + async def index_cisa_kev_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74307,10 +74307,10 @@ async def index_cisco_csaf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination]: - """Return vulnerability data stored in index \"cisco-csaf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination]: + """Return vulnerability data stored in index \"cisa-kev\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` :param page: set the page number of the response :type page: int @@ -74382,7 +74382,7 @@ async def index_cisco_csaf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_csaf_get_serialize( + _param = self._index_cisa_kev_get_serialize( page=page, limit=limit, cursor=cursor, @@ -74414,7 +74414,7 @@ async def index_cisco_csaf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -74430,7 +74430,7 @@ async def index_cisco_csaf_get_with_http_info( @validate_call - async def index_cisco_csaf_get_without_preload_content( + async def index_cisa_kev_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74469,9 +74469,9 @@ async def index_cisco_csaf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisco-csaf\" + """Return vulnerability data stored in index \"cisa-kev\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` :param page: set the page number of the response :type page: int @@ -74543,7 +74543,7 @@ async def index_cisco_csaf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_csaf_get_serialize( + _param = self._index_cisa_kev_get_serialize( page=page, limit=limit, cursor=cursor, @@ -74575,7 +74575,7 @@ async def index_cisco_csaf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -74586,7 +74586,7 @@ async def index_cisco_csaf_get_without_preload_content( return response_data.response - def _index_cisco_csaf_get_serialize( + def _index_cisa_kev_get_serialize( self, page, limit, @@ -74754,7 +74754,7 @@ def _index_cisco_csaf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisco-csaf', + resource_path='/v3/index/cisa-kev', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -74771,7 +74771,7 @@ def _index_cisco_csaf_get_serialize( @validate_call - async def index_cisco_get( + async def index_cisco_csaf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74809,10 +74809,10 @@ async def index_cisco_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"cisco\" + ) -> RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination: + """Return vulnerability data stored in index \"cisco-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -74884,7 +74884,7 @@ async def index_cisco_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_get_serialize( + _param = self._index_cisco_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -74916,7 +74916,7 @@ async def index_cisco_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", '404': "str", '500': "str", } @@ -74932,7 +74932,7 @@ async def index_cisco_get( @validate_call - async def index_cisco_get_with_http_info( + async def index_cisco_csaf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74970,10 +74970,10 @@ async def index_cisco_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"cisco\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination]: + """Return vulnerability data stored in index \"cisco-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -75045,7 +75045,7 @@ async def index_cisco_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_get_serialize( + _param = self._index_cisco_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75077,7 +75077,7 @@ async def index_cisco_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", '404': "str", '500': "str", } @@ -75093,7 +75093,7 @@ async def index_cisco_get_with_http_info( @validate_call - async def index_cisco_get_without_preload_content( + async def index_cisco_csaf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -75132,9 +75132,9 @@ async def index_cisco_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisco\" + """Return vulnerability data stored in index \"cisco-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -75206,7 +75206,7 @@ async def index_cisco_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_get_serialize( + _param = self._index_cisco_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75238,7 +75238,7 @@ async def index_cisco_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", '404': "str", '500': "str", } @@ -75249,7 +75249,7 @@ async def index_cisco_get_without_preload_content( return response_data.response - def _index_cisco_get_serialize( + def _index_cisco_csaf_get_serialize( self, page, limit, @@ -75417,7 +75417,7 @@ def _index_cisco_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisco', + resource_path='/v3/index/cisco-csaf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -75434,7 +75434,7 @@ def _index_cisco_get_serialize( @validate_call - async def index_cisco_known_good_values_get( + async def index_cisco_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -75472,10 +75472,10 @@ async def index_cisco_known_good_values_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination: - """Return vulnerability data stored in index \"cisco-known-good-values\" + ) -> RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"cisco\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` :param page: set the page number of the response :type page: int @@ -75547,7 +75547,7 @@ async def index_cisco_known_good_values_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_known_good_values_get_serialize( + _param = self._index_cisco_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75579,7 +75579,7 @@ async def index_cisco_known_good_values_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -75595,7 +75595,7 @@ async def index_cisco_known_good_values_get( @validate_call - async def index_cisco_known_good_values_get_with_http_info( + async def index_cisco_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -75633,10 +75633,10 @@ async def index_cisco_known_good_values_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination]: - """Return vulnerability data stored in index \"cisco-known-good-values\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"cisco\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` :param page: set the page number of the response :type page: int @@ -75708,7 +75708,7 @@ async def index_cisco_known_good_values_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_known_good_values_get_serialize( + _param = self._index_cisco_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75740,7 +75740,7 @@ async def index_cisco_known_good_values_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -75756,7 +75756,7 @@ async def index_cisco_known_good_values_get_with_http_info( @validate_call - async def index_cisco_known_good_values_get_without_preload_content( + async def index_cisco_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -75795,9 +75795,9 @@ async def index_cisco_known_good_values_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisco-known-good-values\" + """Return vulnerability data stored in index \"cisco\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` :param page: set the page number of the response :type page: int @@ -75869,7 +75869,7 @@ async def index_cisco_known_good_values_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_known_good_values_get_serialize( + _param = self._index_cisco_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75901,7 +75901,7 @@ async def index_cisco_known_good_values_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -75912,7 +75912,7 @@ async def index_cisco_known_good_values_get_without_preload_content( return response_data.response - def _index_cisco_known_good_values_get_serialize( + def _index_cisco_get_serialize( self, page, limit, @@ -76080,7 +76080,7 @@ def _index_cisco_known_good_values_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisco-known-good-values', + resource_path='/v3/index/cisco', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -76097,7 +76097,7 @@ def _index_cisco_known_good_values_get_serialize( @validate_call - async def index_cisco_talos_get( + async def index_cisco_known_good_values_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76135,10 +76135,10 @@ async def index_cisco_talos_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"cisco-talos\" + ) -> RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination: + """Return vulnerability data stored in index \"cisco-known-good-values\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` :param page: set the page number of the response :type page: int @@ -76210,7 +76210,7 @@ async def index_cisco_talos_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_talos_get_serialize( + _param = self._index_cisco_known_good_values_get_serialize( page=page, limit=limit, cursor=cursor, @@ -76242,7 +76242,7 @@ async def index_cisco_talos_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", '404': "str", '500': "str", } @@ -76258,7 +76258,7 @@ async def index_cisco_talos_get( @validate_call - async def index_cisco_talos_get_with_http_info( + async def index_cisco_known_good_values_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76296,10 +76296,10 @@ async def index_cisco_talos_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"cisco-talos\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination]: + """Return vulnerability data stored in index \"cisco-known-good-values\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` :param page: set the page number of the response :type page: int @@ -76371,7 +76371,7 @@ async def index_cisco_talos_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_talos_get_serialize( + _param = self._index_cisco_known_good_values_get_serialize( page=page, limit=limit, cursor=cursor, @@ -76403,7 +76403,7 @@ async def index_cisco_talos_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", '404': "str", '500': "str", } @@ -76419,7 +76419,7 @@ async def index_cisco_talos_get_with_http_info( @validate_call - async def index_cisco_talos_get_without_preload_content( + async def index_cisco_known_good_values_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76458,9 +76458,9 @@ async def index_cisco_talos_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisco-talos\" + """Return vulnerability data stored in index \"cisco-known-good-values\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` :param page: set the page number of the response :type page: int @@ -76532,7 +76532,7 @@ async def index_cisco_talos_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_talos_get_serialize( + _param = self._index_cisco_known_good_values_get_serialize( page=page, limit=limit, cursor=cursor, @@ -76564,7 +76564,7 @@ async def index_cisco_talos_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", '404': "str", '500': "str", } @@ -76575,7 +76575,7 @@ async def index_cisco_talos_get_without_preload_content( return response_data.response - def _index_cisco_talos_get_serialize( + def _index_cisco_known_good_values_get_serialize( self, page, limit, @@ -76743,7 +76743,7 @@ def _index_cisco_talos_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisco-talos', + resource_path='/v3/index/cisco-known-good-values', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -76760,7 +76760,7 @@ def _index_cisco_talos_get_serialize( @validate_call - async def index_citrix_get( + async def index_cisco_talos_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76798,10 +76798,10 @@ async def index_citrix_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"citrix\" + ) -> RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"cisco-talos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` :param page: set the page number of the response :type page: int @@ -76873,7 +76873,7 @@ async def index_citrix_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_citrix_get_serialize( + _param = self._index_cisco_talos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -76905,7 +76905,7 @@ async def index_citrix_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -76921,7 +76921,7 @@ async def index_citrix_get( @validate_call - async def index_citrix_get_with_http_info( + async def index_cisco_talos_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76959,10 +76959,10 @@ async def index_citrix_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"citrix\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"cisco-talos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` :param page: set the page number of the response :type page: int @@ -77034,7 +77034,7 @@ async def index_citrix_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_citrix_get_serialize( + _param = self._index_cisco_talos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77066,7 +77066,7 @@ async def index_citrix_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77082,7 +77082,7 @@ async def index_citrix_get_with_http_info( @validate_call - async def index_citrix_get_without_preload_content( + async def index_cisco_talos_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -77121,9 +77121,9 @@ async def index_citrix_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"citrix\" + """Return vulnerability data stored in index \"cisco-talos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` :param page: set the page number of the response :type page: int @@ -77195,7 +77195,7 @@ async def index_citrix_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_citrix_get_serialize( + _param = self._index_cisco_talos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77227,7 +77227,7 @@ async def index_citrix_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77238,7 +77238,7 @@ async def index_citrix_get_without_preload_content( return response_data.response - def _index_citrix_get_serialize( + def _index_cisco_talos_get_serialize( self, page, limit, @@ -77406,7 +77406,7 @@ def _index_citrix_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/citrix', + resource_path='/v3/index/cisco-talos', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -77423,7 +77423,7 @@ def _index_citrix_get_serialize( @validate_call - async def index_claroty_get( + async def index_citrix_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -77461,10 +77461,10 @@ async def index_claroty_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination: - """Return vulnerability data stored in index \"claroty\" + ) -> RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"citrix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` :param page: set the page number of the response :type page: int @@ -77536,7 +77536,7 @@ async def index_claroty_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_claroty_get_serialize( + _param = self._index_citrix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77568,7 +77568,7 @@ async def index_claroty_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77584,7 +77584,7 @@ async def index_claroty_get( @validate_call - async def index_claroty_get_with_http_info( + async def index_citrix_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -77622,10 +77622,10 @@ async def index_claroty_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination]: - """Return vulnerability data stored in index \"claroty\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"citrix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` :param page: set the page number of the response :type page: int @@ -77697,7 +77697,7 @@ async def index_claroty_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_claroty_get_serialize( + _param = self._index_citrix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77729,7 +77729,7 @@ async def index_claroty_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77745,7 +77745,7 @@ async def index_claroty_get_with_http_info( @validate_call - async def index_claroty_get_without_preload_content( + async def index_citrix_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -77784,9 +77784,9 @@ async def index_claroty_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"claroty\" + """Return vulnerability data stored in index \"citrix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` :param page: set the page number of the response :type page: int @@ -77858,7 +77858,7 @@ async def index_claroty_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_claroty_get_serialize( + _param = self._index_citrix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77890,7 +77890,7 @@ async def index_claroty_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77901,7 +77901,7 @@ async def index_claroty_get_without_preload_content( return response_data.response - def _index_claroty_get_serialize( + def _index_citrix_get_serialize( self, page, limit, @@ -78069,7 +78069,7 @@ def _index_claroty_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/claroty', + resource_path='/v3/index/citrix', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -78086,7 +78086,7 @@ def _index_claroty_get_serialize( @validate_call - async def index_cloudbees_get( + async def index_claroty_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78124,10 +78124,10 @@ async def index_cloudbees_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination: - """Return vulnerability data stored in index \"cloudbees\" + ) -> RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination: + """Return vulnerability data stored in index \"claroty\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` :param page: set the page number of the response :type page: int @@ -78199,7 +78199,7 @@ async def index_cloudbees_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudbees_get_serialize( + _param = self._index_claroty_get_serialize( page=page, limit=limit, cursor=cursor, @@ -78231,7 +78231,7 @@ async def index_cloudbees_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -78247,7 +78247,7 @@ async def index_cloudbees_get( @validate_call - async def index_cloudbees_get_with_http_info( + async def index_claroty_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78285,10 +78285,10 @@ async def index_cloudbees_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination]: - """Return vulnerability data stored in index \"cloudbees\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination]: + """Return vulnerability data stored in index \"claroty\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` :param page: set the page number of the response :type page: int @@ -78360,7 +78360,7 @@ async def index_cloudbees_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudbees_get_serialize( + _param = self._index_claroty_get_serialize( page=page, limit=limit, cursor=cursor, @@ -78392,7 +78392,7 @@ async def index_cloudbees_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -78408,7 +78408,7 @@ async def index_cloudbees_get_with_http_info( @validate_call - async def index_cloudbees_get_without_preload_content( + async def index_claroty_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78447,9 +78447,9 @@ async def index_cloudbees_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cloudbees\" + """Return vulnerability data stored in index \"claroty\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` :param page: set the page number of the response :type page: int @@ -78521,7 +78521,7 @@ async def index_cloudbees_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudbees_get_serialize( + _param = self._index_claroty_get_serialize( page=page, limit=limit, cursor=cursor, @@ -78553,7 +78553,7 @@ async def index_cloudbees_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -78564,7 +78564,7 @@ async def index_cloudbees_get_without_preload_content( return response_data.response - def _index_cloudbees_get_serialize( + def _index_claroty_get_serialize( self, page, limit, @@ -78732,7 +78732,7 @@ def _index_cloudbees_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cloudbees', + resource_path='/v3/index/claroty', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -78749,7 +78749,7 @@ def _index_cloudbees_get_serialize( @validate_call - async def index_cloudvulndb_get( + async def index_cloudbees_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78787,10 +78787,10 @@ async def index_cloudvulndb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"cloudvulndb\" + ) -> RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination: + """Return vulnerability data stored in index \"cloudbees\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` :param page: set the page number of the response :type page: int @@ -78862,7 +78862,7 @@ async def index_cloudvulndb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudvulndb_get_serialize( + _param = self._index_cloudbees_get_serialize( page=page, limit=limit, cursor=cursor, @@ -78894,7 +78894,7 @@ async def index_cloudvulndb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", '404': "str", '500': "str", } @@ -78910,7 +78910,7 @@ async def index_cloudvulndb_get( @validate_call - async def index_cloudvulndb_get_with_http_info( + async def index_cloudbees_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78948,10 +78948,10 @@ async def index_cloudvulndb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"cloudvulndb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination]: + """Return vulnerability data stored in index \"cloudbees\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` :param page: set the page number of the response :type page: int @@ -79023,7 +79023,7 @@ async def index_cloudvulndb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudvulndb_get_serialize( + _param = self._index_cloudbees_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79055,7 +79055,7 @@ async def index_cloudvulndb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", '404': "str", '500': "str", } @@ -79071,7 +79071,7 @@ async def index_cloudvulndb_get_with_http_info( @validate_call - async def index_cloudvulndb_get_without_preload_content( + async def index_cloudbees_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -79110,9 +79110,9 @@ async def index_cloudvulndb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cloudvulndb\" + """Return vulnerability data stored in index \"cloudbees\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` :param page: set the page number of the response :type page: int @@ -79184,7 +79184,7 @@ async def index_cloudvulndb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudvulndb_get_serialize( + _param = self._index_cloudbees_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79216,7 +79216,7 @@ async def index_cloudvulndb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", '404': "str", '500': "str", } @@ -79227,7 +79227,7 @@ async def index_cloudvulndb_get_without_preload_content( return response_data.response - def _index_cloudvulndb_get_serialize( + def _index_cloudbees_get_serialize( self, page, limit, @@ -79395,7 +79395,7 @@ def _index_cloudvulndb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cloudvulndb', + resource_path='/v3/index/cloudbees', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -79412,7 +79412,7 @@ def _index_cloudvulndb_get_serialize( @validate_call - async def index_cnnvd_get( + async def index_cloudvulndb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -79450,10 +79450,10 @@ async def index_cnnvd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination: - """Return vulnerability data stored in index \"cnnvd\" + ) -> RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"cloudvulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` :param page: set the page number of the response :type page: int @@ -79525,7 +79525,7 @@ async def index_cnnvd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnnvd_get_serialize( + _param = self._index_cloudvulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79557,7 +79557,7 @@ async def index_cnnvd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -79573,7 +79573,7 @@ async def index_cnnvd_get( @validate_call - async def index_cnnvd_get_with_http_info( + async def index_cloudvulndb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -79611,10 +79611,10 @@ async def index_cnnvd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination]: - """Return vulnerability data stored in index \"cnnvd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"cloudvulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` :param page: set the page number of the response :type page: int @@ -79686,7 +79686,7 @@ async def index_cnnvd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnnvd_get_serialize( + _param = self._index_cloudvulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79718,7 +79718,7 @@ async def index_cnnvd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -79734,7 +79734,7 @@ async def index_cnnvd_get_with_http_info( @validate_call - async def index_cnnvd_get_without_preload_content( + async def index_cloudvulndb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -79773,9 +79773,9 @@ async def index_cnnvd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cnnvd\" + """Return vulnerability data stored in index \"cloudvulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` :param page: set the page number of the response :type page: int @@ -79847,7 +79847,7 @@ async def index_cnnvd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnnvd_get_serialize( + _param = self._index_cloudvulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79879,7 +79879,7 @@ async def index_cnnvd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -79890,7 +79890,7 @@ async def index_cnnvd_get_without_preload_content( return response_data.response - def _index_cnnvd_get_serialize( + def _index_cloudvulndb_get_serialize( self, page, limit, @@ -80058,7 +80058,7 @@ def _index_cnnvd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cnnvd', + resource_path='/v3/index/cloudvulndb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -80075,7 +80075,7 @@ def _index_cnnvd_get_serialize( @validate_call - async def index_cnvd_bulletins_get( + async def index_cnnvd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80113,10 +80113,10 @@ async def index_cnvd_bulletins_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination: - """Return vulnerability data stored in index \"cnvd-bulletins\" + ) -> RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination: + """Return vulnerability data stored in index \"cnnvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` :param page: set the page number of the response :type page: int @@ -80188,7 +80188,7 @@ async def index_cnvd_bulletins_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_bulletins_get_serialize( + _param = self._index_cnnvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -80220,7 +80220,7 @@ async def index_cnvd_bulletins_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", '404': "str", '500': "str", } @@ -80236,7 +80236,7 @@ async def index_cnvd_bulletins_get( @validate_call - async def index_cnvd_bulletins_get_with_http_info( + async def index_cnnvd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80274,10 +80274,10 @@ async def index_cnvd_bulletins_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination]: - """Return vulnerability data stored in index \"cnvd-bulletins\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination]: + """Return vulnerability data stored in index \"cnnvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` :param page: set the page number of the response :type page: int @@ -80349,7 +80349,7 @@ async def index_cnvd_bulletins_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_bulletins_get_serialize( + _param = self._index_cnnvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -80381,7 +80381,7 @@ async def index_cnvd_bulletins_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", '404': "str", '500': "str", } @@ -80397,7 +80397,7 @@ async def index_cnvd_bulletins_get_with_http_info( @validate_call - async def index_cnvd_bulletins_get_without_preload_content( + async def index_cnnvd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80436,9 +80436,9 @@ async def index_cnvd_bulletins_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cnvd-bulletins\" + """Return vulnerability data stored in index \"cnnvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` :param page: set the page number of the response :type page: int @@ -80510,7 +80510,7 @@ async def index_cnvd_bulletins_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_bulletins_get_serialize( + _param = self._index_cnnvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -80542,7 +80542,7 @@ async def index_cnvd_bulletins_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", '404': "str", '500': "str", } @@ -80553,7 +80553,7 @@ async def index_cnvd_bulletins_get_without_preload_content( return response_data.response - def _index_cnvd_bulletins_get_serialize( + def _index_cnnvd_get_serialize( self, page, limit, @@ -80721,7 +80721,7 @@ def _index_cnvd_bulletins_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cnvd-bulletins', + resource_path='/v3/index/cnnvd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -80738,7 +80738,7 @@ def _index_cnvd_bulletins_get_serialize( @validate_call - async def index_cnvd_flaws_get( + async def index_cnvd_bulletins_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80776,10 +80776,10 @@ async def index_cnvd_flaws_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination: - """Return vulnerability data stored in index \"cnvd-flaws\" + ) -> RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination: + """Return vulnerability data stored in index \"cnvd-bulletins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` :param page: set the page number of the response :type page: int @@ -80851,7 +80851,7 @@ async def index_cnvd_flaws_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_flaws_get_serialize( + _param = self._index_cnvd_bulletins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -80883,7 +80883,7 @@ async def index_cnvd_flaws_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", '404': "str", '500': "str", } @@ -80899,7 +80899,7 @@ async def index_cnvd_flaws_get( @validate_call - async def index_cnvd_flaws_get_with_http_info( + async def index_cnvd_bulletins_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80937,10 +80937,10 @@ async def index_cnvd_flaws_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination]: - """Return vulnerability data stored in index \"cnvd-flaws\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination]: + """Return vulnerability data stored in index \"cnvd-bulletins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` :param page: set the page number of the response :type page: int @@ -81012,7 +81012,7 @@ async def index_cnvd_flaws_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_flaws_get_serialize( + _param = self._index_cnvd_bulletins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81044,7 +81044,7 @@ async def index_cnvd_flaws_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", '404': "str", '500': "str", } @@ -81060,7 +81060,7 @@ async def index_cnvd_flaws_get_with_http_info( @validate_call - async def index_cnvd_flaws_get_without_preload_content( + async def index_cnvd_bulletins_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -81099,9 +81099,9 @@ async def index_cnvd_flaws_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cnvd-flaws\" + """Return vulnerability data stored in index \"cnvd-bulletins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` :param page: set the page number of the response :type page: int @@ -81173,7 +81173,7 @@ async def index_cnvd_flaws_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_flaws_get_serialize( + _param = self._index_cnvd_bulletins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81205,7 +81205,7 @@ async def index_cnvd_flaws_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", '404': "str", '500': "str", } @@ -81216,7 +81216,7 @@ async def index_cnvd_flaws_get_without_preload_content( return response_data.response - def _index_cnvd_flaws_get_serialize( + def _index_cnvd_bulletins_get_serialize( self, page, limit, @@ -81384,7 +81384,7 @@ def _index_cnvd_flaws_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cnvd-flaws', + resource_path='/v3/index/cnvd-bulletins', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -81401,7 +81401,7 @@ def _index_cnvd_flaws_get_serialize( @validate_call - async def index_cocoapods_get( + async def index_cnvd_flaws_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -81439,10 +81439,10 @@ async def index_cocoapods_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"cocoapods\" + ) -> RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination: + """Return vulnerability data stored in index \"cnvd-flaws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` :param page: set the page number of the response :type page: int @@ -81514,7 +81514,7 @@ async def index_cocoapods_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cocoapods_get_serialize( + _param = self._index_cnvd_flaws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81546,7 +81546,7 @@ async def index_cocoapods_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", '404': "str", '500': "str", } @@ -81562,7 +81562,7 @@ async def index_cocoapods_get( @validate_call - async def index_cocoapods_get_with_http_info( + async def index_cnvd_flaws_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -81600,10 +81600,10 @@ async def index_cocoapods_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"cocoapods\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination]: + """Return vulnerability data stored in index \"cnvd-flaws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` :param page: set the page number of the response :type page: int @@ -81675,7 +81675,7 @@ async def index_cocoapods_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cocoapods_get_serialize( + _param = self._index_cnvd_flaws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81707,7 +81707,7 @@ async def index_cocoapods_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", '404': "str", '500': "str", } @@ -81723,7 +81723,7 @@ async def index_cocoapods_get_with_http_info( @validate_call - async def index_cocoapods_get_without_preload_content( + async def index_cnvd_flaws_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -81762,9 +81762,9 @@ async def index_cocoapods_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cocoapods\" + """Return vulnerability data stored in index \"cnvd-flaws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` :param page: set the page number of the response :type page: int @@ -81836,7 +81836,7 @@ async def index_cocoapods_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cocoapods_get_serialize( + _param = self._index_cnvd_flaws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81868,7 +81868,7 @@ async def index_cocoapods_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", '404': "str", '500': "str", } @@ -81879,7 +81879,7 @@ async def index_cocoapods_get_without_preload_content( return response_data.response - def _index_cocoapods_get_serialize( + def _index_cnvd_flaws_get_serialize( self, page, limit, @@ -82047,7 +82047,7 @@ def _index_cocoapods_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cocoapods', + resource_path='/v3/index/cnvd-flaws', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -82064,7 +82064,7 @@ def _index_cocoapods_get_serialize( @validate_call - async def index_codesys_get( + async def index_cocoapods_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82102,10 +82102,10 @@ async def index_codesys_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"codesys\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"cocoapods\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` :param page: set the page number of the response :type page: int @@ -82177,7 +82177,7 @@ async def index_codesys_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_codesys_get_serialize( + _param = self._index_cocoapods_get_serialize( page=page, limit=limit, cursor=cursor, @@ -82209,7 +82209,7 @@ async def index_codesys_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -82225,7 +82225,7 @@ async def index_codesys_get( @validate_call - async def index_codesys_get_with_http_info( + async def index_cocoapods_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82263,10 +82263,10 @@ async def index_codesys_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"codesys\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"cocoapods\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` :param page: set the page number of the response :type page: int @@ -82338,7 +82338,7 @@ async def index_codesys_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_codesys_get_serialize( + _param = self._index_cocoapods_get_serialize( page=page, limit=limit, cursor=cursor, @@ -82370,7 +82370,7 @@ async def index_codesys_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -82386,7 +82386,7 @@ async def index_codesys_get_with_http_info( @validate_call - async def index_codesys_get_without_preload_content( + async def index_cocoapods_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82425,9 +82425,9 @@ async def index_codesys_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"codesys\" + """Return vulnerability data stored in index \"cocoapods\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` :param page: set the page number of the response :type page: int @@ -82499,7 +82499,7 @@ async def index_codesys_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_codesys_get_serialize( + _param = self._index_cocoapods_get_serialize( page=page, limit=limit, cursor=cursor, @@ -82531,7 +82531,7 @@ async def index_codesys_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -82542,7 +82542,7 @@ async def index_codesys_get_without_preload_content( return response_data.response - def _index_codesys_get_serialize( + def _index_cocoapods_get_serialize( self, page, limit, @@ -82710,7 +82710,7 @@ def _index_codesys_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/codesys', + resource_path='/v3/index/cocoapods', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -82727,7 +82727,7 @@ def _index_codesys_get_serialize( @validate_call - async def index_commvault_get( + async def index_codesys_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82765,10 +82765,10 @@ async def index_commvault_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination: - """Return vulnerability data stored in index \"commvault\" + ) -> RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"codesys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` :param page: set the page number of the response :type page: int @@ -82840,7 +82840,7 @@ async def index_commvault_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_commvault_get_serialize( + _param = self._index_codesys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -82872,7 +82872,7 @@ async def index_commvault_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -82888,7 +82888,7 @@ async def index_commvault_get( @validate_call - async def index_commvault_get_with_http_info( + async def index_codesys_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82926,10 +82926,10 @@ async def index_commvault_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination]: - """Return vulnerability data stored in index \"commvault\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"codesys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` :param page: set the page number of the response :type page: int @@ -83001,7 +83001,7 @@ async def index_commvault_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_commvault_get_serialize( + _param = self._index_codesys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83033,7 +83033,7 @@ async def index_commvault_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -83049,7 +83049,7 @@ async def index_commvault_get_with_http_info( @validate_call - async def index_commvault_get_without_preload_content( + async def index_codesys_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -83088,9 +83088,9 @@ async def index_commvault_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"commvault\" + """Return vulnerability data stored in index \"codesys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` :param page: set the page number of the response :type page: int @@ -83162,7 +83162,7 @@ async def index_commvault_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_commvault_get_serialize( + _param = self._index_codesys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83194,7 +83194,7 @@ async def index_commvault_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -83205,7 +83205,7 @@ async def index_commvault_get_without_preload_content( return response_data.response - def _index_commvault_get_serialize( + def _index_codesys_get_serialize( self, page, limit, @@ -83373,7 +83373,7 @@ def _index_commvault_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/commvault', + resource_path='/v3/index/codesys', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -83390,7 +83390,7 @@ def _index_commvault_get_serialize( @validate_call - async def index_compass_security_get( + async def index_commvault_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -83428,10 +83428,10 @@ async def index_compass_security_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination: - """Return vulnerability data stored in index \"compass-security\" + ) -> RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination: + """Return vulnerability data stored in index \"commvault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` :param page: set the page number of the response :type page: int @@ -83503,7 +83503,7 @@ async def index_compass_security_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_compass_security_get_serialize( + _param = self._index_commvault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83535,7 +83535,7 @@ async def index_compass_security_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", '404': "str", '500': "str", } @@ -83551,7 +83551,7 @@ async def index_compass_security_get( @validate_call - async def index_compass_security_get_with_http_info( + async def index_commvault_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -83589,10 +83589,10 @@ async def index_compass_security_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination]: - """Return vulnerability data stored in index \"compass-security\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination]: + """Return vulnerability data stored in index \"commvault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` :param page: set the page number of the response :type page: int @@ -83664,7 +83664,7 @@ async def index_compass_security_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_compass_security_get_serialize( + _param = self._index_commvault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83696,7 +83696,7 @@ async def index_compass_security_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", '404': "str", '500': "str", } @@ -83712,7 +83712,7 @@ async def index_compass_security_get_with_http_info( @validate_call - async def index_compass_security_get_without_preload_content( + async def index_commvault_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -83751,9 +83751,9 @@ async def index_compass_security_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"compass-security\" + """Return vulnerability data stored in index \"commvault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` :param page: set the page number of the response :type page: int @@ -83825,7 +83825,7 @@ async def index_compass_security_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_compass_security_get_serialize( + _param = self._index_commvault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83857,7 +83857,7 @@ async def index_compass_security_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", '404': "str", '500': "str", } @@ -83868,7 +83868,7 @@ async def index_compass_security_get_without_preload_content( return response_data.response - def _index_compass_security_get_serialize( + def _index_commvault_get_serialize( self, page, limit, @@ -84036,7 +84036,7 @@ def _index_compass_security_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/compass-security', + resource_path='/v3/index/commvault', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -84053,7 +84053,7 @@ def _index_compass_security_get_serialize( @validate_call - async def index_composer_get( + async def index_compass_security_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84091,10 +84091,10 @@ async def index_composer_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"composer\" + ) -> RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination: + """Return vulnerability data stored in index \"compass-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` :param page: set the page number of the response :type page: int @@ -84166,7 +84166,7 @@ async def index_composer_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_composer_get_serialize( + _param = self._index_compass_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -84198,7 +84198,7 @@ async def index_composer_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", '404': "str", '500': "str", } @@ -84214,7 +84214,7 @@ async def index_composer_get( @validate_call - async def index_composer_get_with_http_info( + async def index_compass_security_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84252,10 +84252,10 @@ async def index_composer_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"composer\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination]: + """Return vulnerability data stored in index \"compass-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` :param page: set the page number of the response :type page: int @@ -84327,7 +84327,7 @@ async def index_composer_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_composer_get_serialize( + _param = self._index_compass_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -84359,7 +84359,7 @@ async def index_composer_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", '404': "str", '500': "str", } @@ -84375,7 +84375,7 @@ async def index_composer_get_with_http_info( @validate_call - async def index_composer_get_without_preload_content( + async def index_compass_security_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84414,9 +84414,9 @@ async def index_composer_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"composer\" + """Return vulnerability data stored in index \"compass-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` :param page: set the page number of the response :type page: int @@ -84488,7 +84488,7 @@ async def index_composer_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_composer_get_serialize( + _param = self._index_compass_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -84520,7 +84520,7 @@ async def index_composer_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", '404': "str", '500': "str", } @@ -84531,7 +84531,7 @@ async def index_composer_get_without_preload_content( return response_data.response - def _index_composer_get_serialize( + def _index_compass_security_get_serialize( self, page, limit, @@ -84699,7 +84699,7 @@ def _index_composer_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/composer', + resource_path='/v3/index/compass-security', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -84716,7 +84716,7 @@ def _index_composer_get_serialize( @validate_call - async def index_conan_get( + async def index_composer_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84755,9 +84755,9 @@ async def index_conan_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"conan\" + """Return vulnerability data stored in index \"composer\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` :param page: set the page number of the response :type page: int @@ -84829,7 +84829,7 @@ async def index_conan_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_conan_get_serialize( + _param = self._index_composer_get_serialize( page=page, limit=limit, cursor=cursor, @@ -84877,7 +84877,7 @@ async def index_conan_get( @validate_call - async def index_conan_get_with_http_info( + async def index_composer_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84916,9 +84916,9 @@ async def index_conan_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"conan\" + """Return vulnerability data stored in index \"composer\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` :param page: set the page number of the response :type page: int @@ -84990,7 +84990,7 @@ async def index_conan_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_conan_get_serialize( + _param = self._index_composer_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85038,7 +85038,7 @@ async def index_conan_get_with_http_info( @validate_call - async def index_conan_get_without_preload_content( + async def index_composer_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -85077,9 +85077,9 @@ async def index_conan_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"conan\" + """Return vulnerability data stored in index \"composer\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` :param page: set the page number of the response :type page: int @@ -85151,7 +85151,7 @@ async def index_conan_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_conan_get_serialize( + _param = self._index_composer_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85194,7 +85194,7 @@ async def index_conan_get_without_preload_content( return response_data.response - def _index_conan_get_serialize( + def _index_composer_get_serialize( self, page, limit, @@ -85362,7 +85362,7 @@ def _index_conan_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/conan', + resource_path='/v3/index/composer', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -85379,7 +85379,7 @@ def _index_conan_get_serialize( @validate_call - async def index_coreimpact_get( + async def index_conan_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -85417,10 +85417,10 @@ async def index_coreimpact_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination: - """Return vulnerability data stored in index \"coreimpact\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"conan\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` :param page: set the page number of the response :type page: int @@ -85492,7 +85492,7 @@ async def index_coreimpact_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_coreimpact_get_serialize( + _param = self._index_conan_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85524,7 +85524,7 @@ async def index_coreimpact_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -85540,7 +85540,7 @@ async def index_coreimpact_get( @validate_call - async def index_coreimpact_get_with_http_info( + async def index_conan_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -85578,10 +85578,10 @@ async def index_coreimpact_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination]: - """Return vulnerability data stored in index \"coreimpact\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"conan\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` :param page: set the page number of the response :type page: int @@ -85653,7 +85653,7 @@ async def index_coreimpact_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_coreimpact_get_serialize( + _param = self._index_conan_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85685,7 +85685,7 @@ async def index_coreimpact_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -85701,7 +85701,7 @@ async def index_coreimpact_get_with_http_info( @validate_call - async def index_coreimpact_get_without_preload_content( + async def index_conan_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -85740,9 +85740,9 @@ async def index_coreimpact_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"coreimpact\" + """Return vulnerability data stored in index \"conan\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` :param page: set the page number of the response :type page: int @@ -85814,7 +85814,7 @@ async def index_coreimpact_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_coreimpact_get_serialize( + _param = self._index_conan_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85846,7 +85846,7 @@ async def index_coreimpact_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -85857,7 +85857,7 @@ async def index_coreimpact_get_without_preload_content( return response_data.response - def _index_coreimpact_get_serialize( + def _index_conan_get_serialize( self, page, limit, @@ -86025,7 +86025,7 @@ def _index_coreimpact_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/coreimpact', + resource_path='/v3/index/conan', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -86042,7 +86042,7 @@ def _index_coreimpact_get_serialize( @validate_call - async def index_cpe_vulnerable_get( + async def index_coreimpact_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86080,10 +86080,10 @@ async def index_cpe_vulnerable_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination: - """Return vulnerability data stored in index \"cpe-vulnerable\" + ) -> RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination: + """Return vulnerability data stored in index \"coreimpact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` :param page: set the page number of the response :type page: int @@ -86155,7 +86155,7 @@ async def index_cpe_vulnerable_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cpe_vulnerable_get_serialize( + _param = self._index_coreimpact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -86187,7 +86187,7 @@ async def index_cpe_vulnerable_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", '404': "str", '500': "str", } @@ -86203,7 +86203,7 @@ async def index_cpe_vulnerable_get( @validate_call - async def index_cpe_vulnerable_get_with_http_info( + async def index_coreimpact_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86241,10 +86241,10 @@ async def index_cpe_vulnerable_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination]: - """Return vulnerability data stored in index \"cpe-vulnerable\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination]: + """Return vulnerability data stored in index \"coreimpact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` :param page: set the page number of the response :type page: int @@ -86316,7 +86316,7 @@ async def index_cpe_vulnerable_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cpe_vulnerable_get_serialize( + _param = self._index_coreimpact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -86348,7 +86348,7 @@ async def index_cpe_vulnerable_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", '404': "str", '500': "str", } @@ -86364,7 +86364,7 @@ async def index_cpe_vulnerable_get_with_http_info( @validate_call - async def index_cpe_vulnerable_get_without_preload_content( + async def index_coreimpact_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86403,9 +86403,9 @@ async def index_cpe_vulnerable_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cpe-vulnerable\" + """Return vulnerability data stored in index \"coreimpact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` :param page: set the page number of the response :type page: int @@ -86477,7 +86477,7 @@ async def index_cpe_vulnerable_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cpe_vulnerable_get_serialize( + _param = self._index_coreimpact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -86509,7 +86509,7 @@ async def index_cpe_vulnerable_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", '404': "str", '500': "str", } @@ -86520,7 +86520,7 @@ async def index_cpe_vulnerable_get_without_preload_content( return response_data.response - def _index_cpe_vulnerable_get_serialize( + def _index_coreimpact_get_serialize( self, page, limit, @@ -86688,7 +86688,7 @@ def _index_cpe_vulnerable_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cpe-vulnerable', + resource_path='/v3/index/coreimpact', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -86705,7 +86705,7 @@ def _index_cpe_vulnerable_get_serialize( @validate_call - async def index_crestron_get( + async def index_cpe_vulnerable_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86743,10 +86743,10 @@ async def index_crestron_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination: - """Return vulnerability data stored in index \"crestron\" + ) -> RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination: + """Return vulnerability data stored in index \"cpe-vulnerable\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` :param page: set the page number of the response :type page: int @@ -86818,7 +86818,7 @@ async def index_crestron_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crestron_get_serialize( + _param = self._index_cpe_vulnerable_get_serialize( page=page, limit=limit, cursor=cursor, @@ -86850,7 +86850,7 @@ async def index_crestron_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", '404': "str", '500': "str", } @@ -86866,7 +86866,7 @@ async def index_crestron_get( @validate_call - async def index_crestron_get_with_http_info( + async def index_cpe_vulnerable_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86904,10 +86904,10 @@ async def index_crestron_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination]: - """Return vulnerability data stored in index \"crestron\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination]: + """Return vulnerability data stored in index \"cpe-vulnerable\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` :param page: set the page number of the response :type page: int @@ -86979,7 +86979,7 @@ async def index_crestron_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crestron_get_serialize( + _param = self._index_cpe_vulnerable_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87011,7 +87011,7 @@ async def index_crestron_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", '404': "str", '500': "str", } @@ -87027,7 +87027,7 @@ async def index_crestron_get_with_http_info( @validate_call - async def index_crestron_get_without_preload_content( + async def index_cpe_vulnerable_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -87066,9 +87066,9 @@ async def index_crestron_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"crestron\" + """Return vulnerability data stored in index \"cpe-vulnerable\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` :param page: set the page number of the response :type page: int @@ -87140,7 +87140,7 @@ async def index_crestron_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crestron_get_serialize( + _param = self._index_cpe_vulnerable_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87172,7 +87172,7 @@ async def index_crestron_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", '404': "str", '500': "str", } @@ -87183,7 +87183,7 @@ async def index_crestron_get_without_preload_content( return response_data.response - def _index_crestron_get_serialize( + def _index_cpe_vulnerable_get_serialize( self, page, limit, @@ -87351,7 +87351,7 @@ def _index_crestron_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/crestron', + resource_path='/v3/index/cpe-vulnerable', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -87368,7 +87368,7 @@ def _index_crestron_get_serialize( @validate_call - async def index_crowdsec_get( + async def index_crestron_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -87406,10 +87406,10 @@ async def index_crowdsec_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination: - """Return vulnerability data stored in index \"crowdsec\" + ) -> RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination: + """Return vulnerability data stored in index \"crestron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` :param page: set the page number of the response :type page: int @@ -87481,7 +87481,7 @@ async def index_crowdsec_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crowdsec_get_serialize( + _param = self._index_crestron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87513,7 +87513,7 @@ async def index_crowdsec_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", '404': "str", '500': "str", } @@ -87529,7 +87529,7 @@ async def index_crowdsec_get( @validate_call - async def index_crowdsec_get_with_http_info( + async def index_crestron_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -87567,10 +87567,10 @@ async def index_crowdsec_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination]: - """Return vulnerability data stored in index \"crowdsec\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination]: + """Return vulnerability data stored in index \"crestron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` :param page: set the page number of the response :type page: int @@ -87642,7 +87642,7 @@ async def index_crowdsec_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crowdsec_get_serialize( + _param = self._index_crestron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87674,7 +87674,7 @@ async def index_crowdsec_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", '404': "str", '500': "str", } @@ -87690,7 +87690,7 @@ async def index_crowdsec_get_with_http_info( @validate_call - async def index_crowdsec_get_without_preload_content( + async def index_crestron_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -87729,9 +87729,9 @@ async def index_crowdsec_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"crowdsec\" + """Return vulnerability data stored in index \"crestron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` :param page: set the page number of the response :type page: int @@ -87803,7 +87803,7 @@ async def index_crowdsec_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crowdsec_get_serialize( + _param = self._index_crestron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87835,7 +87835,7 @@ async def index_crowdsec_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", '404': "str", '500': "str", } @@ -87846,7 +87846,7 @@ async def index_crowdsec_get_without_preload_content( return response_data.response - def _index_crowdsec_get_serialize( + def _index_crestron_get_serialize( self, page, limit, @@ -88014,7 +88014,7 @@ def _index_crowdsec_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/crowdsec', + resource_path='/v3/index/crestron', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -88031,7 +88031,7 @@ def _index_crowdsec_get_serialize( @validate_call - async def index_curl_get( + async def index_crowdsec_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88069,10 +88069,10 @@ async def index_curl_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination: - """Return vulnerability data stored in index \"curl\" + ) -> RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination: + """Return vulnerability data stored in index \"crowdsec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` :param page: set the page number of the response :type page: int @@ -88144,7 +88144,7 @@ async def index_curl_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_curl_get_serialize( + _param = self._index_crowdsec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -88176,7 +88176,7 @@ async def index_curl_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", '404': "str", '500': "str", } @@ -88192,7 +88192,7 @@ async def index_curl_get( @validate_call - async def index_curl_get_with_http_info( + async def index_crowdsec_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88230,10 +88230,10 @@ async def index_curl_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination]: - """Return vulnerability data stored in index \"curl\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination]: + """Return vulnerability data stored in index \"crowdsec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` :param page: set the page number of the response :type page: int @@ -88305,7 +88305,7 @@ async def index_curl_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_curl_get_serialize( + _param = self._index_crowdsec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -88337,7 +88337,7 @@ async def index_curl_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", '404': "str", '500': "str", } @@ -88353,7 +88353,7 @@ async def index_curl_get_with_http_info( @validate_call - async def index_curl_get_without_preload_content( + async def index_crowdsec_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88392,9 +88392,9 @@ async def index_curl_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"curl\" + """Return vulnerability data stored in index \"crowdsec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` :param page: set the page number of the response :type page: int @@ -88466,7 +88466,7 @@ async def index_curl_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_curl_get_serialize( + _param = self._index_crowdsec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -88498,7 +88498,7 @@ async def index_curl_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", '404': "str", '500': "str", } @@ -88509,7 +88509,7 @@ async def index_curl_get_without_preload_content( return response_data.response - def _index_curl_get_serialize( + def _index_crowdsec_get_serialize( self, page, limit, @@ -88677,7 +88677,7 @@ def _index_curl_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/curl', + resource_path='/v3/index/crowdsec', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -88694,7 +88694,7 @@ def _index_curl_get_serialize( @validate_call - async def index_cves_identity_mappings_get( + async def index_curl_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88732,10 +88732,10 @@ async def index_cves_identity_mappings_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination: - """Return vulnerability data stored in index \"cves_identity_mappings\" + ) -> RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination: + """Return vulnerability data stored in index \"curl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` :param page: set the page number of the response :type page: int @@ -88807,7 +88807,7 @@ async def index_cves_identity_mappings_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cves_identity_mappings_get_serialize( + _param = self._index_curl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -88839,7 +88839,7 @@ async def index_cves_identity_mappings_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", '404': "str", '500': "str", } @@ -88855,7 +88855,7 @@ async def index_cves_identity_mappings_get( @validate_call - async def index_cves_identity_mappings_get_with_http_info( + async def index_curl_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88893,10 +88893,10 @@ async def index_cves_identity_mappings_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination]: - """Return vulnerability data stored in index \"cves_identity_mappings\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination]: + """Return vulnerability data stored in index \"curl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` :param page: set the page number of the response :type page: int @@ -88968,7 +88968,7 @@ async def index_cves_identity_mappings_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cves_identity_mappings_get_serialize( + _param = self._index_curl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89000,7 +89000,7 @@ async def index_cves_identity_mappings_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", '404': "str", '500': "str", } @@ -89016,7 +89016,7 @@ async def index_cves_identity_mappings_get_with_http_info( @validate_call - async def index_cves_identity_mappings_get_without_preload_content( + async def index_curl_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -89055,9 +89055,9 @@ async def index_cves_identity_mappings_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cves_identity_mappings\" + """Return vulnerability data stored in index \"curl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` :param page: set the page number of the response :type page: int @@ -89129,7 +89129,7 @@ async def index_cves_identity_mappings_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cves_identity_mappings_get_serialize( + _param = self._index_curl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89161,7 +89161,7 @@ async def index_cves_identity_mappings_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", '404': "str", '500': "str", } @@ -89172,7 +89172,7 @@ async def index_cves_identity_mappings_get_without_preload_content( return response_data.response - def _index_cves_identity_mappings_get_serialize( + def _index_curl_get_serialize( self, page, limit, @@ -89340,7 +89340,7 @@ def _index_cves_identity_mappings_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cves_identity_mappings', + resource_path='/v3/index/curl', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -89357,7 +89357,7 @@ def _index_cves_identity_mappings_get_serialize( @validate_call - async def index_cwe_get( + async def index_cves_identity_mappings_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -89395,10 +89395,10 @@ async def index_cwe_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiCWEPaginatePagination: - """Return vulnerability data stored in index \"cwe\" + ) -> RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination: + """Return vulnerability data stored in index \"cves_identity_mappings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` :param page: set the page number of the response :type page: int @@ -89470,7 +89470,7 @@ async def index_cwe_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cwe_get_serialize( + _param = self._index_cves_identity_mappings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89502,7 +89502,7 @@ async def index_cwe_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", '404': "str", '500': "str", } @@ -89518,7 +89518,7 @@ async def index_cwe_get( @validate_call - async def index_cwe_get_with_http_info( + async def index_cves_identity_mappings_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -89556,10 +89556,10 @@ async def index_cwe_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiCWEPaginatePagination]: - """Return vulnerability data stored in index \"cwe\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination]: + """Return vulnerability data stored in index \"cves_identity_mappings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` :param page: set the page number of the response :type page: int @@ -89631,7 +89631,7 @@ async def index_cwe_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cwe_get_serialize( + _param = self._index_cves_identity_mappings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89663,7 +89663,7 @@ async def index_cwe_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", '404': "str", '500': "str", } @@ -89679,7 +89679,7 @@ async def index_cwe_get_with_http_info( @validate_call - async def index_cwe_get_without_preload_content( + async def index_cves_identity_mappings_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -89718,9 +89718,9 @@ async def index_cwe_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cwe\" + """Return vulnerability data stored in index \"cves_identity_mappings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` :param page: set the page number of the response :type page: int @@ -89792,7 +89792,7 @@ async def index_cwe_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cwe_get_serialize( + _param = self._index_cves_identity_mappings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89824,7 +89824,7 @@ async def index_cwe_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", '404': "str", '500': "str", } @@ -89835,7 +89835,7 @@ async def index_cwe_get_without_preload_content( return response_data.response - def _index_cwe_get_serialize( + def _index_cves_identity_mappings_get_serialize( self, page, limit, @@ -90003,7 +90003,7 @@ def _index_cwe_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cwe', + resource_path='/v3/index/cves_identity_mappings', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -90020,7 +90020,7 @@ def _index_cwe_get_serialize( @validate_call - async def index_dahua_get( + async def index_cwe_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90058,10 +90058,10 @@ async def index_dahua_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination: - """Return vulnerability data stored in index \"dahua\" + ) -> RenderResponseWithMetadataArrayApiCWEPaginatePagination: + """Return vulnerability data stored in index \"cwe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` :param page: set the page number of the response :type page: int @@ -90133,7 +90133,7 @@ async def index_dahua_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dahua_get_serialize( + _param = self._index_cwe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90165,7 +90165,7 @@ async def index_dahua_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", '404': "str", '500': "str", } @@ -90181,7 +90181,7 @@ async def index_dahua_get( @validate_call - async def index_dahua_get_with_http_info( + async def index_cwe_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90219,10 +90219,10 @@ async def index_dahua_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination]: - """Return vulnerability data stored in index \"dahua\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiCWEPaginatePagination]: + """Return vulnerability data stored in index \"cwe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` :param page: set the page number of the response :type page: int @@ -90294,7 +90294,7 @@ async def index_dahua_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dahua_get_serialize( + _param = self._index_cwe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90326,7 +90326,7 @@ async def index_dahua_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", '404': "str", '500': "str", } @@ -90342,7 +90342,7 @@ async def index_dahua_get_with_http_info( @validate_call - async def index_dahua_get_without_preload_content( + async def index_cwe_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90381,9 +90381,9 @@ async def index_dahua_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dahua\" + """Return vulnerability data stored in index \"cwe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` :param page: set the page number of the response :type page: int @@ -90455,7 +90455,7 @@ async def index_dahua_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dahua_get_serialize( + _param = self._index_cwe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90487,7 +90487,7 @@ async def index_dahua_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", '404': "str", '500': "str", } @@ -90498,7 +90498,7 @@ async def index_dahua_get_without_preload_content( return response_data.response - def _index_dahua_get_serialize( + def _index_cwe_get_serialize( self, page, limit, @@ -90666,7 +90666,7 @@ def _index_dahua_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dahua', + resource_path='/v3/index/cwe', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -90683,7 +90683,7 @@ def _index_dahua_get_serialize( @validate_call - async def index_danfoss_get( + async def index_dahua_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90721,10 +90721,10 @@ async def index_danfoss_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination: - """Return vulnerability data stored in index \"danfoss\" + ) -> RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination: + """Return vulnerability data stored in index \"dahua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` :param page: set the page number of the response :type page: int @@ -90796,7 +90796,7 @@ async def index_danfoss_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_danfoss_get_serialize( + _param = self._index_dahua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90828,7 +90828,7 @@ async def index_danfoss_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", '404': "str", '500': "str", } @@ -90844,7 +90844,7 @@ async def index_danfoss_get( @validate_call - async def index_danfoss_get_with_http_info( + async def index_dahua_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90882,10 +90882,10 @@ async def index_danfoss_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination]: - """Return vulnerability data stored in index \"danfoss\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination]: + """Return vulnerability data stored in index \"dahua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` :param page: set the page number of the response :type page: int @@ -90957,7 +90957,7 @@ async def index_danfoss_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_danfoss_get_serialize( + _param = self._index_dahua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90989,7 +90989,7 @@ async def index_danfoss_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", '404': "str", '500': "str", } @@ -91005,7 +91005,7 @@ async def index_danfoss_get_with_http_info( @validate_call - async def index_danfoss_get_without_preload_content( + async def index_dahua_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -91044,9 +91044,9 @@ async def index_danfoss_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"danfoss\" + """Return vulnerability data stored in index \"dahua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` :param page: set the page number of the response :type page: int @@ -91118,7 +91118,7 @@ async def index_danfoss_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_danfoss_get_serialize( + _param = self._index_dahua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -91150,7 +91150,7 @@ async def index_danfoss_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", '404': "str", '500': "str", } @@ -91161,7 +91161,7 @@ async def index_danfoss_get_without_preload_content( return response_data.response - def _index_danfoss_get_serialize( + def _index_dahua_get_serialize( self, page, limit, @@ -91329,7 +91329,7 @@ def _index_danfoss_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/danfoss', + resource_path='/v3/index/dahua', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -91346,7 +91346,7 @@ def _index_danfoss_get_serialize( @validate_call - async def index_dassault_get( + async def index_danfoss_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -91384,10 +91384,10 @@ async def index_dassault_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination: - """Return vulnerability data stored in index \"dassault\" + ) -> RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination: + """Return vulnerability data stored in index \"danfoss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` :param page: set the page number of the response :type page: int @@ -91459,7 +91459,7 @@ async def index_dassault_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dassault_get_serialize( + _param = self._index_danfoss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -91491,7 +91491,7 @@ async def index_dassault_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", '404': "str", '500': "str", } @@ -91507,7 +91507,7 @@ async def index_dassault_get( @validate_call - async def index_dassault_get_with_http_info( + async def index_danfoss_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -91545,10 +91545,10 @@ async def index_dassault_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination]: - """Return vulnerability data stored in index \"dassault\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination]: + """Return vulnerability data stored in index \"danfoss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` :param page: set the page number of the response :type page: int @@ -91620,7 +91620,7 @@ async def index_dassault_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dassault_get_serialize( + _param = self._index_danfoss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -91652,7 +91652,7 @@ async def index_dassault_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", '404': "str", '500': "str", } @@ -91668,7 +91668,7 @@ async def index_dassault_get_with_http_info( @validate_call - async def index_dassault_get_without_preload_content( + async def index_danfoss_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -91707,9 +91707,9 @@ async def index_dassault_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dassault\" + """Return vulnerability data stored in index \"danfoss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` :param page: set the page number of the response :type page: int @@ -91781,7 +91781,7 @@ async def index_dassault_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dassault_get_serialize( + _param = self._index_danfoss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -91813,7 +91813,7 @@ async def index_dassault_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", '404': "str", '500': "str", } @@ -91824,7 +91824,7 @@ async def index_dassault_get_without_preload_content( return response_data.response - def _index_dassault_get_serialize( + def _index_danfoss_get_serialize( self, page, limit, @@ -91992,7 +91992,7 @@ def _index_dassault_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dassault', + resource_path='/v3/index/danfoss', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -92009,7 +92009,7 @@ def _index_dassault_get_serialize( @validate_call - async def index_debian_dsa_get( + async def index_dassault_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92047,10 +92047,10 @@ async def index_debian_dsa_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"debian-dsa\" + ) -> RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination: + """Return vulnerability data stored in index \"dassault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` :param page: set the page number of the response :type page: int @@ -92122,7 +92122,7 @@ async def index_debian_dsa_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_dsa_get_serialize( + _param = self._index_dassault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92154,7 +92154,7 @@ async def index_debian_dsa_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", '404': "str", '500': "str", } @@ -92170,7 +92170,7 @@ async def index_debian_dsa_get( @validate_call - async def index_debian_dsa_get_with_http_info( + async def index_dassault_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92208,10 +92208,10 @@ async def index_debian_dsa_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"debian-dsa\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination]: + """Return vulnerability data stored in index \"dassault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` :param page: set the page number of the response :type page: int @@ -92283,7 +92283,7 @@ async def index_debian_dsa_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_dsa_get_serialize( + _param = self._index_dassault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92315,7 +92315,7 @@ async def index_debian_dsa_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", '404': "str", '500': "str", } @@ -92331,7 +92331,7 @@ async def index_debian_dsa_get_with_http_info( @validate_call - async def index_debian_dsa_get_without_preload_content( + async def index_dassault_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92370,9 +92370,9 @@ async def index_debian_dsa_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"debian-dsa\" + """Return vulnerability data stored in index \"dassault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` :param page: set the page number of the response :type page: int @@ -92444,7 +92444,7 @@ async def index_debian_dsa_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_dsa_get_serialize( + _param = self._index_dassault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92476,7 +92476,7 @@ async def index_debian_dsa_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", '404': "str", '500': "str", } @@ -92487,7 +92487,7 @@ async def index_debian_dsa_get_without_preload_content( return response_data.response - def _index_debian_dsa_get_serialize( + def _index_dassault_get_serialize( self, page, limit, @@ -92655,7 +92655,7 @@ def _index_debian_dsa_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/debian-dsa', + resource_path='/v3/index/dassault', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -92672,7 +92672,7 @@ def _index_debian_dsa_get_serialize( @validate_call - async def index_debian_get( + async def index_debian_dsa_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92710,10 +92710,10 @@ async def index_debian_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination: - """Return vulnerability data stored in index \"debian\" + ) -> RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"debian-dsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` :param page: set the page number of the response :type page: int @@ -92785,7 +92785,7 @@ async def index_debian_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_get_serialize( + _param = self._index_debian_dsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92817,7 +92817,7 @@ async def index_debian_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -92833,7 +92833,7 @@ async def index_debian_get( @validate_call - async def index_debian_get_with_http_info( + async def index_debian_dsa_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92871,10 +92871,10 @@ async def index_debian_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination]: - """Return vulnerability data stored in index \"debian\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"debian-dsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` :param page: set the page number of the response :type page: int @@ -92946,7 +92946,7 @@ async def index_debian_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_get_serialize( + _param = self._index_debian_dsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92978,7 +92978,7 @@ async def index_debian_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -92994,7 +92994,7 @@ async def index_debian_get_with_http_info( @validate_call - async def index_debian_get_without_preload_content( + async def index_debian_dsa_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -93033,9 +93033,9 @@ async def index_debian_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"debian\" + """Return vulnerability data stored in index \"debian-dsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` :param page: set the page number of the response :type page: int @@ -93107,7 +93107,7 @@ async def index_debian_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_get_serialize( + _param = self._index_debian_dsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -93139,7 +93139,7 @@ async def index_debian_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -93150,7 +93150,7 @@ async def index_debian_get_without_preload_content( return response_data.response - def _index_debian_get_serialize( + def _index_debian_dsa_get_serialize( self, page, limit, @@ -93318,7 +93318,7 @@ def _index_debian_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/debian', + resource_path='/v3/index/debian-dsa', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -93335,7 +93335,7 @@ def _index_debian_get_serialize( @validate_call - async def index_debian_packages_get( + async def index_debian_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -93373,10 +93373,10 @@ async def index_debian_packages_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination: - """Return vulnerability data stored in index \"debian-packages\" + ) -> RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination: + """Return vulnerability data stored in index \"debian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` :param page: set the page number of the response :type page: int @@ -93448,7 +93448,7 @@ async def index_debian_packages_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_packages_get_serialize( + _param = self._index_debian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -93480,7 +93480,7 @@ async def index_debian_packages_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", '404': "str", '500': "str", } @@ -93496,7 +93496,7 @@ async def index_debian_packages_get( @validate_call - async def index_debian_packages_get_with_http_info( + async def index_debian_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -93534,10 +93534,10 @@ async def index_debian_packages_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination]: - """Return vulnerability data stored in index \"debian-packages\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination]: + """Return vulnerability data stored in index \"debian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` :param page: set the page number of the response :type page: int @@ -93609,7 +93609,7 @@ async def index_debian_packages_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_packages_get_serialize( + _param = self._index_debian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -93641,7 +93641,7 @@ async def index_debian_packages_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", '404': "str", '500': "str", } @@ -93657,7 +93657,7 @@ async def index_debian_packages_get_with_http_info( @validate_call - async def index_debian_packages_get_without_preload_content( + async def index_debian_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -93696,9 +93696,9 @@ async def index_debian_packages_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"debian-packages\" + """Return vulnerability data stored in index \"debian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` :param page: set the page number of the response :type page: int @@ -93770,7 +93770,7 @@ async def index_debian_packages_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_packages_get_serialize( + _param = self._index_debian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -93802,7 +93802,7 @@ async def index_debian_packages_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", '404': "str", '500': "str", } @@ -93813,7 +93813,7 @@ async def index_debian_packages_get_without_preload_content( return response_data.response - def _index_debian_packages_get_serialize( + def _index_debian_get_serialize( self, page, limit, @@ -93981,7 +93981,7 @@ def _index_debian_packages_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/debian-packages', + resource_path='/v3/index/debian', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -93998,7 +93998,7 @@ def _index_debian_packages_get_serialize( @validate_call - async def index_debian_purls_get( + async def index_debian_packages_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94036,10 +94036,10 @@ async def index_debian_purls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination: - """Return vulnerability data stored in index \"debian-purls\" + ) -> RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination: + """Return vulnerability data stored in index \"debian-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` :param page: set the page number of the response :type page: int @@ -94111,7 +94111,7 @@ async def index_debian_purls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_purls_get_serialize( + _param = self._index_debian_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94143,7 +94143,7 @@ async def index_debian_purls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", '404': "str", '500': "str", } @@ -94159,7 +94159,7 @@ async def index_debian_purls_get( @validate_call - async def index_debian_purls_get_with_http_info( + async def index_debian_packages_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94197,10 +94197,10 @@ async def index_debian_purls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination]: - """Return vulnerability data stored in index \"debian-purls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination]: + """Return vulnerability data stored in index \"debian-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` :param page: set the page number of the response :type page: int @@ -94272,7 +94272,7 @@ async def index_debian_purls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_purls_get_serialize( + _param = self._index_debian_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94304,7 +94304,7 @@ async def index_debian_purls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", '404': "str", '500': "str", } @@ -94320,7 +94320,7 @@ async def index_debian_purls_get_with_http_info( @validate_call - async def index_debian_purls_get_without_preload_content( + async def index_debian_packages_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94359,9 +94359,9 @@ async def index_debian_purls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"debian-purls\" + """Return vulnerability data stored in index \"debian-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` :param page: set the page number of the response :type page: int @@ -94433,7 +94433,7 @@ async def index_debian_purls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_purls_get_serialize( + _param = self._index_debian_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94465,7 +94465,7 @@ async def index_debian_purls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", '404': "str", '500': "str", } @@ -94476,7 +94476,7 @@ async def index_debian_purls_get_without_preload_content( return response_data.response - def _index_debian_purls_get_serialize( + def _index_debian_packages_get_serialize( self, page, limit, @@ -94644,7 +94644,7 @@ def _index_debian_purls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/debian-purls', + resource_path='/v3/index/debian-packages', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -94661,7 +94661,7 @@ def _index_debian_purls_get_serialize( @validate_call - async def index_dell_get( + async def index_debian_purls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94699,10 +94699,10 @@ async def index_dell_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination: - """Return vulnerability data stored in index \"dell\" + ) -> RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination: + """Return vulnerability data stored in index \"debian-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` :param page: set the page number of the response :type page: int @@ -94774,7 +94774,7 @@ async def index_dell_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dell_get_serialize( + _param = self._index_debian_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94806,7 +94806,7 @@ async def index_dell_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -94822,7 +94822,7 @@ async def index_dell_get( @validate_call - async def index_dell_get_with_http_info( + async def index_debian_purls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94860,10 +94860,10 @@ async def index_dell_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination]: - """Return vulnerability data stored in index \"dell\" + ) -> ApiResponse[RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination]: + """Return vulnerability data stored in index \"debian-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` :param page: set the page number of the response :type page: int @@ -94935,7 +94935,7 @@ async def index_dell_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dell_get_serialize( + _param = self._index_debian_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94967,7 +94967,7 @@ async def index_dell_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -94983,7 +94983,7 @@ async def index_dell_get_with_http_info( @validate_call - async def index_dell_get_without_preload_content( + async def index_debian_purls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -95022,9 +95022,9 @@ async def index_dell_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dell\" + """Return vulnerability data stored in index \"debian-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` :param page: set the page number of the response :type page: int @@ -95096,7 +95096,7 @@ async def index_dell_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dell_get_serialize( + _param = self._index_debian_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -95128,7 +95128,7 @@ async def index_dell_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -95139,7 +95139,7 @@ async def index_dell_get_without_preload_content( return response_data.response - def _index_dell_get_serialize( + def _index_debian_purls_get_serialize( self, page, limit, @@ -95307,7 +95307,7 @@ def _index_dell_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dell', + resource_path='/v3/index/debian-purls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -95324,7 +95324,7 @@ def _index_dell_get_serialize( @validate_call - async def index_delta_get( + async def index_dell_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -95362,10 +95362,10 @@ async def index_delta_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"delta\" + ) -> RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination: + """Return vulnerability data stored in index \"dell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` :param page: set the page number of the response :type page: int @@ -95437,7 +95437,7 @@ async def index_delta_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_delta_get_serialize( + _param = self._index_dell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -95469,7 +95469,7 @@ async def index_delta_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", '404': "str", '500': "str", } @@ -95485,7 +95485,7 @@ async def index_delta_get( @validate_call - async def index_delta_get_with_http_info( + async def index_dell_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -95523,10 +95523,10 @@ async def index_delta_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"delta\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination]: + """Return vulnerability data stored in index \"dell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` :param page: set the page number of the response :type page: int @@ -95598,7 +95598,7 @@ async def index_delta_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_delta_get_serialize( + _param = self._index_dell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -95630,7 +95630,7 @@ async def index_delta_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", '404': "str", '500': "str", } @@ -95646,7 +95646,7 @@ async def index_delta_get_with_http_info( @validate_call - async def index_delta_get_without_preload_content( + async def index_dell_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -95685,9 +95685,9 @@ async def index_delta_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"delta\" + """Return vulnerability data stored in index \"dell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` :param page: set the page number of the response :type page: int @@ -95759,7 +95759,7 @@ async def index_delta_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_delta_get_serialize( + _param = self._index_dell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -95791,7 +95791,7 @@ async def index_delta_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", '404': "str", '500': "str", } @@ -95802,7 +95802,7 @@ async def index_delta_get_without_preload_content( return response_data.response - def _index_delta_get_serialize( + def _index_dell_get_serialize( self, page, limit, @@ -95970,7 +95970,7 @@ def _index_delta_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/delta', + resource_path='/v3/index/dell', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -95987,7 +95987,7 @@ def _index_delta_get_serialize( @validate_call - async def index_dfn_cert_get( + async def index_delta_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96025,10 +96025,10 @@ async def index_dfn_cert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination: - """Return vulnerability data stored in index \"dfn-cert\" + ) -> RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"delta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` :param page: set the page number of the response :type page: int @@ -96100,7 +96100,7 @@ async def index_dfn_cert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dfn_cert_get_serialize( + _param = self._index_delta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96132,7 +96132,7 @@ async def index_dfn_cert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -96148,7 +96148,7 @@ async def index_dfn_cert_get( @validate_call - async def index_dfn_cert_get_with_http_info( + async def index_delta_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96186,10 +96186,10 @@ async def index_dfn_cert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination]: - """Return vulnerability data stored in index \"dfn-cert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"delta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` :param page: set the page number of the response :type page: int @@ -96261,7 +96261,7 @@ async def index_dfn_cert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dfn_cert_get_serialize( + _param = self._index_delta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96293,7 +96293,7 @@ async def index_dfn_cert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -96309,7 +96309,7 @@ async def index_dfn_cert_get_with_http_info( @validate_call - async def index_dfn_cert_get_without_preload_content( + async def index_delta_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96348,9 +96348,9 @@ async def index_dfn_cert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dfn-cert\" + """Return vulnerability data stored in index \"delta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` :param page: set the page number of the response :type page: int @@ -96422,7 +96422,7 @@ async def index_dfn_cert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dfn_cert_get_serialize( + _param = self._index_delta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96454,7 +96454,7 @@ async def index_dfn_cert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -96465,7 +96465,7 @@ async def index_dfn_cert_get_without_preload_content( return response_data.response - def _index_dfn_cert_get_serialize( + def _index_delta_get_serialize( self, page, limit, @@ -96633,7 +96633,7 @@ def _index_dfn_cert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dfn-cert', + resource_path='/v3/index/delta', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -96650,7 +96650,7 @@ def _index_dfn_cert_get_serialize( @validate_call - async def index_django_get( + async def index_dfn_cert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96688,10 +96688,10 @@ async def index_django_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination: - """Return vulnerability data stored in index \"django\" + ) -> RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination: + """Return vulnerability data stored in index \"dfn-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` :param page: set the page number of the response :type page: int @@ -96763,7 +96763,7 @@ async def index_django_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_django_get_serialize( + _param = self._index_dfn_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96795,7 +96795,7 @@ async def index_django_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", '404': "str", '500': "str", } @@ -96811,7 +96811,7 @@ async def index_django_get( @validate_call - async def index_django_get_with_http_info( + async def index_dfn_cert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96849,10 +96849,10 @@ async def index_django_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination]: - """Return vulnerability data stored in index \"django\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination]: + """Return vulnerability data stored in index \"dfn-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` :param page: set the page number of the response :type page: int @@ -96924,7 +96924,7 @@ async def index_django_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_django_get_serialize( + _param = self._index_dfn_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96956,7 +96956,7 @@ async def index_django_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", '404': "str", '500': "str", } @@ -96972,7 +96972,7 @@ async def index_django_get_with_http_info( @validate_call - async def index_django_get_without_preload_content( + async def index_dfn_cert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -97011,9 +97011,9 @@ async def index_django_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"django\" + """Return vulnerability data stored in index \"dfn-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` :param page: set the page number of the response :type page: int @@ -97085,7 +97085,7 @@ async def index_django_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_django_get_serialize( + _param = self._index_dfn_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -97117,7 +97117,7 @@ async def index_django_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", '404': "str", '500': "str", } @@ -97128,7 +97128,7 @@ async def index_django_get_without_preload_content( return response_data.response - def _index_django_get_serialize( + def _index_dfn_cert_get_serialize( self, page, limit, @@ -97296,7 +97296,7 @@ def _index_django_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/django', + resource_path='/v3/index/dfn-cert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -97313,7 +97313,7 @@ def _index_django_get_serialize( @validate_call - async def index_dlink_get( + async def index_django_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -97351,10 +97351,10 @@ async def index_dlink_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination: - """Return vulnerability data stored in index \"dlink\" + ) -> RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination: + """Return vulnerability data stored in index \"django\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` :param page: set the page number of the response :type page: int @@ -97426,7 +97426,7 @@ async def index_dlink_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dlink_get_serialize( + _param = self._index_django_get_serialize( page=page, limit=limit, cursor=cursor, @@ -97458,7 +97458,7 @@ async def index_dlink_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", '404': "str", '500': "str", } @@ -97474,7 +97474,7 @@ async def index_dlink_get( @validate_call - async def index_dlink_get_with_http_info( + async def index_django_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -97512,10 +97512,10 @@ async def index_dlink_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination]: - """Return vulnerability data stored in index \"dlink\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination]: + """Return vulnerability data stored in index \"django\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` :param page: set the page number of the response :type page: int @@ -97587,7 +97587,7 @@ async def index_dlink_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dlink_get_serialize( + _param = self._index_django_get_serialize( page=page, limit=limit, cursor=cursor, @@ -97619,7 +97619,7 @@ async def index_dlink_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", '404': "str", '500': "str", } @@ -97635,7 +97635,7 @@ async def index_dlink_get_with_http_info( @validate_call - async def index_dlink_get_without_preload_content( + async def index_django_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -97674,9 +97674,9 @@ async def index_dlink_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dlink\" + """Return vulnerability data stored in index \"django\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` :param page: set the page number of the response :type page: int @@ -97748,7 +97748,7 @@ async def index_dlink_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dlink_get_serialize( + _param = self._index_django_get_serialize( page=page, limit=limit, cursor=cursor, @@ -97780,7 +97780,7 @@ async def index_dlink_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", '404': "str", '500': "str", } @@ -97791,7 +97791,7 @@ async def index_dlink_get_without_preload_content( return response_data.response - def _index_dlink_get_serialize( + def _index_django_get_serialize( self, page, limit, @@ -97959,7 +97959,7 @@ def _index_dlink_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dlink', + resource_path='/v3/index/django', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -97976,7 +97976,7 @@ def _index_dlink_get_serialize( @validate_call - async def index_dnn_get( + async def index_dlink_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98014,10 +98014,10 @@ async def index_dnn_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination: - """Return vulnerability data stored in index \"dnn\" + ) -> RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination: + """Return vulnerability data stored in index \"dlink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` :param page: set the page number of the response :type page: int @@ -98089,7 +98089,7 @@ async def index_dnn_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dnn_get_serialize( + _param = self._index_dlink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98121,7 +98121,7 @@ async def index_dnn_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", '404': "str", '500': "str", } @@ -98137,7 +98137,7 @@ async def index_dnn_get( @validate_call - async def index_dnn_get_with_http_info( + async def index_dlink_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98175,10 +98175,10 @@ async def index_dnn_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination]: - """Return vulnerability data stored in index \"dnn\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination]: + """Return vulnerability data stored in index \"dlink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` :param page: set the page number of the response :type page: int @@ -98250,7 +98250,7 @@ async def index_dnn_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dnn_get_serialize( + _param = self._index_dlink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98282,7 +98282,7 @@ async def index_dnn_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", '404': "str", '500': "str", } @@ -98298,7 +98298,7 @@ async def index_dnn_get_with_http_info( @validate_call - async def index_dnn_get_without_preload_content( + async def index_dlink_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98337,9 +98337,9 @@ async def index_dnn_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dnn\" + """Return vulnerability data stored in index \"dlink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` :param page: set the page number of the response :type page: int @@ -98411,7 +98411,7 @@ async def index_dnn_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dnn_get_serialize( + _param = self._index_dlink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98443,7 +98443,7 @@ async def index_dnn_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", '404': "str", '500': "str", } @@ -98454,7 +98454,7 @@ async def index_dnn_get_without_preload_content( return response_data.response - def _index_dnn_get_serialize( + def _index_dlink_get_serialize( self, page, limit, @@ -98622,7 +98622,7 @@ def _index_dnn_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dnn', + resource_path='/v3/index/dlink', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -98639,7 +98639,7 @@ def _index_dnn_get_serialize( @validate_call - async def index_dotcms_get( + async def index_dnn_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98677,10 +98677,10 @@ async def index_dotcms_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination: - """Return vulnerability data stored in index \"dotcms\" + ) -> RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination: + """Return vulnerability data stored in index \"dnn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` :param page: set the page number of the response :type page: int @@ -98752,7 +98752,7 @@ async def index_dotcms_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dotcms_get_serialize( + _param = self._index_dnn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98784,7 +98784,7 @@ async def index_dotcms_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", '404': "str", '500': "str", } @@ -98800,7 +98800,7 @@ async def index_dotcms_get( @validate_call - async def index_dotcms_get_with_http_info( + async def index_dnn_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98838,10 +98838,10 @@ async def index_dotcms_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination]: - """Return vulnerability data stored in index \"dotcms\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination]: + """Return vulnerability data stored in index \"dnn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` :param page: set the page number of the response :type page: int @@ -98913,7 +98913,7 @@ async def index_dotcms_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dotcms_get_serialize( + _param = self._index_dnn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98945,7 +98945,7 @@ async def index_dotcms_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", '404': "str", '500': "str", } @@ -98961,7 +98961,7 @@ async def index_dotcms_get_with_http_info( @validate_call - async def index_dotcms_get_without_preload_content( + async def index_dnn_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -99000,9 +99000,9 @@ async def index_dotcms_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dotcms\" + """Return vulnerability data stored in index \"dnn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` :param page: set the page number of the response :type page: int @@ -99074,7 +99074,7 @@ async def index_dotcms_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dotcms_get_serialize( + _param = self._index_dnn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -99106,7 +99106,7 @@ async def index_dotcms_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", '404': "str", '500': "str", } @@ -99117,7 +99117,7 @@ async def index_dotcms_get_without_preload_content( return response_data.response - def _index_dotcms_get_serialize( + def _index_dnn_get_serialize( self, page, limit, @@ -99285,7 +99285,7 @@ def _index_dotcms_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dotcms', + resource_path='/v3/index/dnn', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -99302,7 +99302,7 @@ def _index_dotcms_get_serialize( @validate_call - async def index_draeger_get( + async def index_dotcms_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -99340,10 +99340,10 @@ async def index_draeger_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"draeger\" + ) -> RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination: + """Return vulnerability data stored in index \"dotcms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` :param page: set the page number of the response :type page: int @@ -99415,7 +99415,7 @@ async def index_draeger_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draeger_get_serialize( + _param = self._index_dotcms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -99447,7 +99447,7 @@ async def index_draeger_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", '404': "str", '500': "str", } @@ -99463,7 +99463,7 @@ async def index_draeger_get( @validate_call - async def index_draeger_get_with_http_info( + async def index_dotcms_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -99501,10 +99501,10 @@ async def index_draeger_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"draeger\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination]: + """Return vulnerability data stored in index \"dotcms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` :param page: set the page number of the response :type page: int @@ -99576,7 +99576,7 @@ async def index_draeger_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draeger_get_serialize( + _param = self._index_dotcms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -99608,7 +99608,7 @@ async def index_draeger_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", '404': "str", '500': "str", } @@ -99624,7 +99624,7 @@ async def index_draeger_get_with_http_info( @validate_call - async def index_draeger_get_without_preload_content( + async def index_dotcms_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -99663,9 +99663,9 @@ async def index_draeger_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"draeger\" + """Return vulnerability data stored in index \"dotcms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` :param page: set the page number of the response :type page: int @@ -99737,7 +99737,7 @@ async def index_draeger_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draeger_get_serialize( + _param = self._index_dotcms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -99769,7 +99769,7 @@ async def index_draeger_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", '404': "str", '500': "str", } @@ -99780,7 +99780,7 @@ async def index_draeger_get_without_preload_content( return response_data.response - def _index_draeger_get_serialize( + def _index_dotcms_get_serialize( self, page, limit, @@ -99948,7 +99948,7 @@ def _index_draeger_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/draeger', + resource_path='/v3/index/dotcms', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -99965,7 +99965,7 @@ def _index_draeger_get_serialize( @validate_call - async def index_dragos_get( + async def index_draeger_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100003,10 +100003,10 @@ async def index_dragos_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"dragos\" + ) -> RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"draeger\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` :param page: set the page number of the response :type page: int @@ -100078,7 +100078,7 @@ async def index_dragos_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dragos_get_serialize( + _param = self._index_draeger_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100110,7 +100110,7 @@ async def index_dragos_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100126,7 +100126,7 @@ async def index_dragos_get( @validate_call - async def index_dragos_get_with_http_info( + async def index_draeger_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100164,10 +100164,10 @@ async def index_dragos_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"dragos\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"draeger\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` :param page: set the page number of the response :type page: int @@ -100239,7 +100239,7 @@ async def index_dragos_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dragos_get_serialize( + _param = self._index_draeger_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100271,7 +100271,7 @@ async def index_dragos_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100287,7 +100287,7 @@ async def index_dragos_get_with_http_info( @validate_call - async def index_dragos_get_without_preload_content( + async def index_draeger_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100326,9 +100326,9 @@ async def index_dragos_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dragos\" + """Return vulnerability data stored in index \"draeger\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` :param page: set the page number of the response :type page: int @@ -100400,7 +100400,7 @@ async def index_dragos_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dragos_get_serialize( + _param = self._index_draeger_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100432,7 +100432,7 @@ async def index_dragos_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100443,7 +100443,7 @@ async def index_dragos_get_without_preload_content( return response_data.response - def _index_dragos_get_serialize( + def _index_draeger_get_serialize( self, page, limit, @@ -100611,7 +100611,7 @@ def _index_dragos_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dragos', + resource_path='/v3/index/draeger', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -100628,7 +100628,7 @@ def _index_dragos_get_serialize( @validate_call - async def index_draytek_get( + async def index_dragos_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100666,10 +100666,10 @@ async def index_draytek_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination: - """Return vulnerability data stored in index \"draytek\" + ) -> RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"dragos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` :param page: set the page number of the response :type page: int @@ -100741,7 +100741,7 @@ async def index_draytek_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draytek_get_serialize( + _param = self._index_dragos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100773,7 +100773,7 @@ async def index_draytek_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100789,7 +100789,7 @@ async def index_draytek_get( @validate_call - async def index_draytek_get_with_http_info( + async def index_dragos_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100827,10 +100827,10 @@ async def index_draytek_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination]: - """Return vulnerability data stored in index \"draytek\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"dragos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` :param page: set the page number of the response :type page: int @@ -100902,7 +100902,7 @@ async def index_draytek_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draytek_get_serialize( + _param = self._index_dragos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100934,7 +100934,7 @@ async def index_draytek_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100950,7 +100950,7 @@ async def index_draytek_get_with_http_info( @validate_call - async def index_draytek_get_without_preload_content( + async def index_dragos_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100989,9 +100989,9 @@ async def index_draytek_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"draytek\" + """Return vulnerability data stored in index \"dragos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` :param page: set the page number of the response :type page: int @@ -101063,7 +101063,7 @@ async def index_draytek_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draytek_get_serialize( + _param = self._index_dragos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -101095,7 +101095,7 @@ async def index_draytek_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -101106,7 +101106,7 @@ async def index_draytek_get_without_preload_content( return response_data.response - def _index_draytek_get_serialize( + def _index_dragos_get_serialize( self, page, limit, @@ -101274,7 +101274,7 @@ def _index_draytek_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/draytek', + resource_path='/v3/index/dragos', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -101291,7 +101291,7 @@ def _index_draytek_get_serialize( @validate_call - async def index_drupal_get( + async def index_draytek_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -101329,10 +101329,10 @@ async def index_drupal_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination: - """Return vulnerability data stored in index \"drupal\" + ) -> RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination: + """Return vulnerability data stored in index \"draytek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` :param page: set the page number of the response :type page: int @@ -101404,7 +101404,7 @@ async def index_drupal_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_drupal_get_serialize( + _param = self._index_draytek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -101436,7 +101436,7 @@ async def index_drupal_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", '404': "str", '500': "str", } @@ -101452,7 +101452,7 @@ async def index_drupal_get( @validate_call - async def index_drupal_get_with_http_info( + async def index_draytek_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -101490,10 +101490,10 @@ async def index_drupal_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination]: - """Return vulnerability data stored in index \"drupal\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination]: + """Return vulnerability data stored in index \"draytek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` :param page: set the page number of the response :type page: int @@ -101565,7 +101565,7 @@ async def index_drupal_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_drupal_get_serialize( + _param = self._index_draytek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -101597,7 +101597,7 @@ async def index_drupal_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", '404': "str", '500': "str", } @@ -101613,7 +101613,7 @@ async def index_drupal_get_with_http_info( @validate_call - async def index_drupal_get_without_preload_content( + async def index_draytek_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -101652,9 +101652,9 @@ async def index_drupal_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"drupal\" + """Return vulnerability data stored in index \"draytek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` :param page: set the page number of the response :type page: int @@ -101726,7 +101726,7 @@ async def index_drupal_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_drupal_get_serialize( + _param = self._index_draytek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -101758,7 +101758,7 @@ async def index_drupal_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", '404': "str", '500': "str", } @@ -101769,7 +101769,7 @@ async def index_drupal_get_without_preload_content( return response_data.response - def _index_drupal_get_serialize( + def _index_draytek_get_serialize( self, page, limit, @@ -101937,7 +101937,7 @@ def _index_drupal_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/drupal', + resource_path='/v3/index/draytek', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -101954,7 +101954,7 @@ def _index_drupal_get_serialize( @validate_call - async def index_eaton_get( + async def index_drupal_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -101992,10 +101992,10 @@ async def index_eaton_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"eaton\" + ) -> RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination: + """Return vulnerability data stored in index \"drupal\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` :param page: set the page number of the response :type page: int @@ -102067,7 +102067,7 @@ async def index_eaton_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eaton_get_serialize( + _param = self._index_drupal_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102099,7 +102099,7 @@ async def index_eaton_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", '404': "str", '500': "str", } @@ -102115,7 +102115,7 @@ async def index_eaton_get( @validate_call - async def index_eaton_get_with_http_info( + async def index_drupal_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102153,10 +102153,10 @@ async def index_eaton_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"eaton\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination]: + """Return vulnerability data stored in index \"drupal\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` :param page: set the page number of the response :type page: int @@ -102228,7 +102228,7 @@ async def index_eaton_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eaton_get_serialize( + _param = self._index_drupal_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102260,7 +102260,7 @@ async def index_eaton_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", '404': "str", '500': "str", } @@ -102276,7 +102276,7 @@ async def index_eaton_get_with_http_info( @validate_call - async def index_eaton_get_without_preload_content( + async def index_drupal_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102315,9 +102315,9 @@ async def index_eaton_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"eaton\" + """Return vulnerability data stored in index \"drupal\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` :param page: set the page number of the response :type page: int @@ -102389,7 +102389,7 @@ async def index_eaton_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eaton_get_serialize( + _param = self._index_drupal_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102421,7 +102421,7 @@ async def index_eaton_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", '404': "str", '500': "str", } @@ -102432,7 +102432,7 @@ async def index_eaton_get_without_preload_content( return response_data.response - def _index_eaton_get_serialize( + def _index_drupal_get_serialize( self, page, limit, @@ -102600,7 +102600,7 @@ def _index_eaton_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/eaton', + resource_path='/v3/index/drupal', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -102617,7 +102617,7 @@ def _index_eaton_get_serialize( @validate_call - async def index_elastic_get( + async def index_eaton_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102655,10 +102655,10 @@ async def index_elastic_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination: - """Return vulnerability data stored in index \"elastic\" + ) -> RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"eaton\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` :param page: set the page number of the response :type page: int @@ -102730,7 +102730,7 @@ async def index_elastic_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elastic_get_serialize( + _param = self._index_eaton_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102762,7 +102762,7 @@ async def index_elastic_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -102778,7 +102778,7 @@ async def index_elastic_get( @validate_call - async def index_elastic_get_with_http_info( + async def index_eaton_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102816,10 +102816,10 @@ async def index_elastic_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination]: - """Return vulnerability data stored in index \"elastic\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"eaton\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` :param page: set the page number of the response :type page: int @@ -102891,7 +102891,7 @@ async def index_elastic_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elastic_get_serialize( + _param = self._index_eaton_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102923,7 +102923,7 @@ async def index_elastic_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -102939,7 +102939,7 @@ async def index_elastic_get_with_http_info( @validate_call - async def index_elastic_get_without_preload_content( + async def index_eaton_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102978,9 +102978,9 @@ async def index_elastic_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"elastic\" + """Return vulnerability data stored in index \"eaton\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` :param page: set the page number of the response :type page: int @@ -103052,7 +103052,7 @@ async def index_elastic_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elastic_get_serialize( + _param = self._index_eaton_get_serialize( page=page, limit=limit, cursor=cursor, @@ -103084,7 +103084,7 @@ async def index_elastic_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -103095,7 +103095,7 @@ async def index_elastic_get_without_preload_content( return response_data.response - def _index_elastic_get_serialize( + def _index_eaton_get_serialize( self, page, limit, @@ -103263,7 +103263,7 @@ def _index_elastic_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/elastic', + resource_path='/v3/index/eaton', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -103280,7 +103280,7 @@ def _index_elastic_get_serialize( @validate_call - async def index_elspec_get( + async def index_elastic_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -103318,10 +103318,10 @@ async def index_elspec_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination: - """Return vulnerability data stored in index \"elspec\" + ) -> RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination: + """Return vulnerability data stored in index \"elastic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` :param page: set the page number of the response :type page: int @@ -103393,7 +103393,7 @@ async def index_elspec_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elspec_get_serialize( + _param = self._index_elastic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -103425,7 +103425,7 @@ async def index_elspec_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", '404': "str", '500': "str", } @@ -103441,7 +103441,7 @@ async def index_elspec_get( @validate_call - async def index_elspec_get_with_http_info( + async def index_elastic_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -103479,10 +103479,10 @@ async def index_elspec_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination]: - """Return vulnerability data stored in index \"elspec\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination]: + """Return vulnerability data stored in index \"elastic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` :param page: set the page number of the response :type page: int @@ -103554,7 +103554,7 @@ async def index_elspec_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elspec_get_serialize( + _param = self._index_elastic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -103586,7 +103586,7 @@ async def index_elspec_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", '404': "str", '500': "str", } @@ -103602,7 +103602,7 @@ async def index_elspec_get_with_http_info( @validate_call - async def index_elspec_get_without_preload_content( + async def index_elastic_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -103641,9 +103641,9 @@ async def index_elspec_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"elspec\" + """Return vulnerability data stored in index \"elastic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` :param page: set the page number of the response :type page: int @@ -103715,7 +103715,7 @@ async def index_elspec_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elspec_get_serialize( + _param = self._index_elastic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -103747,7 +103747,7 @@ async def index_elspec_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", '404': "str", '500': "str", } @@ -103758,7 +103758,7 @@ async def index_elspec_get_without_preload_content( return response_data.response - def _index_elspec_get_serialize( + def _index_elastic_get_serialize( self, page, limit, @@ -103926,7 +103926,7 @@ def _index_elspec_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/elspec', + resource_path='/v3/index/elastic', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -103943,7 +103943,7 @@ def _index_elspec_get_serialize( @validate_call - async def index_emerging_threats_snort_get( + async def index_elspec_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -103981,10 +103981,10 @@ async def index_emerging_threats_snort_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination: - """Return vulnerability data stored in index \"emerging-threats-snort\" + ) -> RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination: + """Return vulnerability data stored in index \"elspec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` :param page: set the page number of the response :type page: int @@ -104056,7 +104056,7 @@ async def index_emerging_threats_snort_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerging_threats_snort_get_serialize( + _param = self._index_elspec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104088,7 +104088,7 @@ async def index_emerging_threats_snort_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", '404': "str", '500': "str", } @@ -104104,7 +104104,7 @@ async def index_emerging_threats_snort_get( @validate_call - async def index_emerging_threats_snort_get_with_http_info( + async def index_elspec_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104142,10 +104142,10 @@ async def index_emerging_threats_snort_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination]: - """Return vulnerability data stored in index \"emerging-threats-snort\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination]: + """Return vulnerability data stored in index \"elspec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` :param page: set the page number of the response :type page: int @@ -104217,7 +104217,7 @@ async def index_emerging_threats_snort_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerging_threats_snort_get_serialize( + _param = self._index_elspec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104249,7 +104249,7 @@ async def index_emerging_threats_snort_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", '404': "str", '500': "str", } @@ -104265,7 +104265,7 @@ async def index_emerging_threats_snort_get_with_http_info( @validate_call - async def index_emerging_threats_snort_get_without_preload_content( + async def index_elspec_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104304,9 +104304,9 @@ async def index_emerging_threats_snort_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"emerging-threats-snort\" + """Return vulnerability data stored in index \"elspec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` :param page: set the page number of the response :type page: int @@ -104378,7 +104378,7 @@ async def index_emerging_threats_snort_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerging_threats_snort_get_serialize( + _param = self._index_elspec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104410,7 +104410,7 @@ async def index_emerging_threats_snort_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", '404': "str", '500': "str", } @@ -104421,7 +104421,7 @@ async def index_emerging_threats_snort_get_without_preload_content( return response_data.response - def _index_emerging_threats_snort_get_serialize( + def _index_elspec_get_serialize( self, page, limit, @@ -104589,7 +104589,7 @@ def _index_emerging_threats_snort_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/emerging-threats-snort', + resource_path='/v3/index/elspec', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -104606,7 +104606,7 @@ def _index_emerging_threats_snort_get_serialize( @validate_call - async def index_emerson_get( + async def index_emerging_threats_snort_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104644,10 +104644,10 @@ async def index_emerson_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"emerson\" + ) -> RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination: + """Return vulnerability data stored in index \"emerging-threats-snort\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` :param page: set the page number of the response :type page: int @@ -104719,7 +104719,7 @@ async def index_emerson_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerson_get_serialize( + _param = self._index_emerging_threats_snort_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104751,7 +104751,7 @@ async def index_emerson_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", '404': "str", '500': "str", } @@ -104767,7 +104767,7 @@ async def index_emerson_get( @validate_call - async def index_emerson_get_with_http_info( + async def index_emerging_threats_snort_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104805,10 +104805,10 @@ async def index_emerson_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"emerson\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination]: + """Return vulnerability data stored in index \"emerging-threats-snort\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` :param page: set the page number of the response :type page: int @@ -104880,7 +104880,7 @@ async def index_emerson_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerson_get_serialize( + _param = self._index_emerging_threats_snort_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104912,7 +104912,7 @@ async def index_emerson_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", '404': "str", '500': "str", } @@ -104928,7 +104928,7 @@ async def index_emerson_get_with_http_info( @validate_call - async def index_emerson_get_without_preload_content( + async def index_emerging_threats_snort_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104967,9 +104967,9 @@ async def index_emerson_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"emerson\" + """Return vulnerability data stored in index \"emerging-threats-snort\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` :param page: set the page number of the response :type page: int @@ -105041,7 +105041,7 @@ async def index_emerson_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerson_get_serialize( + _param = self._index_emerging_threats_snort_get_serialize( page=page, limit=limit, cursor=cursor, @@ -105073,7 +105073,7 @@ async def index_emerson_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", '404': "str", '500': "str", } @@ -105084,7 +105084,7 @@ async def index_emerson_get_without_preload_content( return response_data.response - def _index_emerson_get_serialize( + def _index_emerging_threats_snort_get_serialize( self, page, limit, @@ -105252,7 +105252,7 @@ def _index_emerson_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/emerson', + resource_path='/v3/index/emerging-threats-snort', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -105269,7 +105269,7 @@ def _index_emerson_get_serialize( @validate_call - async def index_endoflife_get( + async def index_emerson_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -105307,10 +105307,10 @@ async def index_endoflife_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination: - """Return vulnerability data stored in index \"endoflife\" + ) -> RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"emerson\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` :param page: set the page number of the response :type page: int @@ -105382,7 +105382,7 @@ async def index_endoflife_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endoflife_get_serialize( + _param = self._index_emerson_get_serialize( page=page, limit=limit, cursor=cursor, @@ -105414,7 +105414,7 @@ async def index_endoflife_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -105430,7 +105430,7 @@ async def index_endoflife_get( @validate_call - async def index_endoflife_get_with_http_info( + async def index_emerson_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -105468,10 +105468,10 @@ async def index_endoflife_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination]: - """Return vulnerability data stored in index \"endoflife\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"emerson\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` :param page: set the page number of the response :type page: int @@ -105543,7 +105543,7 @@ async def index_endoflife_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endoflife_get_serialize( + _param = self._index_emerson_get_serialize( page=page, limit=limit, cursor=cursor, @@ -105575,7 +105575,7 @@ async def index_endoflife_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -105591,7 +105591,7 @@ async def index_endoflife_get_with_http_info( @validate_call - async def index_endoflife_get_without_preload_content( + async def index_emerson_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -105630,9 +105630,9 @@ async def index_endoflife_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"endoflife\" + """Return vulnerability data stored in index \"emerson\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` :param page: set the page number of the response :type page: int @@ -105704,7 +105704,7 @@ async def index_endoflife_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endoflife_get_serialize( + _param = self._index_emerson_get_serialize( page=page, limit=limit, cursor=cursor, @@ -105736,7 +105736,7 @@ async def index_endoflife_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -105747,7 +105747,7 @@ async def index_endoflife_get_without_preload_content( return response_data.response - def _index_endoflife_get_serialize( + def _index_emerson_get_serialize( self, page, limit, @@ -105915,7 +105915,7 @@ def _index_endoflife_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/endoflife', + resource_path='/v3/index/emerson', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -105932,7 +105932,7 @@ def _index_endoflife_get_serialize( @validate_call - async def index_endress_get( + async def index_endoflife_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -105970,10 +105970,10 @@ async def index_endress_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination: - """Return vulnerability data stored in index \"endress\" + ) -> RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination: + """Return vulnerability data stored in index \"endoflife\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` :param page: set the page number of the response :type page: int @@ -106045,7 +106045,7 @@ async def index_endress_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endress_get_serialize( + _param = self._index_endoflife_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106077,7 +106077,7 @@ async def index_endress_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", '404': "str", '500': "str", } @@ -106093,7 +106093,7 @@ async def index_endress_get( @validate_call - async def index_endress_get_with_http_info( + async def index_endoflife_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106131,10 +106131,10 @@ async def index_endress_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination]: - """Return vulnerability data stored in index \"endress\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination]: + """Return vulnerability data stored in index \"endoflife\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` :param page: set the page number of the response :type page: int @@ -106206,7 +106206,7 @@ async def index_endress_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endress_get_serialize( + _param = self._index_endoflife_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106238,7 +106238,7 @@ async def index_endress_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", '404': "str", '500': "str", } @@ -106254,7 +106254,7 @@ async def index_endress_get_with_http_info( @validate_call - async def index_endress_get_without_preload_content( + async def index_endoflife_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106293,9 +106293,9 @@ async def index_endress_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"endress\" + """Return vulnerability data stored in index \"endoflife\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` :param page: set the page number of the response :type page: int @@ -106367,7 +106367,7 @@ async def index_endress_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endress_get_serialize( + _param = self._index_endoflife_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106399,7 +106399,7 @@ async def index_endress_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", '404': "str", '500': "str", } @@ -106410,7 +106410,7 @@ async def index_endress_get_without_preload_content( return response_data.response - def _index_endress_get_serialize( + def _index_endoflife_get_serialize( self, page, limit, @@ -106578,7 +106578,7 @@ def _index_endress_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/endress', + resource_path='/v3/index/endoflife', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -106595,7 +106595,7 @@ def _index_endress_get_serialize( @validate_call - async def index_eol_alibaba_get( + async def index_endress_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106633,10 +106633,10 @@ async def index_eol_alibaba_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination: - """Return vulnerability data stored in index \"eol-alibaba\" + ) -> RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination: + """Return vulnerability data stored in index \"endress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` :param page: set the page number of the response :type page: int @@ -106708,7 +106708,7 @@ async def index_eol_alibaba_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_alibaba_get_serialize( + _param = self._index_endress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106740,7 +106740,7 @@ async def index_eol_alibaba_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", '404': "str", '500': "str", } @@ -106756,7 +106756,7 @@ async def index_eol_alibaba_get( @validate_call - async def index_eol_alibaba_get_with_http_info( + async def index_endress_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106794,10 +106794,10 @@ async def index_eol_alibaba_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination]: - """Return vulnerability data stored in index \"eol-alibaba\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination]: + """Return vulnerability data stored in index \"endress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` :param page: set the page number of the response :type page: int @@ -106869,7 +106869,7 @@ async def index_eol_alibaba_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_alibaba_get_serialize( + _param = self._index_endress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106901,7 +106901,7 @@ async def index_eol_alibaba_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", '404': "str", '500': "str", } @@ -106917,7 +106917,7 @@ async def index_eol_alibaba_get_with_http_info( @validate_call - async def index_eol_alibaba_get_without_preload_content( + async def index_endress_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106956,9 +106956,9 @@ async def index_eol_alibaba_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"eol-alibaba\" + """Return vulnerability data stored in index \"endress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` :param page: set the page number of the response :type page: int @@ -107030,7 +107030,7 @@ async def index_eol_alibaba_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_alibaba_get_serialize( + _param = self._index_endress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -107062,7 +107062,7 @@ async def index_eol_alibaba_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", '404': "str", '500': "str", } @@ -107073,7 +107073,7 @@ async def index_eol_alibaba_get_without_preload_content( return response_data.response - def _index_eol_alibaba_get_serialize( + def _index_endress_get_serialize( self, page, limit, @@ -107241,7 +107241,7 @@ def _index_eol_alibaba_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/eol-alibaba', + resource_path='/v3/index/endress', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -107258,7 +107258,7 @@ def _index_eol_alibaba_get_serialize( @validate_call - async def index_eol_get( + async def index_eol_alibaba_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -107296,10 +107296,10 @@ async def index_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination: - """Return vulnerability data stored in index \"eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination: + """Return vulnerability data stored in index \"eol-alibaba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` :param page: set the page number of the response :type page: int @@ -107371,7 +107371,7 @@ async def index_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_get_serialize( + _param = self._index_eol_alibaba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -107403,7 +107403,7 @@ async def index_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", '404': "str", '500': "str", } @@ -107419,7 +107419,7 @@ async def index_eol_get( @validate_call - async def index_eol_get_with_http_info( + async def index_eol_alibaba_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -107457,10 +107457,10 @@ async def index_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination]: - """Return vulnerability data stored in index \"eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination]: + """Return vulnerability data stored in index \"eol-alibaba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` :param page: set the page number of the response :type page: int @@ -107532,7 +107532,7 @@ async def index_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_get_serialize( + _param = self._index_eol_alibaba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -107564,7 +107564,7 @@ async def index_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", '404': "str", '500': "str", } @@ -107580,7 +107580,7 @@ async def index_eol_get_with_http_info( @validate_call - async def index_eol_get_without_preload_content( + async def index_eol_alibaba_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -107619,9 +107619,9 @@ async def index_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"eol\" + """Return vulnerability data stored in index \"eol-alibaba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` :param page: set the page number of the response :type page: int @@ -107693,7 +107693,7 @@ async def index_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_get_serialize( + _param = self._index_eol_alibaba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -107725,7 +107725,7 @@ async def index_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", '404': "str", '500': "str", } @@ -107736,7 +107736,7 @@ async def index_eol_get_without_preload_content( return response_data.response - def _index_eol_get_serialize( + def _index_eol_alibaba_get_serialize( self, page, limit, @@ -107904,7 +107904,7 @@ def _index_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/eol', + resource_path='/v3/index/eol-alibaba', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -107921,7 +107921,7 @@ def _index_eol_get_serialize( @validate_call - async def index_eol_microsoft_get( + async def index_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -107959,10 +107959,10 @@ async def index_eol_microsoft_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination: - """Return vulnerability data stored in index \"eol-microsoft\" + ) -> RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination: + """Return vulnerability data stored in index \"eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` :param page: set the page number of the response :type page: int @@ -108034,7 +108034,7 @@ async def index_eol_microsoft_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_microsoft_get_serialize( + _param = self._index_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108066,7 +108066,7 @@ async def index_eol_microsoft_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", '404': "str", '500': "str", } @@ -108082,7 +108082,7 @@ async def index_eol_microsoft_get( @validate_call - async def index_eol_microsoft_get_with_http_info( + async def index_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108120,10 +108120,10 @@ async def index_eol_microsoft_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination]: - """Return vulnerability data stored in index \"eol-microsoft\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination]: + """Return vulnerability data stored in index \"eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` :param page: set the page number of the response :type page: int @@ -108195,7 +108195,7 @@ async def index_eol_microsoft_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_microsoft_get_serialize( + _param = self._index_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108227,7 +108227,7 @@ async def index_eol_microsoft_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", '404': "str", '500': "str", } @@ -108243,7 +108243,7 @@ async def index_eol_microsoft_get_with_http_info( @validate_call - async def index_eol_microsoft_get_without_preload_content( + async def index_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108282,9 +108282,9 @@ async def index_eol_microsoft_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"eol-microsoft\" + """Return vulnerability data stored in index \"eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` :param page: set the page number of the response :type page: int @@ -108356,7 +108356,7 @@ async def index_eol_microsoft_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_microsoft_get_serialize( + _param = self._index_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108388,7 +108388,7 @@ async def index_eol_microsoft_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", '404': "str", '500': "str", } @@ -108399,7 +108399,7 @@ async def index_eol_microsoft_get_without_preload_content( return response_data.response - def _index_eol_microsoft_get_serialize( + def _index_eol_get_serialize( self, page, limit, @@ -108567,7 +108567,7 @@ def _index_eol_microsoft_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/eol-microsoft', + resource_path='/v3/index/eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -108584,7 +108584,7 @@ def _index_eol_microsoft_get_serialize( @validate_call - async def index_epss_get( + async def index_eol_microsoft_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108622,10 +108622,10 @@ async def index_epss_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination: - """Return vulnerability data stored in index \"epss\" + ) -> RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination: + """Return vulnerability data stored in index \"eol-microsoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` :param page: set the page number of the response :type page: int @@ -108697,7 +108697,7 @@ async def index_epss_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_epss_get_serialize( + _param = self._index_eol_microsoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108729,7 +108729,7 @@ async def index_epss_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", '404': "str", '500': "str", } @@ -108745,7 +108745,7 @@ async def index_epss_get( @validate_call - async def index_epss_get_with_http_info( + async def index_eol_microsoft_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108783,10 +108783,10 @@ async def index_epss_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination]: - """Return vulnerability data stored in index \"epss\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination]: + """Return vulnerability data stored in index \"eol-microsoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` :param page: set the page number of the response :type page: int @@ -108858,7 +108858,7 @@ async def index_epss_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_epss_get_serialize( + _param = self._index_eol_microsoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108890,7 +108890,7 @@ async def index_epss_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", '404': "str", '500': "str", } @@ -108906,7 +108906,7 @@ async def index_epss_get_with_http_info( @validate_call - async def index_epss_get_without_preload_content( + async def index_eol_microsoft_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108945,9 +108945,9 @@ async def index_epss_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"epss\" + """Return vulnerability data stored in index \"eol-microsoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` :param page: set the page number of the response :type page: int @@ -109019,7 +109019,7 @@ async def index_epss_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_epss_get_serialize( + _param = self._index_eol_microsoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -109051,7 +109051,7 @@ async def index_epss_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", '404': "str", '500': "str", } @@ -109062,7 +109062,7 @@ async def index_epss_get_without_preload_content( return response_data.response - def _index_epss_get_serialize( + def _index_eol_microsoft_get_serialize( self, page, limit, @@ -109230,7 +109230,7 @@ def _index_epss_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/epss', + resource_path='/v3/index/eol-microsoft', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -109247,7 +109247,7 @@ def _index_epss_get_serialize( @validate_call - async def index_euvd_get( + async def index_epss_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -109285,10 +109285,10 @@ async def index_euvd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination: - """Return vulnerability data stored in index \"euvd\" + ) -> RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination: + """Return vulnerability data stored in index \"epss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` :param page: set the page number of the response :type page: int @@ -109360,7 +109360,7 @@ async def index_euvd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_euvd_get_serialize( + _param = self._index_epss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -109392,7 +109392,7 @@ async def index_euvd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", '404': "str", '500': "str", } @@ -109408,7 +109408,7 @@ async def index_euvd_get( @validate_call - async def index_euvd_get_with_http_info( + async def index_epss_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -109446,10 +109446,10 @@ async def index_euvd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination]: - """Return vulnerability data stored in index \"euvd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination]: + """Return vulnerability data stored in index \"epss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` :param page: set the page number of the response :type page: int @@ -109521,7 +109521,7 @@ async def index_euvd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_euvd_get_serialize( + _param = self._index_epss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -109553,7 +109553,7 @@ async def index_euvd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", '404': "str", '500': "str", } @@ -109569,7 +109569,7 @@ async def index_euvd_get_with_http_info( @validate_call - async def index_euvd_get_without_preload_content( + async def index_epss_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -109608,9 +109608,9 @@ async def index_euvd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"euvd\" + """Return vulnerability data stored in index \"epss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` :param page: set the page number of the response :type page: int @@ -109682,7 +109682,7 @@ async def index_euvd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_euvd_get_serialize( + _param = self._index_epss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -109714,7 +109714,7 @@ async def index_euvd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", '404': "str", '500': "str", } @@ -109725,7 +109725,7 @@ async def index_euvd_get_without_preload_content( return response_data.response - def _index_euvd_get_serialize( + def _index_epss_get_serialize( self, page, limit, @@ -109893,7 +109893,7 @@ def _index_euvd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/euvd', + resource_path='/v3/index/epss', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -109910,7 +109910,7 @@ def _index_euvd_get_serialize( @validate_call - async def index_exodus_intel_get( + async def index_euvd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -109948,10 +109948,10 @@ async def index_exodus_intel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination: - """Return vulnerability data stored in index \"exodus-intel\" + ) -> RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination: + """Return vulnerability data stored in index \"euvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` :param page: set the page number of the response :type page: int @@ -110023,7 +110023,7 @@ async def index_exodus_intel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exodus_intel_get_serialize( + _param = self._index_euvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110055,7 +110055,7 @@ async def index_exodus_intel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", '404': "str", '500': "str", } @@ -110071,7 +110071,7 @@ async def index_exodus_intel_get( @validate_call - async def index_exodus_intel_get_with_http_info( + async def index_euvd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110109,10 +110109,10 @@ async def index_exodus_intel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination]: - """Return vulnerability data stored in index \"exodus-intel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination]: + """Return vulnerability data stored in index \"euvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` :param page: set the page number of the response :type page: int @@ -110184,7 +110184,7 @@ async def index_exodus_intel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exodus_intel_get_serialize( + _param = self._index_euvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110216,7 +110216,7 @@ async def index_exodus_intel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", '404': "str", '500': "str", } @@ -110232,7 +110232,7 @@ async def index_exodus_intel_get_with_http_info( @validate_call - async def index_exodus_intel_get_without_preload_content( + async def index_euvd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110271,9 +110271,9 @@ async def index_exodus_intel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exodus-intel\" + """Return vulnerability data stored in index \"euvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` :param page: set the page number of the response :type page: int @@ -110345,7 +110345,7 @@ async def index_exodus_intel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exodus_intel_get_serialize( + _param = self._index_euvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110377,7 +110377,7 @@ async def index_exodus_intel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", '404': "str", '500': "str", } @@ -110388,7 +110388,7 @@ async def index_exodus_intel_get_without_preload_content( return response_data.response - def _index_exodus_intel_get_serialize( + def _index_euvd_get_serialize( self, page, limit, @@ -110556,7 +110556,7 @@ def _index_exodus_intel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exodus-intel', + resource_path='/v3/index/euvd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -110573,7 +110573,7 @@ def _index_exodus_intel_get_serialize( @validate_call - async def index_exploit_chains_get( + async def index_exodus_intel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110611,10 +110611,10 @@ async def index_exploit_chains_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiExploitChainPaginatePagination: - """Return vulnerability data stored in index \"exploit-chains\" + ) -> RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination: + """Return vulnerability data stored in index \"exodus-intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` :param page: set the page number of the response :type page: int @@ -110686,7 +110686,7 @@ async def index_exploit_chains_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploit_chains_get_serialize( + _param = self._index_exodus_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110718,7 +110718,7 @@ async def index_exploit_chains_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", '404': "str", '500': "str", } @@ -110734,7 +110734,7 @@ async def index_exploit_chains_get( @validate_call - async def index_exploit_chains_get_with_http_info( + async def index_exodus_intel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110772,10 +110772,10 @@ async def index_exploit_chains_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitChainPaginatePagination]: - """Return vulnerability data stored in index \"exploit-chains\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination]: + """Return vulnerability data stored in index \"exodus-intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` :param page: set the page number of the response :type page: int @@ -110847,7 +110847,7 @@ async def index_exploit_chains_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploit_chains_get_serialize( + _param = self._index_exodus_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110879,7 +110879,7 @@ async def index_exploit_chains_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", '404': "str", '500': "str", } @@ -110895,7 +110895,7 @@ async def index_exploit_chains_get_with_http_info( @validate_call - async def index_exploit_chains_get_without_preload_content( + async def index_exodus_intel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110934,9 +110934,9 @@ async def index_exploit_chains_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exploit-chains\" + """Return vulnerability data stored in index \"exodus-intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` :param page: set the page number of the response :type page: int @@ -111008,7 +111008,7 @@ async def index_exploit_chains_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploit_chains_get_serialize( + _param = self._index_exodus_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -111040,7 +111040,7 @@ async def index_exploit_chains_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", '404': "str", '500': "str", } @@ -111051,7 +111051,7 @@ async def index_exploit_chains_get_without_preload_content( return response_data.response - def _index_exploit_chains_get_serialize( + def _index_exodus_intel_get_serialize( self, page, limit, @@ -111219,7 +111219,7 @@ def _index_exploit_chains_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exploit-chains', + resource_path='/v3/index/exodus-intel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -111236,7 +111236,7 @@ def _index_exploit_chains_get_serialize( @validate_call - async def index_exploitdb_get( + async def index_exploit_chains_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -111274,10 +111274,10 @@ async def index_exploitdb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination: - """Return vulnerability data stored in index \"exploitdb\" + ) -> RenderResponseWithMetadataArrayApiExploitChainPaginatePagination: + """Return vulnerability data stored in index \"exploit-chains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` :param page: set the page number of the response :type page: int @@ -111349,7 +111349,7 @@ async def index_exploitdb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploitdb_get_serialize( + _param = self._index_exploit_chains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -111381,7 +111381,7 @@ async def index_exploitdb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", '404': "str", '500': "str", } @@ -111397,7 +111397,7 @@ async def index_exploitdb_get( @validate_call - async def index_exploitdb_get_with_http_info( + async def index_exploit_chains_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -111435,10 +111435,10 @@ async def index_exploitdb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination]: - """Return vulnerability data stored in index \"exploitdb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitChainPaginatePagination]: + """Return vulnerability data stored in index \"exploit-chains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` :param page: set the page number of the response :type page: int @@ -111510,7 +111510,7 @@ async def index_exploitdb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploitdb_get_serialize( + _param = self._index_exploit_chains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -111542,7 +111542,7 @@ async def index_exploitdb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", '404': "str", '500': "str", } @@ -111558,7 +111558,7 @@ async def index_exploitdb_get_with_http_info( @validate_call - async def index_exploitdb_get_without_preload_content( + async def index_exploit_chains_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -111597,9 +111597,9 @@ async def index_exploitdb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exploitdb\" + """Return vulnerability data stored in index \"exploit-chains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` :param page: set the page number of the response :type page: int @@ -111671,7 +111671,7 @@ async def index_exploitdb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploitdb_get_serialize( + _param = self._index_exploit_chains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -111703,7 +111703,7 @@ async def index_exploitdb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", '404': "str", '500': "str", } @@ -111714,7 +111714,7 @@ async def index_exploitdb_get_without_preload_content( return response_data.response - def _index_exploitdb_get_serialize( + def _index_exploit_chains_get_serialize( self, page, limit, @@ -111882,7 +111882,7 @@ def _index_exploitdb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exploitdb', + resource_path='/v3/index/exploit-chains', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -111899,7 +111899,7 @@ def _index_exploitdb_get_serialize( @validate_call - async def index_exploits_changelog_get( + async def index_exploitdb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -111937,10 +111937,10 @@ async def index_exploits_changelog_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination: - """Return vulnerability data stored in index \"exploits-changelog\" + ) -> RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination: + """Return vulnerability data stored in index \"exploitdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` :param page: set the page number of the response :type page: int @@ -112012,7 +112012,7 @@ async def index_exploits_changelog_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_changelog_get_serialize( + _param = self._index_exploitdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112044,7 +112044,7 @@ async def index_exploits_changelog_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", '404': "str", '500': "str", } @@ -112060,7 +112060,7 @@ async def index_exploits_changelog_get( @validate_call - async def index_exploits_changelog_get_with_http_info( + async def index_exploitdb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112098,10 +112098,10 @@ async def index_exploits_changelog_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination]: - """Return vulnerability data stored in index \"exploits-changelog\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination]: + """Return vulnerability data stored in index \"exploitdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` :param page: set the page number of the response :type page: int @@ -112173,7 +112173,7 @@ async def index_exploits_changelog_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_changelog_get_serialize( + _param = self._index_exploitdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112205,7 +112205,7 @@ async def index_exploits_changelog_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", '404': "str", '500': "str", } @@ -112221,7 +112221,7 @@ async def index_exploits_changelog_get_with_http_info( @validate_call - async def index_exploits_changelog_get_without_preload_content( + async def index_exploitdb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112260,9 +112260,9 @@ async def index_exploits_changelog_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exploits-changelog\" + """Return vulnerability data stored in index \"exploitdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` :param page: set the page number of the response :type page: int @@ -112334,7 +112334,7 @@ async def index_exploits_changelog_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_changelog_get_serialize( + _param = self._index_exploitdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112366,7 +112366,7 @@ async def index_exploits_changelog_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", '404': "str", '500': "str", } @@ -112377,7 +112377,7 @@ async def index_exploits_changelog_get_without_preload_content( return response_data.response - def _index_exploits_changelog_get_serialize( + def _index_exploitdb_get_serialize( self, page, limit, @@ -112545,7 +112545,7 @@ def _index_exploits_changelog_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exploits-changelog', + resource_path='/v3/index/exploitdb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -112562,7 +112562,7 @@ def _index_exploits_changelog_get_serialize( @validate_call - async def index_exploits_get( + async def index_exploits_changelog_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112600,10 +112600,10 @@ async def index_exploits_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination: - """Return vulnerability data stored in index \"exploits\" + ) -> RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination: + """Return vulnerability data stored in index \"exploits-changelog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` :param page: set the page number of the response :type page: int @@ -112675,7 +112675,7 @@ async def index_exploits_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_get_serialize( + _param = self._index_exploits_changelog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112707,7 +112707,7 @@ async def index_exploits_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", '404': "str", '500': "str", } @@ -112723,7 +112723,7 @@ async def index_exploits_get( @validate_call - async def index_exploits_get_with_http_info( + async def index_exploits_changelog_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112761,10 +112761,10 @@ async def index_exploits_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination]: - """Return vulnerability data stored in index \"exploits\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination]: + """Return vulnerability data stored in index \"exploits-changelog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` :param page: set the page number of the response :type page: int @@ -112836,7 +112836,7 @@ async def index_exploits_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_get_serialize( + _param = self._index_exploits_changelog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112868,7 +112868,7 @@ async def index_exploits_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", '404': "str", '500': "str", } @@ -112884,7 +112884,7 @@ async def index_exploits_get_with_http_info( @validate_call - async def index_exploits_get_without_preload_content( + async def index_exploits_changelog_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112923,9 +112923,9 @@ async def index_exploits_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exploits\" + """Return vulnerability data stored in index \"exploits-changelog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` :param page: set the page number of the response :type page: int @@ -112997,7 +112997,7 @@ async def index_exploits_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_get_serialize( + _param = self._index_exploits_changelog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -113029,7 +113029,7 @@ async def index_exploits_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", '404': "str", '500': "str", } @@ -113040,7 +113040,7 @@ async def index_exploits_get_without_preload_content( return response_data.response - def _index_exploits_get_serialize( + def _index_exploits_changelog_get_serialize( self, page, limit, @@ -113208,7 +113208,7 @@ def _index_exploits_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exploits', + resource_path='/v3/index/exploits-changelog', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -113225,7 +113225,7 @@ def _index_exploits_get_serialize( @validate_call - async def index_f5_get( + async def index_exploits_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -113263,10 +113263,10 @@ async def index_f5_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination: - """Return vulnerability data stored in index \"f5\" + ) -> RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination: + """Return vulnerability data stored in index \"exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` :param page: set the page number of the response :type page: int @@ -113338,7 +113338,7 @@ async def index_f5_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f5_get_serialize( + _param = self._index_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -113370,7 +113370,7 @@ async def index_f5_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", '404': "str", '500': "str", } @@ -113386,7 +113386,7 @@ async def index_f5_get( @validate_call - async def index_f5_get_with_http_info( + async def index_exploits_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -113424,10 +113424,10 @@ async def index_f5_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination]: - """Return vulnerability data stored in index \"f5\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination]: + """Return vulnerability data stored in index \"exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` :param page: set the page number of the response :type page: int @@ -113499,7 +113499,7 @@ async def index_f5_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f5_get_serialize( + _param = self._index_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -113531,7 +113531,7 @@ async def index_f5_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", '404': "str", '500': "str", } @@ -113547,7 +113547,7 @@ async def index_f5_get_with_http_info( @validate_call - async def index_f5_get_without_preload_content( + async def index_exploits_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -113586,9 +113586,9 @@ async def index_f5_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"f5\" + """Return vulnerability data stored in index \"exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` :param page: set the page number of the response :type page: int @@ -113660,7 +113660,7 @@ async def index_f5_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f5_get_serialize( + _param = self._index_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -113692,7 +113692,7 @@ async def index_f5_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", '404': "str", '500': "str", } @@ -113703,7 +113703,7 @@ async def index_f5_get_without_preload_content( return response_data.response - def _index_f5_get_serialize( + def _index_exploits_get_serialize( self, page, limit, @@ -113871,7 +113871,7 @@ def _index_f5_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/f5', + resource_path='/v3/index/exploits', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -113888,7 +113888,7 @@ def _index_f5_get_serialize( @validate_call - async def index_f_secure_get( + async def index_f5_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -113926,10 +113926,10 @@ async def index_f_secure_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination: - """Return vulnerability data stored in index \"f-secure\" + ) -> RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination: + """Return vulnerability data stored in index \"f5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` :param page: set the page number of the response :type page: int @@ -114001,7 +114001,7 @@ async def index_f_secure_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f_secure_get_serialize( + _param = self._index_f5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114033,7 +114033,7 @@ async def index_f_secure_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", '404': "str", '500': "str", } @@ -114049,7 +114049,7 @@ async def index_f_secure_get( @validate_call - async def index_f_secure_get_with_http_info( + async def index_f5_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114087,10 +114087,10 @@ async def index_f_secure_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination]: - """Return vulnerability data stored in index \"f-secure\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination]: + """Return vulnerability data stored in index \"f5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` :param page: set the page number of the response :type page: int @@ -114162,7 +114162,7 @@ async def index_f_secure_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f_secure_get_serialize( + _param = self._index_f5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114194,7 +114194,7 @@ async def index_f_secure_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", '404': "str", '500': "str", } @@ -114210,7 +114210,7 @@ async def index_f_secure_get_with_http_info( @validate_call - async def index_f_secure_get_without_preload_content( + async def index_f5_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114249,9 +114249,9 @@ async def index_f_secure_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"f-secure\" + """Return vulnerability data stored in index \"f5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` :param page: set the page number of the response :type page: int @@ -114323,7 +114323,7 @@ async def index_f_secure_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f_secure_get_serialize( + _param = self._index_f5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114355,7 +114355,7 @@ async def index_f_secure_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", '404': "str", '500': "str", } @@ -114366,7 +114366,7 @@ async def index_f_secure_get_without_preload_content( return response_data.response - def _index_f_secure_get_serialize( + def _index_f5_get_serialize( self, page, limit, @@ -114534,7 +114534,7 @@ def _index_f_secure_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/f-secure', + resource_path='/v3/index/f5', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -114551,7 +114551,7 @@ def _index_f_secure_get_serialize( @validate_call - async def index_fanuc_get( + async def index_f_secure_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114589,10 +114589,10 @@ async def index_fanuc_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination: - """Return vulnerability data stored in index \"fanuc\" + ) -> RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination: + """Return vulnerability data stored in index \"f-secure\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` :param page: set the page number of the response :type page: int @@ -114664,7 +114664,7 @@ async def index_fanuc_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fanuc_get_serialize( + _param = self._index_f_secure_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114696,7 +114696,7 @@ async def index_fanuc_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", '404': "str", '500': "str", } @@ -114712,7 +114712,7 @@ async def index_fanuc_get( @validate_call - async def index_fanuc_get_with_http_info( + async def index_f_secure_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114750,10 +114750,10 @@ async def index_fanuc_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination]: - """Return vulnerability data stored in index \"fanuc\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination]: + """Return vulnerability data stored in index \"f-secure\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` :param page: set the page number of the response :type page: int @@ -114825,7 +114825,7 @@ async def index_fanuc_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fanuc_get_serialize( + _param = self._index_f_secure_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114857,7 +114857,7 @@ async def index_fanuc_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", '404': "str", '500': "str", } @@ -114873,7 +114873,7 @@ async def index_fanuc_get_with_http_info( @validate_call - async def index_fanuc_get_without_preload_content( + async def index_f_secure_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114912,9 +114912,9 @@ async def index_fanuc_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fanuc\" + """Return vulnerability data stored in index \"f-secure\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` :param page: set the page number of the response :type page: int @@ -114986,7 +114986,7 @@ async def index_fanuc_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fanuc_get_serialize( + _param = self._index_f_secure_get_serialize( page=page, limit=limit, cursor=cursor, @@ -115018,7 +115018,7 @@ async def index_fanuc_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", '404': "str", '500': "str", } @@ -115029,7 +115029,7 @@ async def index_fanuc_get_without_preload_content( return response_data.response - def _index_fanuc_get_serialize( + def _index_f_secure_get_serialize( self, page, limit, @@ -115197,7 +115197,7 @@ def _index_fanuc_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fanuc', + resource_path='/v3/index/f-secure', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -115214,7 +115214,7 @@ def _index_fanuc_get_serialize( @validate_call - async def index_fastly_get( + async def index_fanuc_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -115252,10 +115252,10 @@ async def index_fastly_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination: - """Return vulnerability data stored in index \"fastly\" + ) -> RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination: + """Return vulnerability data stored in index \"fanuc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` :param page: set the page number of the response :type page: int @@ -115327,7 +115327,7 @@ async def index_fastly_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fastly_get_serialize( + _param = self._index_fanuc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -115359,7 +115359,7 @@ async def index_fastly_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", '404': "str", '500': "str", } @@ -115375,7 +115375,7 @@ async def index_fastly_get( @validate_call - async def index_fastly_get_with_http_info( + async def index_fanuc_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -115413,10 +115413,10 @@ async def index_fastly_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination]: - """Return vulnerability data stored in index \"fastly\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination]: + """Return vulnerability data stored in index \"fanuc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` :param page: set the page number of the response :type page: int @@ -115488,7 +115488,7 @@ async def index_fastly_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fastly_get_serialize( + _param = self._index_fanuc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -115520,7 +115520,7 @@ async def index_fastly_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", '404': "str", '500': "str", } @@ -115536,7 +115536,7 @@ async def index_fastly_get_with_http_info( @validate_call - async def index_fastly_get_without_preload_content( + async def index_fanuc_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -115575,9 +115575,9 @@ async def index_fastly_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fastly\" + """Return vulnerability data stored in index \"fanuc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` :param page: set the page number of the response :type page: int @@ -115649,7 +115649,7 @@ async def index_fastly_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fastly_get_serialize( + _param = self._index_fanuc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -115681,7 +115681,7 @@ async def index_fastly_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", '404': "str", '500': "str", } @@ -115692,7 +115692,7 @@ async def index_fastly_get_without_preload_content( return response_data.response - def _index_fastly_get_serialize( + def _index_fanuc_get_serialize( self, page, limit, @@ -115860,7 +115860,7 @@ def _index_fastly_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fastly', + resource_path='/v3/index/fanuc', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -115877,7 +115877,7 @@ def _index_fastly_get_serialize( @validate_call - async def index_fedora_get( + async def index_fastly_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -115915,10 +115915,10 @@ async def index_fedora_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination: - """Return vulnerability data stored in index \"fedora\" + ) -> RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination: + """Return vulnerability data stored in index \"fastly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` :param page: set the page number of the response :type page: int @@ -115990,7 +115990,7 @@ async def index_fedora_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fedora_get_serialize( + _param = self._index_fastly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116022,7 +116022,7 @@ async def index_fedora_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", '404': "str", '500': "str", } @@ -116038,7 +116038,7 @@ async def index_fedora_get( @validate_call - async def index_fedora_get_with_http_info( + async def index_fastly_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116076,10 +116076,10 @@ async def index_fedora_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination]: - """Return vulnerability data stored in index \"fedora\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination]: + """Return vulnerability data stored in index \"fastly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` :param page: set the page number of the response :type page: int @@ -116151,7 +116151,7 @@ async def index_fedora_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fedora_get_serialize( + _param = self._index_fastly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116183,7 +116183,7 @@ async def index_fedora_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", '404': "str", '500': "str", } @@ -116199,7 +116199,7 @@ async def index_fedora_get_with_http_info( @validate_call - async def index_fedora_get_without_preload_content( + async def index_fastly_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116238,9 +116238,9 @@ async def index_fedora_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fedora\" + """Return vulnerability data stored in index \"fastly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` :param page: set the page number of the response :type page: int @@ -116312,7 +116312,7 @@ async def index_fedora_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fedora_get_serialize( + _param = self._index_fastly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116344,7 +116344,7 @@ async def index_fedora_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", '404': "str", '500': "str", } @@ -116355,7 +116355,7 @@ async def index_fedora_get_without_preload_content( return response_data.response - def _index_fedora_get_serialize( + def _index_fastly_get_serialize( self, page, limit, @@ -116523,7 +116523,7 @@ def _index_fedora_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fedora', + resource_path='/v3/index/fastly', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -116540,7 +116540,7 @@ def _index_fedora_get_serialize( @validate_call - async def index_festo_get( + async def index_fedora_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116578,10 +116578,10 @@ async def index_festo_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination: - """Return vulnerability data stored in index \"festo\" + ) -> RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination: + """Return vulnerability data stored in index \"fedora\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` :param page: set the page number of the response :type page: int @@ -116653,7 +116653,7 @@ async def index_festo_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_festo_get_serialize( + _param = self._index_fedora_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116685,7 +116685,7 @@ async def index_festo_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", '404': "str", '500': "str", } @@ -116701,7 +116701,7 @@ async def index_festo_get( @validate_call - async def index_festo_get_with_http_info( + async def index_fedora_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116739,10 +116739,10 @@ async def index_festo_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination]: - """Return vulnerability data stored in index \"festo\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination]: + """Return vulnerability data stored in index \"fedora\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` :param page: set the page number of the response :type page: int @@ -116814,7 +116814,7 @@ async def index_festo_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_festo_get_serialize( + _param = self._index_fedora_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116846,7 +116846,7 @@ async def index_festo_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", '404': "str", '500': "str", } @@ -116862,7 +116862,7 @@ async def index_festo_get_with_http_info( @validate_call - async def index_festo_get_without_preload_content( + async def index_fedora_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116901,9 +116901,9 @@ async def index_festo_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"festo\" + """Return vulnerability data stored in index \"fedora\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` :param page: set the page number of the response :type page: int @@ -116975,7 +116975,7 @@ async def index_festo_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_festo_get_serialize( + _param = self._index_fedora_get_serialize( page=page, limit=limit, cursor=cursor, @@ -117007,7 +117007,7 @@ async def index_festo_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", '404': "str", '500': "str", } @@ -117018,7 +117018,7 @@ async def index_festo_get_without_preload_content( return response_data.response - def _index_festo_get_serialize( + def _index_fedora_get_serialize( self, page, limit, @@ -117186,7 +117186,7 @@ def _index_festo_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/festo', + resource_path='/v3/index/fedora', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -117203,7 +117203,7 @@ def _index_festo_get_serialize( @validate_call - async def index_filecloud_get( + async def index_festo_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -117241,10 +117241,10 @@ async def index_filecloud_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination: - """Return vulnerability data stored in index \"filecloud\" + ) -> RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination: + """Return vulnerability data stored in index \"festo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` :param page: set the page number of the response :type page: int @@ -117316,7 +117316,7 @@ async def index_filecloud_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filecloud_get_serialize( + _param = self._index_festo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -117348,7 +117348,7 @@ async def index_filecloud_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", '404': "str", '500': "str", } @@ -117364,7 +117364,7 @@ async def index_filecloud_get( @validate_call - async def index_filecloud_get_with_http_info( + async def index_festo_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -117402,10 +117402,10 @@ async def index_filecloud_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination]: - """Return vulnerability data stored in index \"filecloud\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination]: + """Return vulnerability data stored in index \"festo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` :param page: set the page number of the response :type page: int @@ -117477,7 +117477,7 @@ async def index_filecloud_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filecloud_get_serialize( + _param = self._index_festo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -117509,7 +117509,7 @@ async def index_filecloud_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", '404': "str", '500': "str", } @@ -117525,7 +117525,7 @@ async def index_filecloud_get_with_http_info( @validate_call - async def index_filecloud_get_without_preload_content( + async def index_festo_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -117564,9 +117564,9 @@ async def index_filecloud_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"filecloud\" + """Return vulnerability data stored in index \"festo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` :param page: set the page number of the response :type page: int @@ -117638,7 +117638,7 @@ async def index_filecloud_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filecloud_get_serialize( + _param = self._index_festo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -117670,7 +117670,7 @@ async def index_filecloud_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", '404': "str", '500': "str", } @@ -117681,7 +117681,7 @@ async def index_filecloud_get_without_preload_content( return response_data.response - def _index_filecloud_get_serialize( + def _index_festo_get_serialize( self, page, limit, @@ -117849,7 +117849,7 @@ def _index_filecloud_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/filecloud', + resource_path='/v3/index/festo', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -117866,7 +117866,7 @@ def _index_filecloud_get_serialize( @validate_call - async def index_filezilla_get( + async def index_filecloud_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -117904,10 +117904,10 @@ async def index_filezilla_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination: - """Return vulnerability data stored in index \"filezilla\" + ) -> RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination: + """Return vulnerability data stored in index \"filecloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` :param page: set the page number of the response :type page: int @@ -117979,7 +117979,7 @@ async def index_filezilla_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filezilla_get_serialize( + _param = self._index_filecloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118011,7 +118011,7 @@ async def index_filezilla_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", '404': "str", '500': "str", } @@ -118027,7 +118027,7 @@ async def index_filezilla_get( @validate_call - async def index_filezilla_get_with_http_info( + async def index_filecloud_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118065,10 +118065,10 @@ async def index_filezilla_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination]: - """Return vulnerability data stored in index \"filezilla\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination]: + """Return vulnerability data stored in index \"filecloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` :param page: set the page number of the response :type page: int @@ -118140,7 +118140,7 @@ async def index_filezilla_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filezilla_get_serialize( + _param = self._index_filecloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118172,7 +118172,7 @@ async def index_filezilla_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", '404': "str", '500': "str", } @@ -118188,7 +118188,7 @@ async def index_filezilla_get_with_http_info( @validate_call - async def index_filezilla_get_without_preload_content( + async def index_filecloud_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118227,9 +118227,9 @@ async def index_filezilla_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"filezilla\" + """Return vulnerability data stored in index \"filecloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` :param page: set the page number of the response :type page: int @@ -118301,7 +118301,7 @@ async def index_filezilla_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filezilla_get_serialize( + _param = self._index_filecloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118333,7 +118333,7 @@ async def index_filezilla_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", '404': "str", '500': "str", } @@ -118344,7 +118344,7 @@ async def index_filezilla_get_without_preload_content( return response_data.response - def _index_filezilla_get_serialize( + def _index_filecloud_get_serialize( self, page, limit, @@ -118512,7 +118512,7 @@ def _index_filezilla_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/filezilla', + resource_path='/v3/index/filecloud', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -118529,7 +118529,7 @@ def _index_filezilla_get_serialize( @validate_call - async def index_flatt_security_get( + async def index_filezilla_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118567,10 +118567,10 @@ async def index_flatt_security_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination: - """Return vulnerability data stored in index \"flatt-security\" + ) -> RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination: + """Return vulnerability data stored in index \"filezilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` :param page: set the page number of the response :type page: int @@ -118642,7 +118642,7 @@ async def index_flatt_security_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_flatt_security_get_serialize( + _param = self._index_filezilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118674,7 +118674,7 @@ async def index_flatt_security_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", '404': "str", '500': "str", } @@ -118690,7 +118690,7 @@ async def index_flatt_security_get( @validate_call - async def index_flatt_security_get_with_http_info( + async def index_filezilla_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118728,10 +118728,10 @@ async def index_flatt_security_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination]: - """Return vulnerability data stored in index \"flatt-security\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination]: + """Return vulnerability data stored in index \"filezilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` :param page: set the page number of the response :type page: int @@ -118803,7 +118803,7 @@ async def index_flatt_security_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_flatt_security_get_serialize( + _param = self._index_filezilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118835,7 +118835,7 @@ async def index_flatt_security_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", '404': "str", '500': "str", } @@ -118851,7 +118851,7 @@ async def index_flatt_security_get_with_http_info( @validate_call - async def index_flatt_security_get_without_preload_content( + async def index_filezilla_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118890,9 +118890,9 @@ async def index_flatt_security_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"flatt-security\" + """Return vulnerability data stored in index \"filezilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` :param page: set the page number of the response :type page: int @@ -118964,7 +118964,7 @@ async def index_flatt_security_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_flatt_security_get_serialize( + _param = self._index_filezilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118996,7 +118996,7 @@ async def index_flatt_security_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", '404': "str", '500': "str", } @@ -119007,7 +119007,7 @@ async def index_flatt_security_get_without_preload_content( return response_data.response - def _index_flatt_security_get_serialize( + def _index_filezilla_get_serialize( self, page, limit, @@ -119175,7 +119175,7 @@ def _index_flatt_security_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/flatt-security', + resource_path='/v3/index/filezilla', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -119192,7 +119192,7 @@ def _index_flatt_security_get_serialize( @validate_call - async def index_forgerock_get( + async def index_flatt_security_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -119230,10 +119230,10 @@ async def index_forgerock_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination: - """Return vulnerability data stored in index \"forgerock\" + ) -> RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination: + """Return vulnerability data stored in index \"flatt-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` :param page: set the page number of the response :type page: int @@ -119305,7 +119305,7 @@ async def index_forgerock_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_forgerock_get_serialize( + _param = self._index_flatt_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -119337,7 +119337,7 @@ async def index_forgerock_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", '404': "str", '500': "str", } @@ -119353,7 +119353,7 @@ async def index_forgerock_get( @validate_call - async def index_forgerock_get_with_http_info( + async def index_flatt_security_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -119391,10 +119391,10 @@ async def index_forgerock_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination]: - """Return vulnerability data stored in index \"forgerock\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination]: + """Return vulnerability data stored in index \"flatt-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` :param page: set the page number of the response :type page: int @@ -119466,7 +119466,7 @@ async def index_forgerock_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_forgerock_get_serialize( + _param = self._index_flatt_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -119498,7 +119498,7 @@ async def index_forgerock_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", '404': "str", '500': "str", } @@ -119514,7 +119514,7 @@ async def index_forgerock_get_with_http_info( @validate_call - async def index_forgerock_get_without_preload_content( + async def index_flatt_security_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -119553,9 +119553,9 @@ async def index_forgerock_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"forgerock\" + """Return vulnerability data stored in index \"flatt-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` :param page: set the page number of the response :type page: int @@ -119627,7 +119627,7 @@ async def index_forgerock_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_forgerock_get_serialize( + _param = self._index_flatt_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -119659,7 +119659,7 @@ async def index_forgerock_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", '404': "str", '500': "str", } @@ -119670,7 +119670,7 @@ async def index_forgerock_get_without_preload_content( return response_data.response - def _index_forgerock_get_serialize( + def _index_flatt_security_get_serialize( self, page, limit, @@ -119838,7 +119838,7 @@ def _index_forgerock_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/forgerock', + resource_path='/v3/index/flatt-security', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -119855,7 +119855,7 @@ def _index_forgerock_get_serialize( @validate_call - async def index_fortinet_get( + async def index_forgerock_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -119893,10 +119893,10 @@ async def index_fortinet_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"fortinet\" + ) -> RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination: + """Return vulnerability data stored in index \"forgerock\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` :param page: set the page number of the response :type page: int @@ -119968,7 +119968,7 @@ async def index_fortinet_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_get_serialize( + _param = self._index_forgerock_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120000,7 +120000,7 @@ async def index_fortinet_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", '404': "str", '500': "str", } @@ -120016,7 +120016,7 @@ async def index_fortinet_get( @validate_call - async def index_fortinet_get_with_http_info( + async def index_forgerock_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120054,10 +120054,10 @@ async def index_fortinet_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"fortinet\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination]: + """Return vulnerability data stored in index \"forgerock\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` :param page: set the page number of the response :type page: int @@ -120129,7 +120129,7 @@ async def index_fortinet_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_get_serialize( + _param = self._index_forgerock_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120161,7 +120161,7 @@ async def index_fortinet_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", '404': "str", '500': "str", } @@ -120177,7 +120177,7 @@ async def index_fortinet_get_with_http_info( @validate_call - async def index_fortinet_get_without_preload_content( + async def index_forgerock_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120216,9 +120216,9 @@ async def index_fortinet_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fortinet\" + """Return vulnerability data stored in index \"forgerock\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` :param page: set the page number of the response :type page: int @@ -120290,7 +120290,7 @@ async def index_fortinet_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_get_serialize( + _param = self._index_forgerock_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120322,7 +120322,7 @@ async def index_fortinet_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", '404': "str", '500': "str", } @@ -120333,7 +120333,7 @@ async def index_fortinet_get_without_preload_content( return response_data.response - def _index_fortinet_get_serialize( + def _index_forgerock_get_serialize( self, page, limit, @@ -120501,7 +120501,7 @@ def _index_fortinet_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fortinet', + resource_path='/v3/index/forgerock', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -120518,7 +120518,7 @@ def _index_fortinet_get_serialize( @validate_call - async def index_fortinet_ips_get( + async def index_fortinet_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120556,10 +120556,10 @@ async def index_fortinet_ips_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination: - """Return vulnerability data stored in index \"fortinet-ips\" + ) -> RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"fortinet\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` :param page: set the page number of the response :type page: int @@ -120631,7 +120631,7 @@ async def index_fortinet_ips_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_ips_get_serialize( + _param = self._index_fortinet_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120663,7 +120663,7 @@ async def index_fortinet_ips_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -120679,7 +120679,7 @@ async def index_fortinet_ips_get( @validate_call - async def index_fortinet_ips_get_with_http_info( + async def index_fortinet_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120717,10 +120717,10 @@ async def index_fortinet_ips_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination]: - """Return vulnerability data stored in index \"fortinet-ips\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"fortinet\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` :param page: set the page number of the response :type page: int @@ -120792,7 +120792,7 @@ async def index_fortinet_ips_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_ips_get_serialize( + _param = self._index_fortinet_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120824,7 +120824,7 @@ async def index_fortinet_ips_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -120840,7 +120840,7 @@ async def index_fortinet_ips_get_with_http_info( @validate_call - async def index_fortinet_ips_get_without_preload_content( + async def index_fortinet_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120879,9 +120879,9 @@ async def index_fortinet_ips_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fortinet-ips\" + """Return vulnerability data stored in index \"fortinet\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` :param page: set the page number of the response :type page: int @@ -120953,7 +120953,7 @@ async def index_fortinet_ips_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_ips_get_serialize( + _param = self._index_fortinet_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120985,7 +120985,7 @@ async def index_fortinet_ips_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -120996,7 +120996,7 @@ async def index_fortinet_ips_get_without_preload_content( return response_data.response - def _index_fortinet_ips_get_serialize( + def _index_fortinet_get_serialize( self, page, limit, @@ -121164,7 +121164,7 @@ def _index_fortinet_ips_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fortinet-ips', + resource_path='/v3/index/fortinet', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -121181,7 +121181,7 @@ def _index_fortinet_ips_get_serialize( @validate_call - async def index_foxit_get( + async def index_fortinet_ips_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -121219,10 +121219,10 @@ async def index_foxit_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination: - """Return vulnerability data stored in index \"foxit\" + ) -> RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination: + """Return vulnerability data stored in index \"fortinet-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` :param page: set the page number of the response :type page: int @@ -121294,7 +121294,7 @@ async def index_foxit_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_foxit_get_serialize( + _param = self._index_fortinet_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -121326,7 +121326,7 @@ async def index_foxit_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", '404': "str", '500': "str", } @@ -121342,7 +121342,7 @@ async def index_foxit_get( @validate_call - async def index_foxit_get_with_http_info( + async def index_fortinet_ips_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -121380,10 +121380,10 @@ async def index_foxit_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination]: - """Return vulnerability data stored in index \"foxit\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination]: + """Return vulnerability data stored in index \"fortinet-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` :param page: set the page number of the response :type page: int @@ -121455,7 +121455,7 @@ async def index_foxit_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_foxit_get_serialize( + _param = self._index_fortinet_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -121487,7 +121487,7 @@ async def index_foxit_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", '404': "str", '500': "str", } @@ -121503,7 +121503,7 @@ async def index_foxit_get_with_http_info( @validate_call - async def index_foxit_get_without_preload_content( + async def index_fortinet_ips_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -121542,9 +121542,9 @@ async def index_foxit_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"foxit\" + """Return vulnerability data stored in index \"fortinet-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` :param page: set the page number of the response :type page: int @@ -121616,7 +121616,7 @@ async def index_foxit_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_foxit_get_serialize( + _param = self._index_fortinet_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -121648,7 +121648,7 @@ async def index_foxit_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", '404': "str", '500': "str", } @@ -121659,7 +121659,7 @@ async def index_foxit_get_without_preload_content( return response_data.response - def _index_foxit_get_serialize( + def _index_fortinet_ips_get_serialize( self, page, limit, @@ -121827,7 +121827,7 @@ def _index_foxit_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/foxit', + resource_path='/v3/index/fortinet-ips', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -121844,7 +121844,7 @@ def _index_foxit_get_serialize( @validate_call - async def index_freebsd_get( + async def index_foxit_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -121882,10 +121882,10 @@ async def index_freebsd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"freebsd\" + ) -> RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination: + """Return vulnerability data stored in index \"foxit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` :param page: set the page number of the response :type page: int @@ -121957,7 +121957,7 @@ async def index_freebsd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_freebsd_get_serialize( + _param = self._index_foxit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -121989,7 +121989,7 @@ async def index_freebsd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", '404': "str", '500': "str", } @@ -122005,7 +122005,7 @@ async def index_freebsd_get( @validate_call - async def index_freebsd_get_with_http_info( + async def index_foxit_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122043,10 +122043,10 @@ async def index_freebsd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"freebsd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination]: + """Return vulnerability data stored in index \"foxit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` :param page: set the page number of the response :type page: int @@ -122118,7 +122118,7 @@ async def index_freebsd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_freebsd_get_serialize( + _param = self._index_foxit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122150,7 +122150,7 @@ async def index_freebsd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", '404': "str", '500': "str", } @@ -122166,7 +122166,7 @@ async def index_freebsd_get_with_http_info( @validate_call - async def index_freebsd_get_without_preload_content( + async def index_foxit_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122205,9 +122205,9 @@ async def index_freebsd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"freebsd\" + """Return vulnerability data stored in index \"foxit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` :param page: set the page number of the response :type page: int @@ -122279,7 +122279,7 @@ async def index_freebsd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_freebsd_get_serialize( + _param = self._index_foxit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122311,7 +122311,7 @@ async def index_freebsd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", '404': "str", '500': "str", } @@ -122322,7 +122322,7 @@ async def index_freebsd_get_without_preload_content( return response_data.response - def _index_freebsd_get_serialize( + def _index_foxit_get_serialize( self, page, limit, @@ -122490,7 +122490,7 @@ def _index_freebsd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/freebsd', + resource_path='/v3/index/foxit', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -122507,7 +122507,7 @@ def _index_freebsd_get_serialize( @validate_call - async def index_fresenius_get( + async def index_freebsd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122545,10 +122545,10 @@ async def index_fresenius_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination: - """Return vulnerability data stored in index \"fresenius\" + ) -> RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"freebsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` :param page: set the page number of the response :type page: int @@ -122620,7 +122620,7 @@ async def index_fresenius_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fresenius_get_serialize( + _param = self._index_freebsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122652,7 +122652,7 @@ async def index_fresenius_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -122668,7 +122668,7 @@ async def index_fresenius_get( @validate_call - async def index_fresenius_get_with_http_info( + async def index_freebsd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122706,10 +122706,10 @@ async def index_fresenius_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination]: - """Return vulnerability data stored in index \"fresenius\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"freebsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` :param page: set the page number of the response :type page: int @@ -122781,7 +122781,7 @@ async def index_fresenius_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fresenius_get_serialize( + _param = self._index_freebsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122813,7 +122813,7 @@ async def index_fresenius_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -122829,7 +122829,7 @@ async def index_fresenius_get_with_http_info( @validate_call - async def index_fresenius_get_without_preload_content( + async def index_freebsd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122868,9 +122868,9 @@ async def index_fresenius_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fresenius\" + """Return vulnerability data stored in index \"freebsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` :param page: set the page number of the response :type page: int @@ -122942,7 +122942,7 @@ async def index_fresenius_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fresenius_get_serialize( + _param = self._index_freebsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122974,7 +122974,7 @@ async def index_fresenius_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -122985,7 +122985,7 @@ async def index_fresenius_get_without_preload_content( return response_data.response - def _index_fresenius_get_serialize( + def _index_freebsd_get_serialize( self, page, limit, @@ -123153,7 +123153,7 @@ def _index_fresenius_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fresenius', + resource_path='/v3/index/freebsd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -123170,7 +123170,7 @@ def _index_fresenius_get_serialize( @validate_call - async def index_gallagher_get( + async def index_fresenius_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -123208,10 +123208,10 @@ async def index_gallagher_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination: - """Return vulnerability data stored in index \"gallagher\" + ) -> RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination: + """Return vulnerability data stored in index \"fresenius\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` :param page: set the page number of the response :type page: int @@ -123283,7 +123283,7 @@ async def index_gallagher_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gallagher_get_serialize( + _param = self._index_fresenius_get_serialize( page=page, limit=limit, cursor=cursor, @@ -123315,7 +123315,7 @@ async def index_gallagher_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", '404': "str", '500': "str", } @@ -123331,7 +123331,7 @@ async def index_gallagher_get( @validate_call - async def index_gallagher_get_with_http_info( + async def index_fresenius_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -123369,10 +123369,10 @@ async def index_gallagher_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination]: - """Return vulnerability data stored in index \"gallagher\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination]: + """Return vulnerability data stored in index \"fresenius\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` :param page: set the page number of the response :type page: int @@ -123444,7 +123444,7 @@ async def index_gallagher_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gallagher_get_serialize( + _param = self._index_fresenius_get_serialize( page=page, limit=limit, cursor=cursor, @@ -123476,7 +123476,7 @@ async def index_gallagher_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", '404': "str", '500': "str", } @@ -123492,7 +123492,7 @@ async def index_gallagher_get_with_http_info( @validate_call - async def index_gallagher_get_without_preload_content( + async def index_fresenius_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -123531,9 +123531,9 @@ async def index_gallagher_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gallagher\" + """Return vulnerability data stored in index \"fresenius\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` :param page: set the page number of the response :type page: int @@ -123605,7 +123605,7 @@ async def index_gallagher_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gallagher_get_serialize( + _param = self._index_fresenius_get_serialize( page=page, limit=limit, cursor=cursor, @@ -123637,7 +123637,7 @@ async def index_gallagher_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", '404': "str", '500': "str", } @@ -123648,7 +123648,7 @@ async def index_gallagher_get_without_preload_content( return response_data.response - def _index_gallagher_get_serialize( + def _index_fresenius_get_serialize( self, page, limit, @@ -123816,7 +123816,7 @@ def _index_gallagher_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gallagher', + resource_path='/v3/index/fresenius', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -123833,7 +123833,7 @@ def _index_gallagher_get_serialize( @validate_call - async def index_gcp_get( + async def index_gallagher_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -123871,10 +123871,10 @@ async def index_gcp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination: - """Return vulnerability data stored in index \"gcp\" + ) -> RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination: + """Return vulnerability data stored in index \"gallagher\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` :param page: set the page number of the response :type page: int @@ -123946,7 +123946,7 @@ async def index_gcp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gcp_get_serialize( + _param = self._index_gallagher_get_serialize( page=page, limit=limit, cursor=cursor, @@ -123978,7 +123978,7 @@ async def index_gcp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", '404': "str", '500': "str", } @@ -123994,7 +123994,7 @@ async def index_gcp_get( @validate_call - async def index_gcp_get_with_http_info( + async def index_gallagher_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124032,10 +124032,10 @@ async def index_gcp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination]: - """Return vulnerability data stored in index \"gcp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination]: + """Return vulnerability data stored in index \"gallagher\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` :param page: set the page number of the response :type page: int @@ -124107,7 +124107,7 @@ async def index_gcp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gcp_get_serialize( + _param = self._index_gallagher_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124139,7 +124139,7 @@ async def index_gcp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", '404': "str", '500': "str", } @@ -124155,7 +124155,7 @@ async def index_gcp_get_with_http_info( @validate_call - async def index_gcp_get_without_preload_content( + async def index_gallagher_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124194,9 +124194,9 @@ async def index_gcp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gcp\" + """Return vulnerability data stored in index \"gallagher\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` :param page: set the page number of the response :type page: int @@ -124268,7 +124268,7 @@ async def index_gcp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gcp_get_serialize( + _param = self._index_gallagher_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124300,7 +124300,7 @@ async def index_gcp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", '404': "str", '500': "str", } @@ -124311,7 +124311,7 @@ async def index_gcp_get_without_preload_content( return response_data.response - def _index_gcp_get_serialize( + def _index_gallagher_get_serialize( self, page, limit, @@ -124479,7 +124479,7 @@ def _index_gcp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gcp', + resource_path='/v3/index/gallagher', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -124496,7 +124496,7 @@ def _index_gcp_get_serialize( @validate_call - async def index_ge_gas_get( + async def index_gcp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124534,10 +124534,10 @@ async def index_ge_gas_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination: - """Return vulnerability data stored in index \"ge-gas\" + ) -> RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination: + """Return vulnerability data stored in index \"gcp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` :param page: set the page number of the response :type page: int @@ -124609,7 +124609,7 @@ async def index_ge_gas_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_gas_get_serialize( + _param = self._index_gcp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124641,7 +124641,7 @@ async def index_ge_gas_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", '404': "str", '500': "str", } @@ -124657,7 +124657,7 @@ async def index_ge_gas_get( @validate_call - async def index_ge_gas_get_with_http_info( + async def index_gcp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124695,10 +124695,10 @@ async def index_ge_gas_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination]: - """Return vulnerability data stored in index \"ge-gas\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination]: + """Return vulnerability data stored in index \"gcp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` :param page: set the page number of the response :type page: int @@ -124770,7 +124770,7 @@ async def index_ge_gas_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_gas_get_serialize( + _param = self._index_gcp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124802,7 +124802,7 @@ async def index_ge_gas_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", '404': "str", '500': "str", } @@ -124818,7 +124818,7 @@ async def index_ge_gas_get_with_http_info( @validate_call - async def index_ge_gas_get_without_preload_content( + async def index_gcp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124857,9 +124857,9 @@ async def index_ge_gas_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ge-gas\" + """Return vulnerability data stored in index \"gcp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` :param page: set the page number of the response :type page: int @@ -124931,7 +124931,7 @@ async def index_ge_gas_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_gas_get_serialize( + _param = self._index_gcp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124963,7 +124963,7 @@ async def index_ge_gas_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", '404': "str", '500': "str", } @@ -124974,7 +124974,7 @@ async def index_ge_gas_get_without_preload_content( return response_data.response - def _index_ge_gas_get_serialize( + def _index_gcp_get_serialize( self, page, limit, @@ -125142,7 +125142,7 @@ def _index_ge_gas_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ge-gas', + resource_path='/v3/index/gcp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -125159,7 +125159,7 @@ def _index_ge_gas_get_serialize( @validate_call - async def index_ge_healthcare_get( + async def index_ge_gas_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -125197,10 +125197,10 @@ async def index_ge_healthcare_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ge-healthcare\" + ) -> RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination: + """Return vulnerability data stored in index \"ge-gas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` :param page: set the page number of the response :type page: int @@ -125272,7 +125272,7 @@ async def index_ge_healthcare_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_healthcare_get_serialize( + _param = self._index_ge_gas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -125304,7 +125304,7 @@ async def index_ge_healthcare_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", '404': "str", '500': "str", } @@ -125320,7 +125320,7 @@ async def index_ge_healthcare_get( @validate_call - async def index_ge_healthcare_get_with_http_info( + async def index_ge_gas_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -125358,10 +125358,10 @@ async def index_ge_healthcare_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ge-healthcare\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination]: + """Return vulnerability data stored in index \"ge-gas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` :param page: set the page number of the response :type page: int @@ -125433,7 +125433,7 @@ async def index_ge_healthcare_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_healthcare_get_serialize( + _param = self._index_ge_gas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -125465,7 +125465,7 @@ async def index_ge_healthcare_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", '404': "str", '500': "str", } @@ -125481,7 +125481,7 @@ async def index_ge_healthcare_get_with_http_info( @validate_call - async def index_ge_healthcare_get_without_preload_content( + async def index_ge_gas_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -125520,9 +125520,9 @@ async def index_ge_healthcare_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ge-healthcare\" + """Return vulnerability data stored in index \"ge-gas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` :param page: set the page number of the response :type page: int @@ -125594,7 +125594,7 @@ async def index_ge_healthcare_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_healthcare_get_serialize( + _param = self._index_ge_gas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -125626,7 +125626,7 @@ async def index_ge_healthcare_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", '404': "str", '500': "str", } @@ -125637,7 +125637,7 @@ async def index_ge_healthcare_get_without_preload_content( return response_data.response - def _index_ge_healthcare_get_serialize( + def _index_ge_gas_get_serialize( self, page, limit, @@ -125805,7 +125805,7 @@ def _index_ge_healthcare_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ge-healthcare', + resource_path='/v3/index/ge-gas', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -125822,7 +125822,7 @@ def _index_ge_healthcare_get_serialize( @validate_call - async def index_gem_get( + async def index_ge_healthcare_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -125860,10 +125860,10 @@ async def index_gem_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"gem\" + ) -> RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ge-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -125935,7 +125935,7 @@ async def index_gem_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gem_get_serialize( + _param = self._index_ge_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -125967,7 +125967,7 @@ async def index_gem_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -125983,7 +125983,7 @@ async def index_gem_get( @validate_call - async def index_gem_get_with_http_info( + async def index_ge_healthcare_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126021,10 +126021,10 @@ async def index_gem_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"gem\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ge-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -126096,7 +126096,7 @@ async def index_gem_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gem_get_serialize( + _param = self._index_ge_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126128,7 +126128,7 @@ async def index_gem_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -126144,7 +126144,7 @@ async def index_gem_get_with_http_info( @validate_call - async def index_gem_get_without_preload_content( + async def index_ge_healthcare_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126183,9 +126183,9 @@ async def index_gem_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gem\" + """Return vulnerability data stored in index \"ge-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -126257,7 +126257,7 @@ async def index_gem_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gem_get_serialize( + _param = self._index_ge_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126289,7 +126289,7 @@ async def index_gem_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -126300,7 +126300,7 @@ async def index_gem_get_without_preload_content( return response_data.response - def _index_gem_get_serialize( + def _index_ge_healthcare_get_serialize( self, page, limit, @@ -126468,7 +126468,7 @@ def _index_gem_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gem', + resource_path='/v3/index/ge-healthcare', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -126485,7 +126485,7 @@ def _index_gem_get_serialize( @validate_call - async def index_gen_get( + async def index_gem_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126523,10 +126523,10 @@ async def index_gen_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination: - """Return vulnerability data stored in index \"gen\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"gem\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` :param page: set the page number of the response :type page: int @@ -126598,7 +126598,7 @@ async def index_gen_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gen_get_serialize( + _param = self._index_gem_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126630,7 +126630,7 @@ async def index_gen_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -126646,7 +126646,7 @@ async def index_gen_get( @validate_call - async def index_gen_get_with_http_info( + async def index_gem_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126684,10 +126684,10 @@ async def index_gen_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination]: - """Return vulnerability data stored in index \"gen\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"gem\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` :param page: set the page number of the response :type page: int @@ -126759,7 +126759,7 @@ async def index_gen_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gen_get_serialize( + _param = self._index_gem_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126791,7 +126791,7 @@ async def index_gen_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -126807,7 +126807,7 @@ async def index_gen_get_with_http_info( @validate_call - async def index_gen_get_without_preload_content( + async def index_gem_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126846,9 +126846,9 @@ async def index_gen_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gen\" + """Return vulnerability data stored in index \"gem\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` :param page: set the page number of the response :type page: int @@ -126920,7 +126920,7 @@ async def index_gen_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gen_get_serialize( + _param = self._index_gem_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126952,7 +126952,7 @@ async def index_gen_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -126963,7 +126963,7 @@ async def index_gen_get_without_preload_content( return response_data.response - def _index_gen_get_serialize( + def _index_gem_get_serialize( self, page, limit, @@ -127131,7 +127131,7 @@ def _index_gen_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gen', + resource_path='/v3/index/gem', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -127148,7 +127148,7 @@ def _index_gen_get_serialize( @validate_call - async def index_genetec_get( + async def index_gen_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -127186,10 +127186,10 @@ async def index_genetec_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination: - """Return vulnerability data stored in index \"genetec\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination: + """Return vulnerability data stored in index \"gen\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` :param page: set the page number of the response :type page: int @@ -127261,7 +127261,7 @@ async def index_genetec_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_genetec_get_serialize( + _param = self._index_gen_get_serialize( page=page, limit=limit, cursor=cursor, @@ -127293,7 +127293,7 @@ async def index_genetec_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", '404': "str", '500': "str", } @@ -127309,7 +127309,7 @@ async def index_genetec_get( @validate_call - async def index_genetec_get_with_http_info( + async def index_gen_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -127347,10 +127347,10 @@ async def index_genetec_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination]: - """Return vulnerability data stored in index \"genetec\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination]: + """Return vulnerability data stored in index \"gen\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` :param page: set the page number of the response :type page: int @@ -127422,7 +127422,7 @@ async def index_genetec_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_genetec_get_serialize( + _param = self._index_gen_get_serialize( page=page, limit=limit, cursor=cursor, @@ -127454,7 +127454,7 @@ async def index_genetec_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", '404': "str", '500': "str", } @@ -127470,7 +127470,7 @@ async def index_genetec_get_with_http_info( @validate_call - async def index_genetec_get_without_preload_content( + async def index_gen_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -127509,9 +127509,9 @@ async def index_genetec_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"genetec\" + """Return vulnerability data stored in index \"gen\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` :param page: set the page number of the response :type page: int @@ -127583,7 +127583,7 @@ async def index_genetec_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_genetec_get_serialize( + _param = self._index_gen_get_serialize( page=page, limit=limit, cursor=cursor, @@ -127615,7 +127615,7 @@ async def index_genetec_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", '404': "str", '500': "str", } @@ -127626,7 +127626,7 @@ async def index_genetec_get_without_preload_content( return response_data.response - def _index_genetec_get_serialize( + def _index_gen_get_serialize( self, page, limit, @@ -127794,7 +127794,7 @@ def _index_genetec_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/genetec', + resource_path='/v3/index/gen', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -127811,7 +127811,7 @@ def _index_genetec_get_serialize( @validate_call - async def index_ghsa_get( + async def index_genetec_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -127849,10 +127849,10 @@ async def index_ghsa_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination: - """Return vulnerability data stored in index \"ghsa\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination: + """Return vulnerability data stored in index \"genetec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` :param page: set the page number of the response :type page: int @@ -127924,7 +127924,7 @@ async def index_ghsa_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ghsa_get_serialize( + _param = self._index_genetec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -127956,7 +127956,7 @@ async def index_ghsa_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", '404': "str", '500': "str", } @@ -127972,7 +127972,7 @@ async def index_ghsa_get( @validate_call - async def index_ghsa_get_with_http_info( + async def index_genetec_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128010,10 +128010,10 @@ async def index_ghsa_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination]: - """Return vulnerability data stored in index \"ghsa\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination]: + """Return vulnerability data stored in index \"genetec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` :param page: set the page number of the response :type page: int @@ -128085,7 +128085,7 @@ async def index_ghsa_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ghsa_get_serialize( + _param = self._index_genetec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128117,7 +128117,7 @@ async def index_ghsa_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", '404': "str", '500': "str", } @@ -128133,7 +128133,7 @@ async def index_ghsa_get_with_http_info( @validate_call - async def index_ghsa_get_without_preload_content( + async def index_genetec_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128172,9 +128172,9 @@ async def index_ghsa_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ghsa\" + """Return vulnerability data stored in index \"genetec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` :param page: set the page number of the response :type page: int @@ -128246,7 +128246,7 @@ async def index_ghsa_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ghsa_get_serialize( + _param = self._index_genetec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128278,7 +128278,7 @@ async def index_ghsa_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", '404': "str", '500': "str", } @@ -128289,7 +128289,7 @@ async def index_ghsa_get_without_preload_content( return response_data.response - def _index_ghsa_get_serialize( + def _index_genetec_get_serialize( self, page, limit, @@ -128457,7 +128457,7 @@ def _index_ghsa_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ghsa', + resource_path='/v3/index/genetec', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -128474,7 +128474,7 @@ def _index_ghsa_get_serialize( @validate_call - async def index_gigabyte_get( + async def index_ghsa_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128512,10 +128512,10 @@ async def index_gigabyte_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination: - """Return vulnerability data stored in index \"gigabyte\" + ) -> RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination: + """Return vulnerability data stored in index \"ghsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` :param page: set the page number of the response :type page: int @@ -128587,7 +128587,7 @@ async def index_gigabyte_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gigabyte_get_serialize( + _param = self._index_ghsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128619,7 +128619,7 @@ async def index_gigabyte_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", '404': "str", '500': "str", } @@ -128635,7 +128635,7 @@ async def index_gigabyte_get( @validate_call - async def index_gigabyte_get_with_http_info( + async def index_ghsa_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128673,10 +128673,10 @@ async def index_gigabyte_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination]: - """Return vulnerability data stored in index \"gigabyte\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination]: + """Return vulnerability data stored in index \"ghsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` :param page: set the page number of the response :type page: int @@ -128748,7 +128748,7 @@ async def index_gigabyte_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gigabyte_get_serialize( + _param = self._index_ghsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128780,7 +128780,7 @@ async def index_gigabyte_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", '404': "str", '500': "str", } @@ -128796,7 +128796,7 @@ async def index_gigabyte_get_with_http_info( @validate_call - async def index_gigabyte_get_without_preload_content( + async def index_ghsa_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128835,9 +128835,9 @@ async def index_gigabyte_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gigabyte\" + """Return vulnerability data stored in index \"ghsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` :param page: set the page number of the response :type page: int @@ -128909,7 +128909,7 @@ async def index_gigabyte_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gigabyte_get_serialize( + _param = self._index_ghsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128941,7 +128941,7 @@ async def index_gigabyte_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", '404': "str", '500': "str", } @@ -128952,7 +128952,7 @@ async def index_gigabyte_get_without_preload_content( return response_data.response - def _index_gigabyte_get_serialize( + def _index_ghsa_get_serialize( self, page, limit, @@ -129120,7 +129120,7 @@ def _index_gigabyte_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gigabyte', + resource_path='/v3/index/ghsa', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -129137,7 +129137,7 @@ def _index_gigabyte_get_serialize( @validate_call - async def index_gitee_exploits_get( + async def index_gigabyte_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129175,10 +129175,10 @@ async def index_gitee_exploits_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination: - """Return vulnerability data stored in index \"gitee-exploits\" + ) -> RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination: + """Return vulnerability data stored in index \"gigabyte\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` :param page: set the page number of the response :type page: int @@ -129250,7 +129250,7 @@ async def index_gitee_exploits_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitee_exploits_get_serialize( + _param = self._index_gigabyte_get_serialize( page=page, limit=limit, cursor=cursor, @@ -129282,7 +129282,7 @@ async def index_gitee_exploits_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", '404': "str", '500': "str", } @@ -129298,7 +129298,7 @@ async def index_gitee_exploits_get( @validate_call - async def index_gitee_exploits_get_with_http_info( + async def index_gigabyte_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129336,10 +129336,10 @@ async def index_gitee_exploits_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination]: - """Return vulnerability data stored in index \"gitee-exploits\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination]: + """Return vulnerability data stored in index \"gigabyte\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` :param page: set the page number of the response :type page: int @@ -129411,7 +129411,7 @@ async def index_gitee_exploits_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitee_exploits_get_serialize( + _param = self._index_gigabyte_get_serialize( page=page, limit=limit, cursor=cursor, @@ -129443,7 +129443,7 @@ async def index_gitee_exploits_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", '404': "str", '500': "str", } @@ -129459,7 +129459,7 @@ async def index_gitee_exploits_get_with_http_info( @validate_call - async def index_gitee_exploits_get_without_preload_content( + async def index_gigabyte_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129498,9 +129498,9 @@ async def index_gitee_exploits_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gitee-exploits\" + """Return vulnerability data stored in index \"gigabyte\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` :param page: set the page number of the response :type page: int @@ -129572,7 +129572,7 @@ async def index_gitee_exploits_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitee_exploits_get_serialize( + _param = self._index_gigabyte_get_serialize( page=page, limit=limit, cursor=cursor, @@ -129604,7 +129604,7 @@ async def index_gitee_exploits_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", '404': "str", '500': "str", } @@ -129615,7 +129615,7 @@ async def index_gitee_exploits_get_without_preload_content( return response_data.response - def _index_gitee_exploits_get_serialize( + def _index_gigabyte_get_serialize( self, page, limit, @@ -129783,7 +129783,7 @@ def _index_gitee_exploits_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gitee-exploits', + resource_path='/v3/index/gigabyte', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -129800,7 +129800,7 @@ def _index_gitee_exploits_get_serialize( @validate_call - async def index_github_exploits_get( + async def index_gitee_exploits_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129838,10 +129838,10 @@ async def index_github_exploits_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination: - """Return vulnerability data stored in index \"github-exploits\" + ) -> RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination: + """Return vulnerability data stored in index \"gitee-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -129913,7 +129913,7 @@ async def index_github_exploits_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_exploits_get_serialize( + _param = self._index_gitee_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -129945,7 +129945,7 @@ async def index_github_exploits_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", '404': "str", '500': "str", } @@ -129961,7 +129961,7 @@ async def index_github_exploits_get( @validate_call - async def index_github_exploits_get_with_http_info( + async def index_gitee_exploits_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129999,10 +129999,10 @@ async def index_github_exploits_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination]: - """Return vulnerability data stored in index \"github-exploits\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination]: + """Return vulnerability data stored in index \"gitee-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130074,7 +130074,7 @@ async def index_github_exploits_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_exploits_get_serialize( + _param = self._index_gitee_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130106,7 +130106,7 @@ async def index_github_exploits_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", '404': "str", '500': "str", } @@ -130122,7 +130122,7 @@ async def index_github_exploits_get_with_http_info( @validate_call - async def index_github_exploits_get_without_preload_content( + async def index_gitee_exploits_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -130161,9 +130161,9 @@ async def index_github_exploits_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"github-exploits\" + """Return vulnerability data stored in index \"gitee-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130235,7 +130235,7 @@ async def index_github_exploits_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_exploits_get_serialize( + _param = self._index_gitee_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130267,7 +130267,7 @@ async def index_github_exploits_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", '404': "str", '500': "str", } @@ -130278,7 +130278,7 @@ async def index_github_exploits_get_without_preload_content( return response_data.response - def _index_github_exploits_get_serialize( + def _index_gitee_exploits_get_serialize( self, page, limit, @@ -130446,7 +130446,7 @@ def _index_github_exploits_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/github-exploits', + resource_path='/v3/index/gitee-exploits', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -130463,7 +130463,7 @@ def _index_github_exploits_get_serialize( @validate_call - async def index_github_security_advisories_get( + async def index_github_exploits_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -130501,10 +130501,10 @@ async def index_github_security_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination: - """Return vulnerability data stored in index \"github-security-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination: + """Return vulnerability data stored in index \"github-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130576,7 +130576,7 @@ async def index_github_security_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_security_advisories_get_serialize( + _param = self._index_github_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130608,7 +130608,7 @@ async def index_github_security_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", '404': "str", '500': "str", } @@ -130624,7 +130624,7 @@ async def index_github_security_advisories_get( @validate_call - async def index_github_security_advisories_get_with_http_info( + async def index_github_exploits_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -130662,10 +130662,10 @@ async def index_github_security_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination]: - """Return vulnerability data stored in index \"github-security-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination]: + """Return vulnerability data stored in index \"github-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130737,7 +130737,7 @@ async def index_github_security_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_security_advisories_get_serialize( + _param = self._index_github_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130769,7 +130769,7 @@ async def index_github_security_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", '404': "str", '500': "str", } @@ -130785,7 +130785,7 @@ async def index_github_security_advisories_get_with_http_info( @validate_call - async def index_github_security_advisories_get_without_preload_content( + async def index_github_exploits_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -130824,9 +130824,9 @@ async def index_github_security_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"github-security-advisories\" + """Return vulnerability data stored in index \"github-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130898,7 +130898,7 @@ async def index_github_security_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_security_advisories_get_serialize( + _param = self._index_github_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130930,7 +130930,7 @@ async def index_github_security_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", '404': "str", '500': "str", } @@ -130941,7 +130941,7 @@ async def index_github_security_advisories_get_without_preload_content( return response_data.response - def _index_github_security_advisories_get_serialize( + def _index_github_exploits_get_serialize( self, page, limit, @@ -131109,7 +131109,7 @@ def _index_github_security_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/github-security-advisories', + resource_path='/v3/index/github-exploits', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -131126,7 +131126,7 @@ def _index_github_security_advisories_get_serialize( @validate_call - async def index_gitlab_advisories_community_get( + async def index_github_security_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131164,10 +131164,10 @@ async def index_gitlab_advisories_community_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"gitlab-advisories-community\" + ) -> RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination: + """Return vulnerability data stored in index \"github-security-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -131239,7 +131239,7 @@ async def index_gitlab_advisories_community_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_advisories_community_get_serialize( + _param = self._index_github_security_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -131271,7 +131271,7 @@ async def index_gitlab_advisories_community_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", '404': "str", '500': "str", } @@ -131287,7 +131287,7 @@ async def index_gitlab_advisories_community_get( @validate_call - async def index_gitlab_advisories_community_get_with_http_info( + async def index_github_security_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131325,10 +131325,10 @@ async def index_gitlab_advisories_community_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"gitlab-advisories-community\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination]: + """Return vulnerability data stored in index \"github-security-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -131400,7 +131400,7 @@ async def index_gitlab_advisories_community_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_advisories_community_get_serialize( + _param = self._index_github_security_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -131432,7 +131432,7 @@ async def index_gitlab_advisories_community_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", '404': "str", '500': "str", } @@ -131448,7 +131448,7 @@ async def index_gitlab_advisories_community_get_with_http_info( @validate_call - async def index_gitlab_advisories_community_get_without_preload_content( + async def index_github_security_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131487,9 +131487,9 @@ async def index_gitlab_advisories_community_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gitlab-advisories-community\" + """Return vulnerability data stored in index \"github-security-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -131561,7 +131561,7 @@ async def index_gitlab_advisories_community_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_advisories_community_get_serialize( + _param = self._index_github_security_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -131593,7 +131593,7 @@ async def index_gitlab_advisories_community_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", '404': "str", '500': "str", } @@ -131604,7 +131604,7 @@ async def index_gitlab_advisories_community_get_without_preload_content( return response_data.response - def _index_gitlab_advisories_community_get_serialize( + def _index_github_security_advisories_get_serialize( self, page, limit, @@ -131772,7 +131772,7 @@ def _index_gitlab_advisories_community_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gitlab-advisories-community', + resource_path='/v3/index/github-security-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -131789,7 +131789,7 @@ def _index_gitlab_advisories_community_get_serialize( @validate_call - async def index_gitlab_exploits_get( + async def index_gitlab_advisories_community_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131827,10 +131827,10 @@ async def index_gitlab_exploits_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination: - """Return vulnerability data stored in index \"gitlab-exploits\" + ) -> RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"gitlab-advisories-community\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` :param page: set the page number of the response :type page: int @@ -131902,7 +131902,7 @@ async def index_gitlab_exploits_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_exploits_get_serialize( + _param = self._index_gitlab_advisories_community_get_serialize( page=page, limit=limit, cursor=cursor, @@ -131934,7 +131934,7 @@ async def index_gitlab_exploits_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -131950,7 +131950,7 @@ async def index_gitlab_exploits_get( @validate_call - async def index_gitlab_exploits_get_with_http_info( + async def index_gitlab_advisories_community_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131988,10 +131988,10 @@ async def index_gitlab_exploits_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination]: - """Return vulnerability data stored in index \"gitlab-exploits\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"gitlab-advisories-community\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` :param page: set the page number of the response :type page: int @@ -132063,7 +132063,7 @@ async def index_gitlab_exploits_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_exploits_get_serialize( + _param = self._index_gitlab_advisories_community_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132095,7 +132095,7 @@ async def index_gitlab_exploits_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -132111,7 +132111,7 @@ async def index_gitlab_exploits_get_with_http_info( @validate_call - async def index_gitlab_exploits_get_without_preload_content( + async def index_gitlab_advisories_community_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -132150,9 +132150,9 @@ async def index_gitlab_exploits_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gitlab-exploits\" + """Return vulnerability data stored in index \"gitlab-advisories-community\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` :param page: set the page number of the response :type page: int @@ -132224,7 +132224,7 @@ async def index_gitlab_exploits_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_exploits_get_serialize( + _param = self._index_gitlab_advisories_community_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132256,7 +132256,7 @@ async def index_gitlab_exploits_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -132267,7 +132267,7 @@ async def index_gitlab_exploits_get_without_preload_content( return response_data.response - def _index_gitlab_exploits_get_serialize( + def _index_gitlab_advisories_community_get_serialize( self, page, limit, @@ -132435,7 +132435,7 @@ def _index_gitlab_exploits_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gitlab-exploits', + resource_path='/v3/index/gitlab-advisories-community', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -132452,7 +132452,7 @@ def _index_gitlab_exploits_get_serialize( @validate_call - async def index_glibc_get( + async def index_gitlab_exploits_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -132490,10 +132490,10 @@ async def index_glibc_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination: - """Return vulnerability data stored in index \"glibc\" + ) -> RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination: + """Return vulnerability data stored in index \"gitlab-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -132565,7 +132565,7 @@ async def index_glibc_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_glibc_get_serialize( + _param = self._index_gitlab_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132597,7 +132597,7 @@ async def index_glibc_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", '404': "str", '500': "str", } @@ -132613,7 +132613,7 @@ async def index_glibc_get( @validate_call - async def index_glibc_get_with_http_info( + async def index_gitlab_exploits_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -132651,10 +132651,10 @@ async def index_glibc_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination]: - """Return vulnerability data stored in index \"glibc\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination]: + """Return vulnerability data stored in index \"gitlab-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -132726,7 +132726,7 @@ async def index_glibc_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_glibc_get_serialize( + _param = self._index_gitlab_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132758,7 +132758,7 @@ async def index_glibc_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", '404': "str", '500': "str", } @@ -132774,7 +132774,7 @@ async def index_glibc_get_with_http_info( @validate_call - async def index_glibc_get_without_preload_content( + async def index_gitlab_exploits_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -132813,9 +132813,9 @@ async def index_glibc_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"glibc\" + """Return vulnerability data stored in index \"gitlab-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -132887,7 +132887,7 @@ async def index_glibc_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_glibc_get_serialize( + _param = self._index_gitlab_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132919,7 +132919,7 @@ async def index_glibc_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", '404': "str", '500': "str", } @@ -132930,7 +132930,7 @@ async def index_glibc_get_without_preload_content( return response_data.response - def _index_glibc_get_serialize( + def _index_gitlab_exploits_get_serialize( self, page, limit, @@ -133098,7 +133098,7 @@ def _index_glibc_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/glibc', + resource_path='/v3/index/gitlab-exploits', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -133115,7 +133115,7 @@ def _index_glibc_get_serialize( @validate_call - async def index_gmo_cybersecurity_get( + async def index_glibc_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133153,10 +133153,10 @@ async def index_gmo_cybersecurity_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination: - """Return vulnerability data stored in index \"gmo-cybersecurity\" + ) -> RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination: + """Return vulnerability data stored in index \"glibc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` :param page: set the page number of the response :type page: int @@ -133228,7 +133228,7 @@ async def index_gmo_cybersecurity_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gmo_cybersecurity_get_serialize( + _param = self._index_glibc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -133260,7 +133260,7 @@ async def index_gmo_cybersecurity_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", '404': "str", '500': "str", } @@ -133276,7 +133276,7 @@ async def index_gmo_cybersecurity_get( @validate_call - async def index_gmo_cybersecurity_get_with_http_info( + async def index_glibc_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133314,10 +133314,10 @@ async def index_gmo_cybersecurity_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination]: - """Return vulnerability data stored in index \"gmo-cybersecurity\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination]: + """Return vulnerability data stored in index \"glibc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` :param page: set the page number of the response :type page: int @@ -133389,7 +133389,7 @@ async def index_gmo_cybersecurity_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gmo_cybersecurity_get_serialize( + _param = self._index_glibc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -133421,7 +133421,7 @@ async def index_gmo_cybersecurity_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", '404': "str", '500': "str", } @@ -133437,7 +133437,7 @@ async def index_gmo_cybersecurity_get_with_http_info( @validate_call - async def index_gmo_cybersecurity_get_without_preload_content( + async def index_glibc_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133476,9 +133476,9 @@ async def index_gmo_cybersecurity_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gmo-cybersecurity\" + """Return vulnerability data stored in index \"glibc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` :param page: set the page number of the response :type page: int @@ -133550,7 +133550,7 @@ async def index_gmo_cybersecurity_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gmo_cybersecurity_get_serialize( + _param = self._index_glibc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -133582,7 +133582,7 @@ async def index_gmo_cybersecurity_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", '404': "str", '500': "str", } @@ -133593,7 +133593,7 @@ async def index_gmo_cybersecurity_get_without_preload_content( return response_data.response - def _index_gmo_cybersecurity_get_serialize( + def _index_glibc_get_serialize( self, page, limit, @@ -133761,7 +133761,7 @@ def _index_gmo_cybersecurity_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gmo-cybersecurity', + resource_path='/v3/index/glibc', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -133778,7 +133778,7 @@ def _index_gmo_cybersecurity_get_serialize( @validate_call - async def index_gnutls_get( + async def index_gmo_cybersecurity_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133816,10 +133816,10 @@ async def index_gnutls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination: - """Return vulnerability data stored in index \"gnutls\" + ) -> RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination: + """Return vulnerability data stored in index \"gmo-cybersecurity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` :param page: set the page number of the response :type page: int @@ -133891,7 +133891,7 @@ async def index_gnutls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gnutls_get_serialize( + _param = self._index_gmo_cybersecurity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -133923,7 +133923,7 @@ async def index_gnutls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", '404': "str", '500': "str", } @@ -133939,7 +133939,7 @@ async def index_gnutls_get( @validate_call - async def index_gnutls_get_with_http_info( + async def index_gmo_cybersecurity_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133977,10 +133977,10 @@ async def index_gnutls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination]: - """Return vulnerability data stored in index \"gnutls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination]: + """Return vulnerability data stored in index \"gmo-cybersecurity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` :param page: set the page number of the response :type page: int @@ -134052,7 +134052,7 @@ async def index_gnutls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gnutls_get_serialize( + _param = self._index_gmo_cybersecurity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134084,7 +134084,7 @@ async def index_gnutls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", '404': "str", '500': "str", } @@ -134100,7 +134100,7 @@ async def index_gnutls_get_with_http_info( @validate_call - async def index_gnutls_get_without_preload_content( + async def index_gmo_cybersecurity_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -134139,9 +134139,9 @@ async def index_gnutls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gnutls\" + """Return vulnerability data stored in index \"gmo-cybersecurity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` :param page: set the page number of the response :type page: int @@ -134213,7 +134213,7 @@ async def index_gnutls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gnutls_get_serialize( + _param = self._index_gmo_cybersecurity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134245,7 +134245,7 @@ async def index_gnutls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", '404': "str", '500': "str", } @@ -134256,7 +134256,7 @@ async def index_gnutls_get_without_preload_content( return response_data.response - def _index_gnutls_get_serialize( + def _index_gmo_cybersecurity_get_serialize( self, page, limit, @@ -134424,7 +134424,7 @@ def _index_gnutls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gnutls', + resource_path='/v3/index/gmo-cybersecurity', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -134441,7 +134441,7 @@ def _index_gnutls_get_serialize( @validate_call - async def index_go_vulndb_get( + async def index_gnutls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -134479,10 +134479,10 @@ async def index_go_vulndb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination: - """Return vulnerability data stored in index \"go-vulndb\" + ) -> RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination: + """Return vulnerability data stored in index \"gnutls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` :param page: set the page number of the response :type page: int @@ -134554,7 +134554,7 @@ async def index_go_vulndb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_go_vulndb_get_serialize( + _param = self._index_gnutls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134586,7 +134586,7 @@ async def index_go_vulndb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", '404': "str", '500': "str", } @@ -134602,7 +134602,7 @@ async def index_go_vulndb_get( @validate_call - async def index_go_vulndb_get_with_http_info( + async def index_gnutls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -134640,10 +134640,10 @@ async def index_go_vulndb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination]: - """Return vulnerability data stored in index \"go-vulndb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination]: + """Return vulnerability data stored in index \"gnutls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` :param page: set the page number of the response :type page: int @@ -134715,7 +134715,7 @@ async def index_go_vulndb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_go_vulndb_get_serialize( + _param = self._index_gnutls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134747,7 +134747,7 @@ async def index_go_vulndb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", '404': "str", '500': "str", } @@ -134763,7 +134763,7 @@ async def index_go_vulndb_get_with_http_info( @validate_call - async def index_go_vulndb_get_without_preload_content( + async def index_gnutls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -134802,9 +134802,9 @@ async def index_go_vulndb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"go-vulndb\" + """Return vulnerability data stored in index \"gnutls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` :param page: set the page number of the response :type page: int @@ -134876,7 +134876,7 @@ async def index_go_vulndb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_go_vulndb_get_serialize( + _param = self._index_gnutls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134908,7 +134908,7 @@ async def index_go_vulndb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", '404': "str", '500': "str", } @@ -134919,7 +134919,7 @@ async def index_go_vulndb_get_without_preload_content( return response_data.response - def _index_go_vulndb_get_serialize( + def _index_gnutls_get_serialize( self, page, limit, @@ -135087,7 +135087,7 @@ def _index_go_vulndb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/go-vulndb', + resource_path='/v3/index/gnutls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -135104,7 +135104,7 @@ def _index_go_vulndb_get_serialize( @validate_call - async def index_golang_get( + async def index_go_vulndb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135142,10 +135142,10 @@ async def index_golang_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"golang\" + ) -> RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination: + """Return vulnerability data stored in index \"go-vulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` :param page: set the page number of the response :type page: int @@ -135217,7 +135217,7 @@ async def index_golang_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_golang_get_serialize( + _param = self._index_go_vulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -135249,7 +135249,7 @@ async def index_golang_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", '404': "str", '500': "str", } @@ -135265,7 +135265,7 @@ async def index_golang_get( @validate_call - async def index_golang_get_with_http_info( + async def index_go_vulndb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135303,10 +135303,10 @@ async def index_golang_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"golang\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination]: + """Return vulnerability data stored in index \"go-vulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` :param page: set the page number of the response :type page: int @@ -135378,7 +135378,7 @@ async def index_golang_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_golang_get_serialize( + _param = self._index_go_vulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -135410,7 +135410,7 @@ async def index_golang_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", '404': "str", '500': "str", } @@ -135426,7 +135426,7 @@ async def index_golang_get_with_http_info( @validate_call - async def index_golang_get_without_preload_content( + async def index_go_vulndb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135465,9 +135465,9 @@ async def index_golang_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"golang\" + """Return vulnerability data stored in index \"go-vulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` :param page: set the page number of the response :type page: int @@ -135539,7 +135539,7 @@ async def index_golang_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_golang_get_serialize( + _param = self._index_go_vulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -135571,7 +135571,7 @@ async def index_golang_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", '404': "str", '500': "str", } @@ -135582,7 +135582,7 @@ async def index_golang_get_without_preload_content( return response_data.response - def _index_golang_get_serialize( + def _index_go_vulndb_get_serialize( self, page, limit, @@ -135750,7 +135750,7 @@ def _index_golang_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/golang', + resource_path='/v3/index/go-vulndb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -135767,7 +135767,7 @@ def _index_golang_get_serialize( @validate_call - async def index_google0day_itw_get( + async def index_golang_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135805,10 +135805,10 @@ async def index_google0day_itw_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination: - """Return vulnerability data stored in index \"google-0day-itw\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"golang\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` :param page: set the page number of the response :type page: int @@ -135880,7 +135880,7 @@ async def index_google0day_itw_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google0day_itw_get_serialize( + _param = self._index_golang_get_serialize( page=page, limit=limit, cursor=cursor, @@ -135912,7 +135912,7 @@ async def index_google0day_itw_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -135928,7 +135928,7 @@ async def index_google0day_itw_get( @validate_call - async def index_google0day_itw_get_with_http_info( + async def index_golang_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135966,10 +135966,10 @@ async def index_google0day_itw_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination]: - """Return vulnerability data stored in index \"google-0day-itw\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"golang\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` :param page: set the page number of the response :type page: int @@ -136041,7 +136041,7 @@ async def index_google0day_itw_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google0day_itw_get_serialize( + _param = self._index_golang_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136073,7 +136073,7 @@ async def index_google0day_itw_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -136089,7 +136089,7 @@ async def index_google0day_itw_get_with_http_info( @validate_call - async def index_google0day_itw_get_without_preload_content( + async def index_golang_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -136128,9 +136128,9 @@ async def index_google0day_itw_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"google-0day-itw\" + """Return vulnerability data stored in index \"golang\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` :param page: set the page number of the response :type page: int @@ -136202,7 +136202,7 @@ async def index_google0day_itw_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google0day_itw_get_serialize( + _param = self._index_golang_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136234,7 +136234,7 @@ async def index_google0day_itw_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -136245,7 +136245,7 @@ async def index_google0day_itw_get_without_preload_content( return response_data.response - def _index_google0day_itw_get_serialize( + def _index_golang_get_serialize( self, page, limit, @@ -136413,7 +136413,7 @@ def _index_google0day_itw_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/google-0day-itw', + resource_path='/v3/index/golang', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -136430,7 +136430,7 @@ def _index_google0day_itw_get_serialize( @validate_call - async def index_google_container_optimized_os_get( + async def index_google0day_itw_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -136468,10 +136468,10 @@ async def index_google_container_optimized_os_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination: - """Return vulnerability data stored in index \"google-container-optimized-os\" + ) -> RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination: + """Return vulnerability data stored in index \"google-0day-itw\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` :param page: set the page number of the response :type page: int @@ -136543,7 +136543,7 @@ async def index_google_container_optimized_os_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google_container_optimized_os_get_serialize( + _param = self._index_google0day_itw_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136575,7 +136575,7 @@ async def index_google_container_optimized_os_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", '404': "str", '500': "str", } @@ -136591,7 +136591,7 @@ async def index_google_container_optimized_os_get( @validate_call - async def index_google_container_optimized_os_get_with_http_info( + async def index_google0day_itw_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -136629,10 +136629,10 @@ async def index_google_container_optimized_os_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination]: - """Return vulnerability data stored in index \"google-container-optimized-os\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination]: + """Return vulnerability data stored in index \"google-0day-itw\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` :param page: set the page number of the response :type page: int @@ -136704,7 +136704,7 @@ async def index_google_container_optimized_os_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google_container_optimized_os_get_serialize( + _param = self._index_google0day_itw_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136736,7 +136736,7 @@ async def index_google_container_optimized_os_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", '404': "str", '500': "str", } @@ -136752,7 +136752,7 @@ async def index_google_container_optimized_os_get_with_http_info( @validate_call - async def index_google_container_optimized_os_get_without_preload_content( + async def index_google0day_itw_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -136791,9 +136791,9 @@ async def index_google_container_optimized_os_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"google-container-optimized-os\" + """Return vulnerability data stored in index \"google-0day-itw\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` :param page: set the page number of the response :type page: int @@ -136865,7 +136865,7 @@ async def index_google_container_optimized_os_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google_container_optimized_os_get_serialize( + _param = self._index_google0day_itw_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136897,7 +136897,7 @@ async def index_google_container_optimized_os_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", '404': "str", '500': "str", } @@ -136908,7 +136908,7 @@ async def index_google_container_optimized_os_get_without_preload_content( return response_data.response - def _index_google_container_optimized_os_get_serialize( + def _index_google0day_itw_get_serialize( self, page, limit, @@ -137076,7 +137076,7 @@ def _index_google_container_optimized_os_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/google-container-optimized-os', + resource_path='/v3/index/google-0day-itw', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -137093,7 +137093,7 @@ def _index_google_container_optimized_os_get_serialize( @validate_call - async def index_grafana_get( + async def index_google_container_optimized_os_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137131,10 +137131,10 @@ async def index_grafana_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination: - """Return vulnerability data stored in index \"grafana\" + ) -> RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination: + """Return vulnerability data stored in index \"google-container-optimized-os\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` :param page: set the page number of the response :type page: int @@ -137206,7 +137206,7 @@ async def index_grafana_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_grafana_get_serialize( + _param = self._index_google_container_optimized_os_get_serialize( page=page, limit=limit, cursor=cursor, @@ -137238,7 +137238,7 @@ async def index_grafana_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", '404': "str", '500': "str", } @@ -137254,7 +137254,7 @@ async def index_grafana_get( @validate_call - async def index_grafana_get_with_http_info( + async def index_google_container_optimized_os_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137292,10 +137292,10 @@ async def index_grafana_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination]: - """Return vulnerability data stored in index \"grafana\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination]: + """Return vulnerability data stored in index \"google-container-optimized-os\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` :param page: set the page number of the response :type page: int @@ -137367,7 +137367,7 @@ async def index_grafana_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_grafana_get_serialize( + _param = self._index_google_container_optimized_os_get_serialize( page=page, limit=limit, cursor=cursor, @@ -137399,7 +137399,7 @@ async def index_grafana_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", '404': "str", '500': "str", } @@ -137415,7 +137415,7 @@ async def index_grafana_get_with_http_info( @validate_call - async def index_grafana_get_without_preload_content( + async def index_google_container_optimized_os_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137454,9 +137454,9 @@ async def index_grafana_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"grafana\" + """Return vulnerability data stored in index \"google-container-optimized-os\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` :param page: set the page number of the response :type page: int @@ -137528,7 +137528,7 @@ async def index_grafana_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_grafana_get_serialize( + _param = self._index_google_container_optimized_os_get_serialize( page=page, limit=limit, cursor=cursor, @@ -137560,7 +137560,7 @@ async def index_grafana_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", '404': "str", '500': "str", } @@ -137571,7 +137571,7 @@ async def index_grafana_get_without_preload_content( return response_data.response - def _index_grafana_get_serialize( + def _index_google_container_optimized_os_get_serialize( self, page, limit, @@ -137739,7 +137739,7 @@ def _index_grafana_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/grafana', + resource_path='/v3/index/google-container-optimized-os', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -137756,7 +137756,7 @@ def _index_grafana_get_serialize( @validate_call - async def index_greynoise_metadata_get( + async def index_grafana_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137794,10 +137794,10 @@ async def index_greynoise_metadata_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination: - """Return vulnerability data stored in index \"greynoise-metadata\" + ) -> RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination: + """Return vulnerability data stored in index \"grafana\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` :param page: set the page number of the response :type page: int @@ -137869,7 +137869,7 @@ async def index_greynoise_metadata_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_greynoise_metadata_get_serialize( + _param = self._index_grafana_get_serialize( page=page, limit=limit, cursor=cursor, @@ -137901,7 +137901,7 @@ async def index_greynoise_metadata_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", '404': "str", '500': "str", } @@ -137917,7 +137917,7 @@ async def index_greynoise_metadata_get( @validate_call - async def index_greynoise_metadata_get_with_http_info( + async def index_grafana_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137955,10 +137955,10 @@ async def index_greynoise_metadata_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination]: - """Return vulnerability data stored in index \"greynoise-metadata\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination]: + """Return vulnerability data stored in index \"grafana\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` :param page: set the page number of the response :type page: int @@ -138030,7 +138030,7 @@ async def index_greynoise_metadata_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_greynoise_metadata_get_serialize( + _param = self._index_grafana_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138062,7 +138062,7 @@ async def index_greynoise_metadata_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", '404': "str", '500': "str", } @@ -138078,7 +138078,7 @@ async def index_greynoise_metadata_get_with_http_info( @validate_call - async def index_greynoise_metadata_get_without_preload_content( + async def index_grafana_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -138117,9 +138117,9 @@ async def index_greynoise_metadata_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"greynoise-metadata\" + """Return vulnerability data stored in index \"grafana\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` :param page: set the page number of the response :type page: int @@ -138191,7 +138191,7 @@ async def index_greynoise_metadata_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_greynoise_metadata_get_serialize( + _param = self._index_grafana_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138223,7 +138223,7 @@ async def index_greynoise_metadata_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", '404': "str", '500': "str", } @@ -138234,7 +138234,7 @@ async def index_greynoise_metadata_get_without_preload_content( return response_data.response - def _index_greynoise_metadata_get_serialize( + def _index_grafana_get_serialize( self, page, limit, @@ -138402,7 +138402,7 @@ def _index_greynoise_metadata_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/greynoise-metadata', + resource_path='/v3/index/grafana', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -138419,7 +138419,7 @@ def _index_greynoise_metadata_get_serialize( @validate_call - async def index_hackage_get( + async def index_greynoise_metadata_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -138457,10 +138457,10 @@ async def index_hackage_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"hackage\" + ) -> RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination: + """Return vulnerability data stored in index \"greynoise-metadata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` :param page: set the page number of the response :type page: int @@ -138532,7 +138532,7 @@ async def index_hackage_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hackage_get_serialize( + _param = self._index_greynoise_metadata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138564,7 +138564,7 @@ async def index_hackage_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", '404': "str", '500': "str", } @@ -138580,7 +138580,7 @@ async def index_hackage_get( @validate_call - async def index_hackage_get_with_http_info( + async def index_greynoise_metadata_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -138618,10 +138618,10 @@ async def index_hackage_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"hackage\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination]: + """Return vulnerability data stored in index \"greynoise-metadata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` :param page: set the page number of the response :type page: int @@ -138693,7 +138693,7 @@ async def index_hackage_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hackage_get_serialize( + _param = self._index_greynoise_metadata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138725,7 +138725,7 @@ async def index_hackage_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", '404': "str", '500': "str", } @@ -138741,7 +138741,7 @@ async def index_hackage_get_with_http_info( @validate_call - async def index_hackage_get_without_preload_content( + async def index_greynoise_metadata_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -138780,9 +138780,9 @@ async def index_hackage_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hackage\" + """Return vulnerability data stored in index \"greynoise-metadata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` :param page: set the page number of the response :type page: int @@ -138854,7 +138854,7 @@ async def index_hackage_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hackage_get_serialize( + _param = self._index_greynoise_metadata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138886,7 +138886,7 @@ async def index_hackage_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", '404': "str", '500': "str", } @@ -138897,7 +138897,7 @@ async def index_hackage_get_without_preload_content( return response_data.response - def _index_hackage_get_serialize( + def _index_greynoise_metadata_get_serialize( self, page, limit, @@ -139065,7 +139065,7 @@ def _index_hackage_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hackage', + resource_path='/v3/index/greynoise-metadata', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -139082,7 +139082,7 @@ def _index_hackage_get_serialize( @validate_call - async def index_hacktivity_get( + async def index_hackage_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139120,10 +139120,10 @@ async def index_hacktivity_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination: - """Return vulnerability data stored in index \"hacktivity\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"hackage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` :param page: set the page number of the response :type page: int @@ -139195,7 +139195,7 @@ async def index_hacktivity_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hacktivity_get_serialize( + _param = self._index_hackage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -139227,7 +139227,7 @@ async def index_hacktivity_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -139243,7 +139243,7 @@ async def index_hacktivity_get( @validate_call - async def index_hacktivity_get_with_http_info( + async def index_hackage_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139281,10 +139281,10 @@ async def index_hacktivity_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination]: - """Return vulnerability data stored in index \"hacktivity\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"hackage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` :param page: set the page number of the response :type page: int @@ -139356,7 +139356,7 @@ async def index_hacktivity_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hacktivity_get_serialize( + _param = self._index_hackage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -139388,7 +139388,7 @@ async def index_hacktivity_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -139404,7 +139404,7 @@ async def index_hacktivity_get_with_http_info( @validate_call - async def index_hacktivity_get_without_preload_content( + async def index_hackage_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139443,9 +139443,9 @@ async def index_hacktivity_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hacktivity\" + """Return vulnerability data stored in index \"hackage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` :param page: set the page number of the response :type page: int @@ -139517,7 +139517,7 @@ async def index_hacktivity_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hacktivity_get_serialize( + _param = self._index_hackage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -139549,7 +139549,7 @@ async def index_hacktivity_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -139560,7 +139560,7 @@ async def index_hacktivity_get_without_preload_content( return response_data.response - def _index_hacktivity_get_serialize( + def _index_hackage_get_serialize( self, page, limit, @@ -139728,7 +139728,7 @@ def _index_hacktivity_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hacktivity', + resource_path='/v3/index/hackage', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -139745,7 +139745,7 @@ def _index_hacktivity_get_serialize( @validate_call - async def index_harmonyos_get( + async def index_hacktivity_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139783,10 +139783,10 @@ async def index_harmonyos_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination: - """Return vulnerability data stored in index \"harmonyos\" + ) -> RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination: + """Return vulnerability data stored in index \"hacktivity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` :param page: set the page number of the response :type page: int @@ -139858,7 +139858,7 @@ async def index_harmonyos_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_harmonyos_get_serialize( + _param = self._index_hacktivity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -139890,7 +139890,7 @@ async def index_harmonyos_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", '404': "str", '500': "str", } @@ -139906,7 +139906,7 @@ async def index_harmonyos_get( @validate_call - async def index_harmonyos_get_with_http_info( + async def index_hacktivity_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139944,10 +139944,10 @@ async def index_harmonyos_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination]: - """Return vulnerability data stored in index \"harmonyos\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination]: + """Return vulnerability data stored in index \"hacktivity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` :param page: set the page number of the response :type page: int @@ -140019,7 +140019,7 @@ async def index_harmonyos_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_harmonyos_get_serialize( + _param = self._index_hacktivity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140051,7 +140051,7 @@ async def index_harmonyos_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", '404': "str", '500': "str", } @@ -140067,7 +140067,7 @@ async def index_harmonyos_get_with_http_info( @validate_call - async def index_harmonyos_get_without_preload_content( + async def index_hacktivity_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -140106,9 +140106,9 @@ async def index_harmonyos_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"harmonyos\" + """Return vulnerability data stored in index \"hacktivity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` :param page: set the page number of the response :type page: int @@ -140180,7 +140180,7 @@ async def index_harmonyos_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_harmonyos_get_serialize( + _param = self._index_hacktivity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140212,7 +140212,7 @@ async def index_harmonyos_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", '404': "str", '500': "str", } @@ -140223,7 +140223,7 @@ async def index_harmonyos_get_without_preload_content( return response_data.response - def _index_harmonyos_get_serialize( + def _index_hacktivity_get_serialize( self, page, limit, @@ -140391,7 +140391,7 @@ def _index_harmonyos_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/harmonyos', + resource_path='/v3/index/hacktivity', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -140408,7 +140408,7 @@ def _index_harmonyos_get_serialize( @validate_call - async def index_hashicorp_get( + async def index_harmonyos_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -140446,10 +140446,10 @@ async def index_hashicorp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination: - """Return vulnerability data stored in index \"hashicorp\" + ) -> RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination: + """Return vulnerability data stored in index \"harmonyos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` :param page: set the page number of the response :type page: int @@ -140521,7 +140521,7 @@ async def index_hashicorp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hashicorp_get_serialize( + _param = self._index_harmonyos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140553,7 +140553,7 @@ async def index_hashicorp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", '404': "str", '500': "str", } @@ -140569,7 +140569,7 @@ async def index_hashicorp_get( @validate_call - async def index_hashicorp_get_with_http_info( + async def index_harmonyos_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -140607,10 +140607,10 @@ async def index_hashicorp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination]: - """Return vulnerability data stored in index \"hashicorp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination]: + """Return vulnerability data stored in index \"harmonyos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` :param page: set the page number of the response :type page: int @@ -140682,7 +140682,7 @@ async def index_hashicorp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hashicorp_get_serialize( + _param = self._index_harmonyos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140714,7 +140714,7 @@ async def index_hashicorp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", '404': "str", '500': "str", } @@ -140730,7 +140730,7 @@ async def index_hashicorp_get_with_http_info( @validate_call - async def index_hashicorp_get_without_preload_content( + async def index_harmonyos_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -140769,9 +140769,9 @@ async def index_hashicorp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hashicorp\" + """Return vulnerability data stored in index \"harmonyos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` :param page: set the page number of the response :type page: int @@ -140843,7 +140843,7 @@ async def index_hashicorp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hashicorp_get_serialize( + _param = self._index_harmonyos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140875,7 +140875,7 @@ async def index_hashicorp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", '404': "str", '500': "str", } @@ -140886,7 +140886,7 @@ async def index_hashicorp_get_without_preload_content( return response_data.response - def _index_hashicorp_get_serialize( + def _index_harmonyos_get_serialize( self, page, limit, @@ -141054,7 +141054,7 @@ def _index_hashicorp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hashicorp', + resource_path='/v3/index/harmonyos', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -141071,7 +141071,7 @@ def _index_hashicorp_get_serialize( @validate_call - async def index_haskell_sadb_get( + async def index_hashicorp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141109,10 +141109,10 @@ async def index_haskell_sadb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"haskell-sadb\" + ) -> RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination: + """Return vulnerability data stored in index \"hashicorp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` :param page: set the page number of the response :type page: int @@ -141184,7 +141184,7 @@ async def index_haskell_sadb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_haskell_sadb_get_serialize( + _param = self._index_hashicorp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -141216,7 +141216,7 @@ async def index_haskell_sadb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", '404': "str", '500': "str", } @@ -141232,7 +141232,7 @@ async def index_haskell_sadb_get( @validate_call - async def index_haskell_sadb_get_with_http_info( + async def index_hashicorp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141270,10 +141270,10 @@ async def index_haskell_sadb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"haskell-sadb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination]: + """Return vulnerability data stored in index \"hashicorp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` :param page: set the page number of the response :type page: int @@ -141345,7 +141345,7 @@ async def index_haskell_sadb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_haskell_sadb_get_serialize( + _param = self._index_hashicorp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -141377,7 +141377,7 @@ async def index_haskell_sadb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", '404': "str", '500': "str", } @@ -141393,7 +141393,7 @@ async def index_haskell_sadb_get_with_http_info( @validate_call - async def index_haskell_sadb_get_without_preload_content( + async def index_hashicorp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141432,9 +141432,9 @@ async def index_haskell_sadb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"haskell-sadb\" + """Return vulnerability data stored in index \"hashicorp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` :param page: set the page number of the response :type page: int @@ -141506,7 +141506,7 @@ async def index_haskell_sadb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_haskell_sadb_get_serialize( + _param = self._index_hashicorp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -141538,7 +141538,7 @@ async def index_haskell_sadb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", '404': "str", '500': "str", } @@ -141549,7 +141549,7 @@ async def index_haskell_sadb_get_without_preload_content( return response_data.response - def _index_haskell_sadb_get_serialize( + def _index_hashicorp_get_serialize( self, page, limit, @@ -141717,7 +141717,7 @@ def _index_haskell_sadb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/haskell-sadb', + resource_path='/v3/index/hashicorp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -141734,7 +141734,7 @@ def _index_haskell_sadb_get_serialize( @validate_call - async def index_hcl_get( + async def index_haskell_sadb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141772,10 +141772,10 @@ async def index_hcl_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination: - """Return vulnerability data stored in index \"hcl\" + ) -> RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"haskell-sadb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` :param page: set the page number of the response :type page: int @@ -141847,7 +141847,7 @@ async def index_hcl_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hcl_get_serialize( + _param = self._index_haskell_sadb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -141879,7 +141879,7 @@ async def index_hcl_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -141895,7 +141895,7 @@ async def index_hcl_get( @validate_call - async def index_hcl_get_with_http_info( + async def index_haskell_sadb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141933,10 +141933,10 @@ async def index_hcl_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination]: - """Return vulnerability data stored in index \"hcl\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"haskell-sadb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` :param page: set the page number of the response :type page: int @@ -142008,7 +142008,7 @@ async def index_hcl_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hcl_get_serialize( + _param = self._index_haskell_sadb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142040,7 +142040,7 @@ async def index_hcl_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -142056,7 +142056,7 @@ async def index_hcl_get_with_http_info( @validate_call - async def index_hcl_get_without_preload_content( + async def index_haskell_sadb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -142095,9 +142095,9 @@ async def index_hcl_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hcl\" + """Return vulnerability data stored in index \"haskell-sadb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` :param page: set the page number of the response :type page: int @@ -142169,7 +142169,7 @@ async def index_hcl_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hcl_get_serialize( + _param = self._index_haskell_sadb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142201,7 +142201,7 @@ async def index_hcl_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -142212,7 +142212,7 @@ async def index_hcl_get_without_preload_content( return response_data.response - def _index_hcl_get_serialize( + def _index_haskell_sadb_get_serialize( self, page, limit, @@ -142380,7 +142380,7 @@ def _index_hcl_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hcl', + resource_path='/v3/index/haskell-sadb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -142397,7 +142397,7 @@ def _index_hcl_get_serialize( @validate_call - async def index_hex_get( + async def index_hcl_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -142435,10 +142435,10 @@ async def index_hex_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"hex\" + ) -> RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination: + """Return vulnerability data stored in index \"hcl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` :param page: set the page number of the response :type page: int @@ -142510,7 +142510,7 @@ async def index_hex_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hex_get_serialize( + _param = self._index_hcl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142542,7 +142542,7 @@ async def index_hex_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", '404': "str", '500': "str", } @@ -142558,7 +142558,7 @@ async def index_hex_get( @validate_call - async def index_hex_get_with_http_info( + async def index_hcl_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -142596,10 +142596,10 @@ async def index_hex_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"hex\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination]: + """Return vulnerability data stored in index \"hcl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` :param page: set the page number of the response :type page: int @@ -142671,7 +142671,7 @@ async def index_hex_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hex_get_serialize( + _param = self._index_hcl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142703,7 +142703,7 @@ async def index_hex_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", '404': "str", '500': "str", } @@ -142719,7 +142719,7 @@ async def index_hex_get_with_http_info( @validate_call - async def index_hex_get_without_preload_content( + async def index_hcl_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -142758,9 +142758,9 @@ async def index_hex_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hex\" + """Return vulnerability data stored in index \"hcl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` :param page: set the page number of the response :type page: int @@ -142832,7 +142832,7 @@ async def index_hex_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hex_get_serialize( + _param = self._index_hcl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142864,7 +142864,7 @@ async def index_hex_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", '404': "str", '500': "str", } @@ -142875,7 +142875,7 @@ async def index_hex_get_without_preload_content( return response_data.response - def _index_hex_get_serialize( + def _index_hcl_get_serialize( self, page, limit, @@ -143043,7 +143043,7 @@ def _index_hex_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hex', + resource_path='/v3/index/hcl', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -143060,7 +143060,7 @@ def _index_hex_get_serialize( @validate_call - async def index_hikvision_get( + async def index_hex_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143098,10 +143098,10 @@ async def index_hikvision_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination: - """Return vulnerability data stored in index \"hikvision\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"hex\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` :param page: set the page number of the response :type page: int @@ -143173,7 +143173,7 @@ async def index_hikvision_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hikvision_get_serialize( + _param = self._index_hex_get_serialize( page=page, limit=limit, cursor=cursor, @@ -143205,7 +143205,7 @@ async def index_hikvision_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -143221,7 +143221,7 @@ async def index_hikvision_get( @validate_call - async def index_hikvision_get_with_http_info( + async def index_hex_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143259,10 +143259,10 @@ async def index_hikvision_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination]: - """Return vulnerability data stored in index \"hikvision\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"hex\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` :param page: set the page number of the response :type page: int @@ -143334,7 +143334,7 @@ async def index_hikvision_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hikvision_get_serialize( + _param = self._index_hex_get_serialize( page=page, limit=limit, cursor=cursor, @@ -143366,7 +143366,7 @@ async def index_hikvision_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -143382,7 +143382,7 @@ async def index_hikvision_get_with_http_info( @validate_call - async def index_hikvision_get_without_preload_content( + async def index_hex_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143421,9 +143421,9 @@ async def index_hikvision_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hikvision\" + """Return vulnerability data stored in index \"hex\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` :param page: set the page number of the response :type page: int @@ -143495,7 +143495,7 @@ async def index_hikvision_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hikvision_get_serialize( + _param = self._index_hex_get_serialize( page=page, limit=limit, cursor=cursor, @@ -143527,7 +143527,7 @@ async def index_hikvision_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -143538,7 +143538,7 @@ async def index_hikvision_get_without_preload_content( return response_data.response - def _index_hikvision_get_serialize( + def _index_hex_get_serialize( self, page, limit, @@ -143706,7 +143706,7 @@ def _index_hikvision_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hikvision', + resource_path='/v3/index/hex', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -143723,7 +143723,7 @@ def _index_hikvision_get_serialize( @validate_call - async def index_hillrom_get( + async def index_hikvision_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143761,10 +143761,10 @@ async def index_hillrom_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"hillrom\" + ) -> RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination: + """Return vulnerability data stored in index \"hikvision\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` :param page: set the page number of the response :type page: int @@ -143836,7 +143836,7 @@ async def index_hillrom_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hillrom_get_serialize( + _param = self._index_hikvision_get_serialize( page=page, limit=limit, cursor=cursor, @@ -143868,7 +143868,7 @@ async def index_hillrom_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", '404': "str", '500': "str", } @@ -143884,7 +143884,7 @@ async def index_hillrom_get( @validate_call - async def index_hillrom_get_with_http_info( + async def index_hikvision_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143922,10 +143922,10 @@ async def index_hillrom_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"hillrom\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination]: + """Return vulnerability data stored in index \"hikvision\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` :param page: set the page number of the response :type page: int @@ -143997,7 +143997,7 @@ async def index_hillrom_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hillrom_get_serialize( + _param = self._index_hikvision_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144029,7 +144029,7 @@ async def index_hillrom_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", '404': "str", '500': "str", } @@ -144045,7 +144045,7 @@ async def index_hillrom_get_with_http_info( @validate_call - async def index_hillrom_get_without_preload_content( + async def index_hikvision_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -144084,9 +144084,9 @@ async def index_hillrom_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hillrom\" + """Return vulnerability data stored in index \"hikvision\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` :param page: set the page number of the response :type page: int @@ -144158,7 +144158,7 @@ async def index_hillrom_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hillrom_get_serialize( + _param = self._index_hikvision_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144190,7 +144190,7 @@ async def index_hillrom_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", '404': "str", '500': "str", } @@ -144201,7 +144201,7 @@ async def index_hillrom_get_without_preload_content( return response_data.response - def _index_hillrom_get_serialize( + def _index_hikvision_get_serialize( self, page, limit, @@ -144369,7 +144369,7 @@ def _index_hillrom_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hillrom', + resource_path='/v3/index/hikvision', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -144386,7 +144386,7 @@ def _index_hillrom_get_serialize( @validate_call - async def index_hitachi_energy_get( + async def index_hillrom_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -144424,10 +144424,10 @@ async def index_hitachi_energy_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination: - """Return vulnerability data stored in index \"hitachi-energy\" + ) -> RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"hillrom\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` :param page: set the page number of the response :type page: int @@ -144499,7 +144499,7 @@ async def index_hitachi_energy_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_energy_get_serialize( + _param = self._index_hillrom_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144531,7 +144531,7 @@ async def index_hitachi_energy_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -144547,7 +144547,7 @@ async def index_hitachi_energy_get( @validate_call - async def index_hitachi_energy_get_with_http_info( + async def index_hillrom_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -144585,10 +144585,10 @@ async def index_hitachi_energy_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination]: - """Return vulnerability data stored in index \"hitachi-energy\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"hillrom\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` :param page: set the page number of the response :type page: int @@ -144660,7 +144660,7 @@ async def index_hitachi_energy_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_energy_get_serialize( + _param = self._index_hillrom_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144692,7 +144692,7 @@ async def index_hitachi_energy_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -144708,7 +144708,7 @@ async def index_hitachi_energy_get_with_http_info( @validate_call - async def index_hitachi_energy_get_without_preload_content( + async def index_hillrom_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -144747,9 +144747,9 @@ async def index_hitachi_energy_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hitachi-energy\" + """Return vulnerability data stored in index \"hillrom\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` :param page: set the page number of the response :type page: int @@ -144821,7 +144821,7 @@ async def index_hitachi_energy_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_energy_get_serialize( + _param = self._index_hillrom_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144853,7 +144853,7 @@ async def index_hitachi_energy_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -144864,7 +144864,7 @@ async def index_hitachi_energy_get_without_preload_content( return response_data.response - def _index_hitachi_energy_get_serialize( + def _index_hillrom_get_serialize( self, page, limit, @@ -145032,7 +145032,7 @@ def _index_hitachi_energy_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hitachi-energy', + resource_path='/v3/index/hillrom', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -145049,7 +145049,7 @@ def _index_hitachi_energy_get_serialize( @validate_call - async def index_hitachi_get( + async def index_hitachi_energy_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145087,10 +145087,10 @@ async def index_hitachi_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination: - """Return vulnerability data stored in index \"hitachi\" + ) -> RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination: + """Return vulnerability data stored in index \"hitachi-energy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` :param page: set the page number of the response :type page: int @@ -145162,7 +145162,7 @@ async def index_hitachi_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_get_serialize( + _param = self._index_hitachi_energy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -145194,7 +145194,7 @@ async def index_hitachi_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", '404': "str", '500': "str", } @@ -145210,7 +145210,7 @@ async def index_hitachi_get( @validate_call - async def index_hitachi_get_with_http_info( + async def index_hitachi_energy_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145248,10 +145248,10 @@ async def index_hitachi_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination]: - """Return vulnerability data stored in index \"hitachi\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination]: + """Return vulnerability data stored in index \"hitachi-energy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` :param page: set the page number of the response :type page: int @@ -145323,7 +145323,7 @@ async def index_hitachi_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_get_serialize( + _param = self._index_hitachi_energy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -145355,7 +145355,7 @@ async def index_hitachi_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", '404': "str", '500': "str", } @@ -145371,7 +145371,7 @@ async def index_hitachi_get_with_http_info( @validate_call - async def index_hitachi_get_without_preload_content( + async def index_hitachi_energy_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145410,9 +145410,9 @@ async def index_hitachi_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hitachi\" + """Return vulnerability data stored in index \"hitachi-energy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` :param page: set the page number of the response :type page: int @@ -145484,7 +145484,7 @@ async def index_hitachi_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_get_serialize( + _param = self._index_hitachi_energy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -145516,7 +145516,7 @@ async def index_hitachi_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", '404': "str", '500': "str", } @@ -145527,7 +145527,7 @@ async def index_hitachi_get_without_preload_content( return response_data.response - def _index_hitachi_get_serialize( + def _index_hitachi_energy_get_serialize( self, page, limit, @@ -145695,7 +145695,7 @@ def _index_hitachi_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hitachi', + resource_path='/v3/index/hitachi-energy', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -145712,7 +145712,7 @@ def _index_hitachi_get_serialize( @validate_call - async def index_hkcert_get( + async def index_hitachi_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145750,10 +145750,10 @@ async def index_hkcert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination: - """Return vulnerability data stored in index \"hkcert\" + ) -> RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination: + """Return vulnerability data stored in index \"hitachi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` :param page: set the page number of the response :type page: int @@ -145825,7 +145825,7 @@ async def index_hkcert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hkcert_get_serialize( + _param = self._index_hitachi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -145857,7 +145857,7 @@ async def index_hkcert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", '404': "str", '500': "str", } @@ -145873,7 +145873,7 @@ async def index_hkcert_get( @validate_call - async def index_hkcert_get_with_http_info( + async def index_hitachi_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145911,10 +145911,10 @@ async def index_hkcert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination]: - """Return vulnerability data stored in index \"hkcert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination]: + """Return vulnerability data stored in index \"hitachi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` :param page: set the page number of the response :type page: int @@ -145986,7 +145986,7 @@ async def index_hkcert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hkcert_get_serialize( + _param = self._index_hitachi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146018,7 +146018,7 @@ async def index_hkcert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", '404': "str", '500': "str", } @@ -146034,7 +146034,7 @@ async def index_hkcert_get_with_http_info( @validate_call - async def index_hkcert_get_without_preload_content( + async def index_hitachi_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -146073,9 +146073,9 @@ async def index_hkcert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hkcert\" + """Return vulnerability data stored in index \"hitachi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` :param page: set the page number of the response :type page: int @@ -146147,7 +146147,7 @@ async def index_hkcert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hkcert_get_serialize( + _param = self._index_hitachi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146179,7 +146179,7 @@ async def index_hkcert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", '404': "str", '500': "str", } @@ -146190,7 +146190,7 @@ async def index_hkcert_get_without_preload_content( return response_data.response - def _index_hkcert_get_serialize( + def _index_hitachi_get_serialize( self, page, limit, @@ -146358,7 +146358,7 @@ def _index_hkcert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hkcert', + resource_path='/v3/index/hitachi', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -146375,7 +146375,7 @@ def _index_hkcert_get_serialize( @validate_call - async def index_hms_get( + async def index_hkcert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -146413,10 +146413,10 @@ async def index_hms_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination: - """Return vulnerability data stored in index \"hms\" + ) -> RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination: + """Return vulnerability data stored in index \"hkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` :param page: set the page number of the response :type page: int @@ -146488,7 +146488,7 @@ async def index_hms_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hms_get_serialize( + _param = self._index_hkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146520,7 +146520,7 @@ async def index_hms_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", '404': "str", '500': "str", } @@ -146536,7 +146536,7 @@ async def index_hms_get( @validate_call - async def index_hms_get_with_http_info( + async def index_hkcert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -146574,10 +146574,10 @@ async def index_hms_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination]: - """Return vulnerability data stored in index \"hms\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination]: + """Return vulnerability data stored in index \"hkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` :param page: set the page number of the response :type page: int @@ -146649,7 +146649,7 @@ async def index_hms_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hms_get_serialize( + _param = self._index_hkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146681,7 +146681,7 @@ async def index_hms_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", '404': "str", '500': "str", } @@ -146697,7 +146697,7 @@ async def index_hms_get_with_http_info( @validate_call - async def index_hms_get_without_preload_content( + async def index_hkcert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -146736,9 +146736,9 @@ async def index_hms_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hms\" + """Return vulnerability data stored in index \"hkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` :param page: set the page number of the response :type page: int @@ -146810,7 +146810,7 @@ async def index_hms_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hms_get_serialize( + _param = self._index_hkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146842,7 +146842,7 @@ async def index_hms_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", '404': "str", '500': "str", } @@ -146853,7 +146853,7 @@ async def index_hms_get_without_preload_content( return response_data.response - def _index_hms_get_serialize( + def _index_hkcert_get_serialize( self, page, limit, @@ -147021,7 +147021,7 @@ def _index_hms_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hms', + resource_path='/v3/index/hkcert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -147038,7 +147038,7 @@ def _index_hms_get_serialize( @validate_call - async def index_honeywell_get( + async def index_hms_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147076,10 +147076,10 @@ async def index_honeywell_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination: - """Return vulnerability data stored in index \"honeywell\" + ) -> RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination: + """Return vulnerability data stored in index \"hms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` :param page: set the page number of the response :type page: int @@ -147151,7 +147151,7 @@ async def index_honeywell_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_honeywell_get_serialize( + _param = self._index_hms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -147183,7 +147183,7 @@ async def index_honeywell_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", '404': "str", '500': "str", } @@ -147199,7 +147199,7 @@ async def index_honeywell_get( @validate_call - async def index_honeywell_get_with_http_info( + async def index_hms_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147237,10 +147237,10 @@ async def index_honeywell_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination]: - """Return vulnerability data stored in index \"honeywell\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination]: + """Return vulnerability data stored in index \"hms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` :param page: set the page number of the response :type page: int @@ -147312,7 +147312,7 @@ async def index_honeywell_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_honeywell_get_serialize( + _param = self._index_hms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -147344,7 +147344,7 @@ async def index_honeywell_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", '404': "str", '500': "str", } @@ -147360,7 +147360,7 @@ async def index_honeywell_get_with_http_info( @validate_call - async def index_honeywell_get_without_preload_content( + async def index_hms_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147399,9 +147399,9 @@ async def index_honeywell_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"honeywell\" + """Return vulnerability data stored in index \"hms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` :param page: set the page number of the response :type page: int @@ -147473,7 +147473,7 @@ async def index_honeywell_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_honeywell_get_serialize( + _param = self._index_hms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -147505,7 +147505,7 @@ async def index_honeywell_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", '404': "str", '500': "str", } @@ -147516,7 +147516,7 @@ async def index_honeywell_get_without_preload_content( return response_data.response - def _index_honeywell_get_serialize( + def _index_hms_get_serialize( self, page, limit, @@ -147684,7 +147684,7 @@ def _index_honeywell_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/honeywell', + resource_path='/v3/index/hms', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -147701,7 +147701,7 @@ def _index_honeywell_get_serialize( @validate_call - async def index_hp_eol_get( + async def index_honeywell_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147739,10 +147739,10 @@ async def index_hp_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: - """Return vulnerability data stored in index \"hp-eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination: + """Return vulnerability data stored in index \"honeywell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` :param page: set the page number of the response :type page: int @@ -147814,7 +147814,7 @@ async def index_hp_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_eol_get_serialize( + _param = self._index_honeywell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -147846,7 +147846,7 @@ async def index_hp_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", '404': "str", '500': "str", } @@ -147862,7 +147862,7 @@ async def index_hp_eol_get( @validate_call - async def index_hp_eol_get_with_http_info( + async def index_honeywell_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147900,10 +147900,10 @@ async def index_hp_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: - """Return vulnerability data stored in index \"hp-eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination]: + """Return vulnerability data stored in index \"honeywell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` :param page: set the page number of the response :type page: int @@ -147975,7 +147975,7 @@ async def index_hp_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_eol_get_serialize( + _param = self._index_honeywell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148007,7 +148007,7 @@ async def index_hp_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", '404': "str", '500': "str", } @@ -148023,7 +148023,7 @@ async def index_hp_eol_get_with_http_info( @validate_call - async def index_hp_eol_get_without_preload_content( + async def index_honeywell_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -148062,9 +148062,9 @@ async def index_hp_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hp-eol\" + """Return vulnerability data stored in index \"honeywell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` :param page: set the page number of the response :type page: int @@ -148136,7 +148136,7 @@ async def index_hp_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_eol_get_serialize( + _param = self._index_honeywell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148168,7 +148168,7 @@ async def index_hp_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", '404': "str", '500': "str", } @@ -148179,7 +148179,7 @@ async def index_hp_eol_get_without_preload_content( return response_data.response - def _index_hp_eol_get_serialize( + def _index_honeywell_get_serialize( self, page, limit, @@ -148347,7 +148347,7 @@ def _index_hp_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hp-eol', + resource_path='/v3/index/honeywell', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -148364,7 +148364,7 @@ def _index_hp_eol_get_serialize( @validate_call - async def index_hp_get( + async def index_hp_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -148402,10 +148402,10 @@ async def index_hp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination: - """Return vulnerability data stored in index \"hp\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: + """Return vulnerability data stored in index \"hp-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` :param page: set the page number of the response :type page: int @@ -148477,7 +148477,7 @@ async def index_hp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_get_serialize( + _param = self._index_hp_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148509,7 +148509,7 @@ async def index_hp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -148525,7 +148525,7 @@ async def index_hp_get( @validate_call - async def index_hp_get_with_http_info( + async def index_hp_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -148563,10 +148563,10 @@ async def index_hp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination]: - """Return vulnerability data stored in index \"hp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: + """Return vulnerability data stored in index \"hp-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` :param page: set the page number of the response :type page: int @@ -148638,7 +148638,7 @@ async def index_hp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_get_serialize( + _param = self._index_hp_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148670,7 +148670,7 @@ async def index_hp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -148686,7 +148686,7 @@ async def index_hp_get_with_http_info( @validate_call - async def index_hp_get_without_preload_content( + async def index_hp_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -148725,9 +148725,9 @@ async def index_hp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hp\" + """Return vulnerability data stored in index \"hp-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` :param page: set the page number of the response :type page: int @@ -148799,7 +148799,7 @@ async def index_hp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_get_serialize( + _param = self._index_hp_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148831,7 +148831,7 @@ async def index_hp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -148842,7 +148842,7 @@ async def index_hp_get_without_preload_content( return response_data.response - def _index_hp_get_serialize( + def _index_hp_eol_get_serialize( self, page, limit, @@ -149010,7 +149010,7 @@ def _index_hp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hp', + resource_path='/v3/index/hp-eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -149027,7 +149027,7 @@ def _index_hp_get_serialize( @validate_call - async def index_hpe_eol_get( + async def index_hp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149065,10 +149065,10 @@ async def index_hpe_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: - """Return vulnerability data stored in index \"hpe-eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination: + """Return vulnerability data stored in index \"hp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` :param page: set the page number of the response :type page: int @@ -149140,7 +149140,7 @@ async def index_hpe_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_eol_get_serialize( + _param = self._index_hp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149172,7 +149172,7 @@ async def index_hpe_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", '404': "str", '500': "str", } @@ -149188,7 +149188,7 @@ async def index_hpe_eol_get( @validate_call - async def index_hpe_eol_get_with_http_info( + async def index_hp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149226,10 +149226,10 @@ async def index_hpe_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: - """Return vulnerability data stored in index \"hpe-eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination]: + """Return vulnerability data stored in index \"hp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` :param page: set the page number of the response :type page: int @@ -149301,7 +149301,7 @@ async def index_hpe_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_eol_get_serialize( + _param = self._index_hp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149333,7 +149333,7 @@ async def index_hpe_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", '404': "str", '500': "str", } @@ -149349,7 +149349,7 @@ async def index_hpe_eol_get_with_http_info( @validate_call - async def index_hpe_eol_get_without_preload_content( + async def index_hp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149388,9 +149388,9 @@ async def index_hpe_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hpe-eol\" + """Return vulnerability data stored in index \"hp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` :param page: set the page number of the response :type page: int @@ -149462,7 +149462,7 @@ async def index_hpe_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_eol_get_serialize( + _param = self._index_hp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149494,7 +149494,7 @@ async def index_hpe_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", '404': "str", '500': "str", } @@ -149505,7 +149505,7 @@ async def index_hpe_eol_get_without_preload_content( return response_data.response - def _index_hpe_eol_get_serialize( + def _index_hp_get_serialize( self, page, limit, @@ -149673,7 +149673,7 @@ def _index_hpe_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hpe-eol', + resource_path='/v3/index/hp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -149690,7 +149690,7 @@ def _index_hpe_eol_get_serialize( @validate_call - async def index_hpe_get( + async def index_hpe_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149728,10 +149728,10 @@ async def index_hpe_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination: - """Return vulnerability data stored in index \"hpe\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: + """Return vulnerability data stored in index \"hpe-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` :param page: set the page number of the response :type page: int @@ -149803,7 +149803,7 @@ async def index_hpe_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_get_serialize( + _param = self._index_hpe_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149835,7 +149835,7 @@ async def index_hpe_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -149851,7 +149851,7 @@ async def index_hpe_get( @validate_call - async def index_hpe_get_with_http_info( + async def index_hpe_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149889,10 +149889,10 @@ async def index_hpe_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination]: - """Return vulnerability data stored in index \"hpe\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: + """Return vulnerability data stored in index \"hpe-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` :param page: set the page number of the response :type page: int @@ -149964,7 +149964,7 @@ async def index_hpe_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_get_serialize( + _param = self._index_hpe_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149996,7 +149996,7 @@ async def index_hpe_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -150012,7 +150012,7 @@ async def index_hpe_get_with_http_info( @validate_call - async def index_hpe_get_without_preload_content( + async def index_hpe_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -150051,9 +150051,9 @@ async def index_hpe_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hpe\" + """Return vulnerability data stored in index \"hpe-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` :param page: set the page number of the response :type page: int @@ -150125,7 +150125,7 @@ async def index_hpe_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_get_serialize( + _param = self._index_hpe_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -150157,7 +150157,7 @@ async def index_hpe_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -150168,7 +150168,7 @@ async def index_hpe_get_without_preload_content( return response_data.response - def _index_hpe_get_serialize( + def _index_hpe_eol_get_serialize( self, page, limit, @@ -150336,7 +150336,7 @@ def _index_hpe_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hpe', + resource_path='/v3/index/hpe-eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -150353,7 +150353,7 @@ def _index_hpe_get_serialize( @validate_call - async def index_huawei_euleros_get( + async def index_hpe_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -150391,10 +150391,10 @@ async def index_huawei_euleros_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination: - """Return vulnerability data stored in index \"huawei-euleros\" + ) -> RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination: + """Return vulnerability data stored in index \"hpe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` :param page: set the page number of the response :type page: int @@ -150466,7 +150466,7 @@ async def index_huawei_euleros_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_euleros_get_serialize( + _param = self._index_hpe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -150498,7 +150498,7 @@ async def index_huawei_euleros_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", '404': "str", '500': "str", } @@ -150514,7 +150514,7 @@ async def index_huawei_euleros_get( @validate_call - async def index_huawei_euleros_get_with_http_info( + async def index_hpe_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -150552,10 +150552,10 @@ async def index_huawei_euleros_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination]: - """Return vulnerability data stored in index \"huawei-euleros\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination]: + """Return vulnerability data stored in index \"hpe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` :param page: set the page number of the response :type page: int @@ -150627,7 +150627,7 @@ async def index_huawei_euleros_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_euleros_get_serialize( + _param = self._index_hpe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -150659,7 +150659,7 @@ async def index_huawei_euleros_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", '404': "str", '500': "str", } @@ -150675,7 +150675,7 @@ async def index_huawei_euleros_get_with_http_info( @validate_call - async def index_huawei_euleros_get_without_preload_content( + async def index_hpe_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -150714,9 +150714,9 @@ async def index_huawei_euleros_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"huawei-euleros\" + """Return vulnerability data stored in index \"hpe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` :param page: set the page number of the response :type page: int @@ -150788,7 +150788,7 @@ async def index_huawei_euleros_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_euleros_get_serialize( + _param = self._index_hpe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -150820,7 +150820,7 @@ async def index_huawei_euleros_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", '404': "str", '500': "str", } @@ -150831,7 +150831,7 @@ async def index_huawei_euleros_get_without_preload_content( return response_data.response - def _index_huawei_euleros_get_serialize( + def _index_hpe_get_serialize( self, page, limit, @@ -150999,7 +150999,7 @@ def _index_huawei_euleros_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/huawei-euleros', + resource_path='/v3/index/hpe', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -151016,7 +151016,7 @@ def _index_huawei_euleros_get_serialize( @validate_call - async def index_huawei_ips_get( + async def index_huawei_euleros_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151054,10 +151054,10 @@ async def index_huawei_ips_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination: - """Return vulnerability data stored in index \"huawei-ips\" + ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination: + """Return vulnerability data stored in index \"huawei-euleros\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` :param page: set the page number of the response :type page: int @@ -151129,7 +151129,7 @@ async def index_huawei_ips_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_ips_get_serialize( + _param = self._index_huawei_euleros_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151161,7 +151161,7 @@ async def index_huawei_ips_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", '404': "str", '500': "str", } @@ -151177,7 +151177,7 @@ async def index_huawei_ips_get( @validate_call - async def index_huawei_ips_get_with_http_info( + async def index_huawei_euleros_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151215,10 +151215,10 @@ async def index_huawei_ips_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination]: - """Return vulnerability data stored in index \"huawei-ips\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination]: + """Return vulnerability data stored in index \"huawei-euleros\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` :param page: set the page number of the response :type page: int @@ -151290,7 +151290,7 @@ async def index_huawei_ips_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_ips_get_serialize( + _param = self._index_huawei_euleros_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151322,7 +151322,7 @@ async def index_huawei_ips_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", '404': "str", '500': "str", } @@ -151338,7 +151338,7 @@ async def index_huawei_ips_get_with_http_info( @validate_call - async def index_huawei_ips_get_without_preload_content( + async def index_huawei_euleros_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151377,9 +151377,9 @@ async def index_huawei_ips_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"huawei-ips\" + """Return vulnerability data stored in index \"huawei-euleros\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` :param page: set the page number of the response :type page: int @@ -151451,7 +151451,7 @@ async def index_huawei_ips_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_ips_get_serialize( + _param = self._index_huawei_euleros_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151483,7 +151483,7 @@ async def index_huawei_ips_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", '404': "str", '500': "str", } @@ -151494,7 +151494,7 @@ async def index_huawei_ips_get_without_preload_content( return response_data.response - def _index_huawei_ips_get_serialize( + def _index_huawei_euleros_get_serialize( self, page, limit, @@ -151662,7 +151662,7 @@ def _index_huawei_ips_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/huawei-ips', + resource_path='/v3/index/huawei-euleros', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -151679,7 +151679,7 @@ def _index_huawei_ips_get_serialize( @validate_call - async def index_huawei_psirt_get( + async def index_huawei_ips_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151717,10 +151717,10 @@ async def index_huawei_psirt_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination: - """Return vulnerability data stored in index \"huawei-psirt\" + ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination: + """Return vulnerability data stored in index \"huawei-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` :param page: set the page number of the response :type page: int @@ -151792,7 +151792,7 @@ async def index_huawei_psirt_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_psirt_get_serialize( + _param = self._index_huawei_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151824,7 +151824,7 @@ async def index_huawei_psirt_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", '404': "str", '500': "str", } @@ -151840,7 +151840,7 @@ async def index_huawei_psirt_get( @validate_call - async def index_huawei_psirt_get_with_http_info( + async def index_huawei_ips_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151878,10 +151878,10 @@ async def index_huawei_psirt_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination]: - """Return vulnerability data stored in index \"huawei-psirt\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination]: + """Return vulnerability data stored in index \"huawei-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` :param page: set the page number of the response :type page: int @@ -151953,7 +151953,7 @@ async def index_huawei_psirt_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_psirt_get_serialize( + _param = self._index_huawei_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151985,7 +151985,7 @@ async def index_huawei_psirt_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", '404': "str", '500': "str", } @@ -152001,7 +152001,7 @@ async def index_huawei_psirt_get_with_http_info( @validate_call - async def index_huawei_psirt_get_without_preload_content( + async def index_huawei_ips_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -152040,9 +152040,9 @@ async def index_huawei_psirt_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"huawei-psirt\" + """Return vulnerability data stored in index \"huawei-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` :param page: set the page number of the response :type page: int @@ -152114,7 +152114,7 @@ async def index_huawei_psirt_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_psirt_get_serialize( + _param = self._index_huawei_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -152146,7 +152146,7 @@ async def index_huawei_psirt_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", '404': "str", '500': "str", } @@ -152157,7 +152157,7 @@ async def index_huawei_psirt_get_without_preload_content( return response_data.response - def _index_huawei_psirt_get_serialize( + def _index_huawei_ips_get_serialize( self, page, limit, @@ -152325,7 +152325,7 @@ def _index_huawei_psirt_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/huawei-psirt', + resource_path='/v3/index/huawei-ips', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -152342,7 +152342,7 @@ def _index_huawei_psirt_get_serialize( @validate_call - async def index_iava_get( + async def index_huawei_psirt_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -152380,10 +152380,10 @@ async def index_iava_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination: - """Return vulnerability data stored in index \"iava\" + ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination: + """Return vulnerability data stored in index \"huawei-psirt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` :param page: set the page number of the response :type page: int @@ -152455,7 +152455,7 @@ async def index_iava_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_iava_get_serialize( + _param = self._index_huawei_psirt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -152487,7 +152487,7 @@ async def index_iava_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", '404': "str", '500': "str", } @@ -152503,7 +152503,7 @@ async def index_iava_get( @validate_call - async def index_iava_get_with_http_info( + async def index_huawei_psirt_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -152541,10 +152541,10 @@ async def index_iava_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination]: - """Return vulnerability data stored in index \"iava\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination]: + """Return vulnerability data stored in index \"huawei-psirt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` :param page: set the page number of the response :type page: int @@ -152616,7 +152616,7 @@ async def index_iava_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_iava_get_serialize( + _param = self._index_huawei_psirt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -152648,7 +152648,7 @@ async def index_iava_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", '404': "str", '500': "str", } @@ -152664,7 +152664,7 @@ async def index_iava_get_with_http_info( @validate_call - async def index_iava_get_without_preload_content( + async def index_huawei_psirt_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -152703,9 +152703,9 @@ async def index_iava_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"iava\" + """Return vulnerability data stored in index \"huawei-psirt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` :param page: set the page number of the response :type page: int @@ -152777,7 +152777,7 @@ async def index_iava_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_iava_get_serialize( + _param = self._index_huawei_psirt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -152809,7 +152809,7 @@ async def index_iava_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", '404': "str", '500': "str", } @@ -152820,7 +152820,7 @@ async def index_iava_get_without_preload_content( return response_data.response - def _index_iava_get_serialize( + def _index_huawei_psirt_get_serialize( self, page, limit, @@ -152988,7 +152988,7 @@ def _index_iava_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/iava', + resource_path='/v3/index/huawei-psirt', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -153005,7 +153005,7 @@ def _index_iava_get_serialize( @validate_call - async def index_ibm_get( + async def index_iava_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153043,10 +153043,10 @@ async def index_ibm_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination: - """Return vulnerability data stored in index \"ibm\" + ) -> RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination: + """Return vulnerability data stored in index \"iava\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` :param page: set the page number of the response :type page: int @@ -153118,7 +153118,7 @@ async def index_ibm_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ibm_get_serialize( + _param = self._index_iava_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153150,7 +153150,7 @@ async def index_ibm_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", '404': "str", '500': "str", } @@ -153166,7 +153166,7 @@ async def index_ibm_get( @validate_call - async def index_ibm_get_with_http_info( + async def index_iava_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153204,10 +153204,10 @@ async def index_ibm_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination]: - """Return vulnerability data stored in index \"ibm\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination]: + """Return vulnerability data stored in index \"iava\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` :param page: set the page number of the response :type page: int @@ -153279,7 +153279,7 @@ async def index_ibm_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ibm_get_serialize( + _param = self._index_iava_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153311,7 +153311,7 @@ async def index_ibm_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", '404': "str", '500': "str", } @@ -153327,7 +153327,7 @@ async def index_ibm_get_with_http_info( @validate_call - async def index_ibm_get_without_preload_content( + async def index_iava_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153366,9 +153366,9 @@ async def index_ibm_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ibm\" + """Return vulnerability data stored in index \"iava\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` :param page: set the page number of the response :type page: int @@ -153440,7 +153440,7 @@ async def index_ibm_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ibm_get_serialize( + _param = self._index_iava_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153472,7 +153472,7 @@ async def index_ibm_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", '404': "str", '500': "str", } @@ -153483,7 +153483,7 @@ async def index_ibm_get_without_preload_content( return response_data.response - def _index_ibm_get_serialize( + def _index_iava_get_serialize( self, page, limit, @@ -153651,7 +153651,7 @@ def _index_ibm_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ibm', + resource_path='/v3/index/iava', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -153668,7 +153668,7 @@ def _index_ibm_get_serialize( @validate_call - async def index_idemia_get( + async def index_ibm_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153706,10 +153706,10 @@ async def index_idemia_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination: - """Return vulnerability data stored in index \"idemia\" + ) -> RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination: + """Return vulnerability data stored in index \"ibm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` :param page: set the page number of the response :type page: int @@ -153781,7 +153781,7 @@ async def index_idemia_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_idemia_get_serialize( + _param = self._index_ibm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153813,7 +153813,7 @@ async def index_idemia_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", '404': "str", '500': "str", } @@ -153829,7 +153829,7 @@ async def index_idemia_get( @validate_call - async def index_idemia_get_with_http_info( + async def index_ibm_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153867,10 +153867,10 @@ async def index_idemia_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination]: - """Return vulnerability data stored in index \"idemia\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination]: + """Return vulnerability data stored in index \"ibm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` :param page: set the page number of the response :type page: int @@ -153942,7 +153942,7 @@ async def index_idemia_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_idemia_get_serialize( + _param = self._index_ibm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153974,7 +153974,7 @@ async def index_idemia_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", '404': "str", '500': "str", } @@ -153990,7 +153990,7 @@ async def index_idemia_get_with_http_info( @validate_call - async def index_idemia_get_without_preload_content( + async def index_ibm_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -154029,9 +154029,9 @@ async def index_idemia_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"idemia\" + """Return vulnerability data stored in index \"ibm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` :param page: set the page number of the response :type page: int @@ -154103,7 +154103,7 @@ async def index_idemia_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_idemia_get_serialize( + _param = self._index_ibm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -154135,7 +154135,7 @@ async def index_idemia_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", '404': "str", '500': "str", } @@ -154146,7 +154146,7 @@ async def index_idemia_get_without_preload_content( return response_data.response - def _index_idemia_get_serialize( + def _index_ibm_get_serialize( self, page, limit, @@ -154314,7 +154314,7 @@ def _index_idemia_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/idemia', + resource_path='/v3/index/ibm', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -154331,7 +154331,7 @@ def _index_idemia_get_serialize( @validate_call - async def index_igel_get( + async def index_idemia_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -154369,10 +154369,10 @@ async def index_igel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination: - """Return vulnerability data stored in index \"igel\" + ) -> RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination: + """Return vulnerability data stored in index \"idemia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` :param page: set the page number of the response :type page: int @@ -154444,7 +154444,7 @@ async def index_igel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_igel_get_serialize( + _param = self._index_idemia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -154476,7 +154476,7 @@ async def index_igel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", '404': "str", '500': "str", } @@ -154492,7 +154492,7 @@ async def index_igel_get( @validate_call - async def index_igel_get_with_http_info( + async def index_idemia_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -154530,10 +154530,10 @@ async def index_igel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination]: - """Return vulnerability data stored in index \"igel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination]: + """Return vulnerability data stored in index \"idemia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` :param page: set the page number of the response :type page: int @@ -154605,7 +154605,7 @@ async def index_igel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_igel_get_serialize( + _param = self._index_idemia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -154637,7 +154637,7 @@ async def index_igel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", '404': "str", '500': "str", } @@ -154653,7 +154653,7 @@ async def index_igel_get_with_http_info( @validate_call - async def index_igel_get_without_preload_content( + async def index_idemia_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -154692,9 +154692,9 @@ async def index_igel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"igel\" + """Return vulnerability data stored in index \"idemia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` :param page: set the page number of the response :type page: int @@ -154766,7 +154766,7 @@ async def index_igel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_igel_get_serialize( + _param = self._index_idemia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -154798,7 +154798,7 @@ async def index_igel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", '404': "str", '500': "str", } @@ -154809,7 +154809,7 @@ async def index_igel_get_without_preload_content( return response_data.response - def _index_igel_get_serialize( + def _index_idemia_get_serialize( self, page, limit, @@ -154977,7 +154977,7 @@ def _index_igel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/igel', + resource_path='/v3/index/idemia', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -154994,7 +154994,7 @@ def _index_igel_get_serialize( @validate_call - async def index_il_alerts_get( + async def index_igel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155032,10 +155032,10 @@ async def index_il_alerts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination: - """Return vulnerability data stored in index \"il-alerts\" + ) -> RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination: + """Return vulnerability data stored in index \"igel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` :param page: set the page number of the response :type page: int @@ -155107,7 +155107,7 @@ async def index_il_alerts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_alerts_get_serialize( + _param = self._index_igel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155139,7 +155139,7 @@ async def index_il_alerts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", '404': "str", '500': "str", } @@ -155155,7 +155155,7 @@ async def index_il_alerts_get( @validate_call - async def index_il_alerts_get_with_http_info( + async def index_igel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155193,10 +155193,10 @@ async def index_il_alerts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination]: - """Return vulnerability data stored in index \"il-alerts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination]: + """Return vulnerability data stored in index \"igel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` :param page: set the page number of the response :type page: int @@ -155268,7 +155268,7 @@ async def index_il_alerts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_alerts_get_serialize( + _param = self._index_igel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155300,7 +155300,7 @@ async def index_il_alerts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", '404': "str", '500': "str", } @@ -155316,7 +155316,7 @@ async def index_il_alerts_get_with_http_info( @validate_call - async def index_il_alerts_get_without_preload_content( + async def index_igel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155355,9 +155355,9 @@ async def index_il_alerts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"il-alerts\" + """Return vulnerability data stored in index \"igel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` :param page: set the page number of the response :type page: int @@ -155429,7 +155429,7 @@ async def index_il_alerts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_alerts_get_serialize( + _param = self._index_igel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155461,7 +155461,7 @@ async def index_il_alerts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", '404': "str", '500': "str", } @@ -155472,7 +155472,7 @@ async def index_il_alerts_get_without_preload_content( return response_data.response - def _index_il_alerts_get_serialize( + def _index_igel_get_serialize( self, page, limit, @@ -155640,7 +155640,7 @@ def _index_il_alerts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/il-alerts', + resource_path='/v3/index/igel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -155657,7 +155657,7 @@ def _index_il_alerts_get_serialize( @validate_call - async def index_il_vulnerabilities_get( + async def index_il_alerts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155695,10 +155695,10 @@ async def index_il_vulnerabilities_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination: - """Return vulnerability data stored in index \"il-vulnerabilities\" + ) -> RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination: + """Return vulnerability data stored in index \"il-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -155770,7 +155770,7 @@ async def index_il_vulnerabilities_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_vulnerabilities_get_serialize( + _param = self._index_il_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155802,7 +155802,7 @@ async def index_il_vulnerabilities_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", '404': "str", '500': "str", } @@ -155818,7 +155818,7 @@ async def index_il_vulnerabilities_get( @validate_call - async def index_il_vulnerabilities_get_with_http_info( + async def index_il_alerts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155856,10 +155856,10 @@ async def index_il_vulnerabilities_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination]: - """Return vulnerability data stored in index \"il-vulnerabilities\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination]: + """Return vulnerability data stored in index \"il-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -155931,7 +155931,7 @@ async def index_il_vulnerabilities_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_vulnerabilities_get_serialize( + _param = self._index_il_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155963,7 +155963,7 @@ async def index_il_vulnerabilities_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", '404': "str", '500': "str", } @@ -155979,7 +155979,7 @@ async def index_il_vulnerabilities_get_with_http_info( @validate_call - async def index_il_vulnerabilities_get_without_preload_content( + async def index_il_alerts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -156018,9 +156018,9 @@ async def index_il_vulnerabilities_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"il-vulnerabilities\" + """Return vulnerability data stored in index \"il-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -156092,7 +156092,7 @@ async def index_il_vulnerabilities_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_vulnerabilities_get_serialize( + _param = self._index_il_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -156124,7 +156124,7 @@ async def index_il_vulnerabilities_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", '404': "str", '500': "str", } @@ -156135,7 +156135,7 @@ async def index_il_vulnerabilities_get_without_preload_content( return response_data.response - def _index_il_vulnerabilities_get_serialize( + def _index_il_alerts_get_serialize( self, page, limit, @@ -156303,7 +156303,7 @@ def _index_il_vulnerabilities_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/il-vulnerabilities', + resource_path='/v3/index/il-alerts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -156320,7 +156320,7 @@ def _index_il_vulnerabilities_get_serialize( @validate_call - async def index_incibe_get( + async def index_il_vulnerabilities_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -156358,10 +156358,10 @@ async def index_incibe_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"incibe\" + ) -> RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination: + """Return vulnerability data stored in index \"il-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -156433,7 +156433,7 @@ async def index_incibe_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_incibe_get_serialize( + _param = self._index_il_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -156465,7 +156465,7 @@ async def index_incibe_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -156481,7 +156481,7 @@ async def index_incibe_get( @validate_call - async def index_incibe_get_with_http_info( + async def index_il_vulnerabilities_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -156519,10 +156519,10 @@ async def index_incibe_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"incibe\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination]: + """Return vulnerability data stored in index \"il-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -156594,7 +156594,7 @@ async def index_incibe_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_incibe_get_serialize( + _param = self._index_il_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -156626,7 +156626,7 @@ async def index_incibe_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -156642,7 +156642,7 @@ async def index_incibe_get_with_http_info( @validate_call - async def index_incibe_get_without_preload_content( + async def index_il_vulnerabilities_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -156681,9 +156681,9 @@ async def index_incibe_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"incibe\" + """Return vulnerability data stored in index \"il-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -156755,7 +156755,7 @@ async def index_incibe_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_incibe_get_serialize( + _param = self._index_il_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -156787,7 +156787,7 @@ async def index_incibe_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -156798,7 +156798,7 @@ async def index_incibe_get_without_preload_content( return response_data.response - def _index_incibe_get_serialize( + def _index_il_vulnerabilities_get_serialize( self, page, limit, @@ -156966,7 +156966,7 @@ def _index_incibe_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/incibe', + resource_path='/v3/index/il-vulnerabilities', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -156983,7 +156983,7 @@ def _index_incibe_get_serialize( @validate_call - async def index_initial_access_get( + async def index_incibe_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157021,10 +157021,10 @@ async def index_initial_access_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination: - """Return vulnerability data stored in index \"initial-access\" + ) -> RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"incibe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` :param page: set the page number of the response :type page: int @@ -157096,7 +157096,7 @@ async def index_initial_access_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_get_serialize( + _param = self._index_incibe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157128,7 +157128,7 @@ async def index_initial_access_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -157144,7 +157144,7 @@ async def index_initial_access_get( @validate_call - async def index_initial_access_get_with_http_info( + async def index_incibe_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157182,10 +157182,10 @@ async def index_initial_access_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination]: - """Return vulnerability data stored in index \"initial-access\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"incibe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` :param page: set the page number of the response :type page: int @@ -157257,7 +157257,7 @@ async def index_initial_access_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_get_serialize( + _param = self._index_incibe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157289,7 +157289,7 @@ async def index_initial_access_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -157305,7 +157305,7 @@ async def index_initial_access_get_with_http_info( @validate_call - async def index_initial_access_get_without_preload_content( + async def index_incibe_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157344,9 +157344,9 @@ async def index_initial_access_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"initial-access\" + """Return vulnerability data stored in index \"incibe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` :param page: set the page number of the response :type page: int @@ -157418,7 +157418,7 @@ async def index_initial_access_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_get_serialize( + _param = self._index_incibe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157450,7 +157450,7 @@ async def index_initial_access_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -157461,7 +157461,7 @@ async def index_initial_access_get_without_preload_content( return response_data.response - def _index_initial_access_get_serialize( + def _index_incibe_get_serialize( self, page, limit, @@ -157629,7 +157629,7 @@ def _index_initial_access_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/initial-access', + resource_path='/v3/index/incibe', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -157646,7 +157646,7 @@ def _index_initial_access_get_serialize( @validate_call - async def index_initial_access_git_get( + async def index_initial_access_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157685,9 +157685,9 @@ async def index_initial_access_git_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination: - """Return vulnerability data stored in index \"initial-access-git\" + """Return vulnerability data stored in index \"initial-access\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` :param page: set the page number of the response :type page: int @@ -157759,7 +157759,7 @@ async def index_initial_access_git_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_git_get_serialize( + _param = self._index_initial_access_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157807,7 +157807,7 @@ async def index_initial_access_git_get( @validate_call - async def index_initial_access_git_get_with_http_info( + async def index_initial_access_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157846,9 +157846,9 @@ async def index_initial_access_git_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination]: - """Return vulnerability data stored in index \"initial-access-git\" + """Return vulnerability data stored in index \"initial-access\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` :param page: set the page number of the response :type page: int @@ -157920,7 +157920,7 @@ async def index_initial_access_git_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_git_get_serialize( + _param = self._index_initial_access_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157968,7 +157968,7 @@ async def index_initial_access_git_get_with_http_info( @validate_call - async def index_initial_access_git_get_without_preload_content( + async def index_initial_access_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -158007,9 +158007,9 @@ async def index_initial_access_git_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"initial-access-git\" + """Return vulnerability data stored in index \"initial-access\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` :param page: set the page number of the response :type page: int @@ -158081,7 +158081,7 @@ async def index_initial_access_git_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_git_get_serialize( + _param = self._index_initial_access_get_serialize( page=page, limit=limit, cursor=cursor, @@ -158124,7 +158124,7 @@ async def index_initial_access_git_get_without_preload_content( return response_data.response - def _index_initial_access_git_get_serialize( + def _index_initial_access_get_serialize( self, page, limit, @@ -158292,7 +158292,7 @@ def _index_initial_access_git_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/initial-access-git', + resource_path='/v3/index/initial-access', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -158309,7 +158309,7 @@ def _index_initial_access_git_get_serialize( @validate_call - async def index_intel_get( + async def index_initial_access_git_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -158347,10 +158347,10 @@ async def index_intel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination: - """Return vulnerability data stored in index \"intel\" + ) -> RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination: + """Return vulnerability data stored in index \"initial-access-git\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` :param page: set the page number of the response :type page: int @@ -158422,7 +158422,7 @@ async def index_intel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_intel_get_serialize( + _param = self._index_initial_access_git_get_serialize( page=page, limit=limit, cursor=cursor, @@ -158454,7 +158454,7 @@ async def index_intel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", '404': "str", '500': "str", } @@ -158470,7 +158470,7 @@ async def index_intel_get( @validate_call - async def index_intel_get_with_http_info( + async def index_initial_access_git_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -158508,10 +158508,10 @@ async def index_intel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination]: - """Return vulnerability data stored in index \"intel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination]: + """Return vulnerability data stored in index \"initial-access-git\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` :param page: set the page number of the response :type page: int @@ -158583,7 +158583,7 @@ async def index_intel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_intel_get_serialize( + _param = self._index_initial_access_git_get_serialize( page=page, limit=limit, cursor=cursor, @@ -158615,7 +158615,7 @@ async def index_intel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", '404': "str", '500': "str", } @@ -158631,7 +158631,7 @@ async def index_intel_get_with_http_info( @validate_call - async def index_intel_get_without_preload_content( + async def index_initial_access_git_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -158670,9 +158670,9 @@ async def index_intel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"intel\" + """Return vulnerability data stored in index \"initial-access-git\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` :param page: set the page number of the response :type page: int @@ -158744,7 +158744,7 @@ async def index_intel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_intel_get_serialize( + _param = self._index_initial_access_git_get_serialize( page=page, limit=limit, cursor=cursor, @@ -158776,7 +158776,7 @@ async def index_intel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", '404': "str", '500': "str", } @@ -158787,7 +158787,7 @@ async def index_intel_get_without_preload_content( return response_data.response - def _index_intel_get_serialize( + def _index_initial_access_git_get_serialize( self, page, limit, @@ -158955,7 +158955,7 @@ def _index_intel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/intel', + resource_path='/v3/index/initial-access-git', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -158972,7 +158972,7 @@ def _index_intel_get_serialize( @validate_call - async def index_ioc_botnets_get( + async def index_intel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159010,10 +159010,10 @@ async def index_ioc_botnets_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ioc-botnets\" + ) -> RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination: + """Return vulnerability data stored in index \"intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` :param page: set the page number of the response :type page: int @@ -159085,7 +159085,7 @@ async def index_ioc_botnets_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_botnets_get_serialize( + _param = self._index_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159117,7 +159117,7 @@ async def index_ioc_botnets_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", '404': "str", '500': "str", } @@ -159133,7 +159133,7 @@ async def index_ioc_botnets_get( @validate_call - async def index_ioc_botnets_get_with_http_info( + async def index_intel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159171,10 +159171,10 @@ async def index_ioc_botnets_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ioc-botnets\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination]: + """Return vulnerability data stored in index \"intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` :param page: set the page number of the response :type page: int @@ -159246,7 +159246,7 @@ async def index_ioc_botnets_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_botnets_get_serialize( + _param = self._index_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159278,7 +159278,7 @@ async def index_ioc_botnets_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", '404': "str", '500': "str", } @@ -159294,7 +159294,7 @@ async def index_ioc_botnets_get_with_http_info( @validate_call - async def index_ioc_botnets_get_without_preload_content( + async def index_intel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159333,9 +159333,9 @@ async def index_ioc_botnets_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ioc-botnets\" + """Return vulnerability data stored in index \"intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` :param page: set the page number of the response :type page: int @@ -159407,7 +159407,7 @@ async def index_ioc_botnets_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_botnets_get_serialize( + _param = self._index_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159439,7 +159439,7 @@ async def index_ioc_botnets_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", '404': "str", '500': "str", } @@ -159450,7 +159450,7 @@ async def index_ioc_botnets_get_without_preload_content( return response_data.response - def _index_ioc_botnets_get_serialize( + def _index_intel_get_serialize( self, page, limit, @@ -159618,7 +159618,7 @@ def _index_ioc_botnets_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ioc-botnets', + resource_path='/v3/index/intel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -159635,7 +159635,7 @@ def _index_ioc_botnets_get_serialize( @validate_call - async def index_ioc_ransomware_get( + async def index_ioc_botnets_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159673,10 +159673,10 @@ async def index_ioc_ransomware_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ioc-ransomware\" + ) -> RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ioc-botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` :param page: set the page number of the response :type page: int @@ -159748,7 +159748,7 @@ async def index_ioc_ransomware_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_ransomware_get_serialize( + _param = self._index_ioc_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159780,7 +159780,7 @@ async def index_ioc_ransomware_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -159796,7 +159796,7 @@ async def index_ioc_ransomware_get( @validate_call - async def index_ioc_ransomware_get_with_http_info( + async def index_ioc_botnets_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159834,10 +159834,10 @@ async def index_ioc_ransomware_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ioc-ransomware\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ioc-botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` :param page: set the page number of the response :type page: int @@ -159909,7 +159909,7 @@ async def index_ioc_ransomware_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_ransomware_get_serialize( + _param = self._index_ioc_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159941,7 +159941,7 @@ async def index_ioc_ransomware_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -159957,7 +159957,7 @@ async def index_ioc_ransomware_get_with_http_info( @validate_call - async def index_ioc_ransomware_get_without_preload_content( + async def index_ioc_botnets_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159996,9 +159996,9 @@ async def index_ioc_ransomware_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ioc-ransomware\" + """Return vulnerability data stored in index \"ioc-botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` :param page: set the page number of the response :type page: int @@ -160070,7 +160070,7 @@ async def index_ioc_ransomware_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_ransomware_get_serialize( + _param = self._index_ioc_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -160102,7 +160102,7 @@ async def index_ioc_ransomware_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -160113,7 +160113,7 @@ async def index_ioc_ransomware_get_without_preload_content( return response_data.response - def _index_ioc_ransomware_get_serialize( + def _index_ioc_botnets_get_serialize( self, page, limit, @@ -160281,7 +160281,7 @@ def _index_ioc_ransomware_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ioc-ransomware', + resource_path='/v3/index/ioc-botnets', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -160298,7 +160298,7 @@ def _index_ioc_ransomware_get_serialize( @validate_call - async def index_ioc_threat_actors_get( + async def index_ioc_ransomware_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -160336,10 +160336,10 @@ async def index_ioc_threat_actors_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ioc-threat-actors\" + ) -> RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ioc-ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -160411,7 +160411,7 @@ async def index_ioc_threat_actors_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_threat_actors_get_serialize( + _param = self._index_ioc_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -160443,7 +160443,7 @@ async def index_ioc_threat_actors_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -160459,7 +160459,7 @@ async def index_ioc_threat_actors_get( @validate_call - async def index_ioc_threat_actors_get_with_http_info( + async def index_ioc_ransomware_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -160497,10 +160497,10 @@ async def index_ioc_threat_actors_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ioc-threat-actors\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ioc-ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -160572,7 +160572,7 @@ async def index_ioc_threat_actors_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_threat_actors_get_serialize( + _param = self._index_ioc_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -160604,7 +160604,7 @@ async def index_ioc_threat_actors_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -160620,7 +160620,7 @@ async def index_ioc_threat_actors_get_with_http_info( @validate_call - async def index_ioc_threat_actors_get_without_preload_content( + async def index_ioc_ransomware_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -160659,9 +160659,9 @@ async def index_ioc_threat_actors_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ioc-threat-actors\" + """Return vulnerability data stored in index \"ioc-ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -160733,7 +160733,7 @@ async def index_ioc_threat_actors_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_threat_actors_get_serialize( + _param = self._index_ioc_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -160765,7 +160765,7 @@ async def index_ioc_threat_actors_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -160776,7 +160776,7 @@ async def index_ioc_threat_actors_get_without_preload_content( return response_data.response - def _index_ioc_threat_actors_get_serialize( + def _index_ioc_ransomware_get_serialize( self, page, limit, @@ -160944,7 +160944,7 @@ def _index_ioc_threat_actors_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ioc-threat-actors', + resource_path='/v3/index/ioc-ransomware', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -160961,7 +160961,7 @@ def _index_ioc_threat_actors_get_serialize( @validate_call - async def index_ipintel10d_get( + async def index_ioc_threat_actors_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -160972,19 +160972,14 @@ async def index_ipintel10d_get( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, - asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, - country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, - kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, - hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, - matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -161004,10 +160999,10 @@ async def index_ipintel10d_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: - """Return vulnerability data stored in index \"ipintel-10d\" + ) -> RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ioc-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -161027,6 +161022,10 @@ async def index_ipintel10d_get( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -161037,22 +161036,8 @@ async def index_ipintel10d_get( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param cidr: Specify an IPv4 or IPv6 CIDR - :type cidr: str - :param asn: Autonomous system number - :type asn: str - :param country: Country name ISO-3166?? format - :type country: str - :param country_code: Country code in ISO-3166?? format - :type country_code: str - :param id: Record type - :type id: str - :param kind: Kind of IpIntel Finding - :type kind: str - :param hostname: Match a string in the list of hostnames - :type hostname: str - :param matches: Search for a string in the field describing the finding - :type matches: str + :param published: Specify a published date + :type published: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -161089,7 +161074,7 @@ async def index_ipintel10d_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel10d_get_serialize( + _param = self._index_ioc_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -161099,19 +161084,14 @@ async def index_ipintel10d_get( cve=cve, alias=alias, iava=iava, + jvndb=jvndb, + ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - cidr=cidr, - asn=asn, - country=country, - country_code=country_code, - id=id, - kind=kind, - hostname=hostname, - matches=matches, + published=published, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -161126,7 +161106,7 @@ async def index_ipintel10d_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -161142,7 +161122,7 @@ async def index_ipintel10d_get( @validate_call - async def index_ipintel10d_get_with_http_info( + async def index_ioc_threat_actors_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -161153,19 +161133,14 @@ async def index_ipintel10d_get_with_http_info( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, - asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, - country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, - kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, - hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, - matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -161185,10 +161160,10 @@ async def index_ipintel10d_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: - """Return vulnerability data stored in index \"ipintel-10d\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ioc-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -161208,6 +161183,10 @@ async def index_ipintel10d_get_with_http_info( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -161218,22 +161197,8 @@ async def index_ipintel10d_get_with_http_info( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param cidr: Specify an IPv4 or IPv6 CIDR - :type cidr: str - :param asn: Autonomous system number - :type asn: str - :param country: Country name ISO-3166?? format - :type country: str - :param country_code: Country code in ISO-3166?? format - :type country_code: str - :param id: Record type - :type id: str - :param kind: Kind of IpIntel Finding - :type kind: str - :param hostname: Match a string in the list of hostnames - :type hostname: str - :param matches: Search for a string in the field describing the finding - :type matches: str + :param published: Specify a published date + :type published: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -161270,7 +161235,7 @@ async def index_ipintel10d_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel10d_get_serialize( + _param = self._index_ioc_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -161280,19 +161245,14 @@ async def index_ipintel10d_get_with_http_info( cve=cve, alias=alias, iava=iava, + jvndb=jvndb, + ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - cidr=cidr, - asn=asn, - country=country, - country_code=country_code, - id=id, - kind=kind, - hostname=hostname, - matches=matches, + published=published, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -161307,7 +161267,7 @@ async def index_ipintel10d_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -161323,7 +161283,7 @@ async def index_ipintel10d_get_with_http_info( @validate_call - async def index_ipintel10d_get_without_preload_content( + async def index_ioc_threat_actors_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -161334,19 +161294,14 @@ async def index_ipintel10d_get_without_preload_content( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, - asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, - country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, - kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, - hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, - matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -161367,9 +161322,9 @@ async def index_ipintel10d_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ipintel-10d\" + """Return vulnerability data stored in index \"ioc-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -161389,6 +161344,10 @@ async def index_ipintel10d_get_without_preload_content( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -161399,22 +161358,8 @@ async def index_ipintel10d_get_without_preload_content( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param cidr: Specify an IPv4 or IPv6 CIDR - :type cidr: str - :param asn: Autonomous system number - :type asn: str - :param country: Country name ISO-3166?? format - :type country: str - :param country_code: Country code in ISO-3166?? format - :type country_code: str - :param id: Record type - :type id: str - :param kind: Kind of IpIntel Finding - :type kind: str - :param hostname: Match a string in the list of hostnames - :type hostname: str - :param matches: Search for a string in the field describing the finding - :type matches: str + :param published: Specify a published date + :type published: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -161451,7 +161396,7 @@ async def index_ipintel10d_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel10d_get_serialize( + _param = self._index_ioc_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -161461,19 +161406,14 @@ async def index_ipintel10d_get_without_preload_content( cve=cve, alias=alias, iava=iava, + jvndb=jvndb, + ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - cidr=cidr, - asn=asn, - country=country, - country_code=country_code, - id=id, - kind=kind, - hostname=hostname, - matches=matches, + published=published, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -161488,7 +161428,7 @@ async def index_ipintel10d_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -161499,7 +161439,7 @@ async def index_ipintel10d_get_without_preload_content( return response_data.response - def _index_ipintel10d_get_serialize( + def _index_ioc_threat_actors_get_serialize( self, page, limit, @@ -161510,19 +161450,14 @@ def _index_ipintel10d_get_serialize( cve, alias, iava, + jvndb, + ilvn, threat_actor, mitre_id, misp_id, ransomware, botnet, - cidr, - asn, - country, - country_code, - id, - kind, - hostname, - matches, + published, date, updated_at_start_date, updated_at_end_date, @@ -161591,6 +161526,14 @@ def _index_ipintel10d_get_serialize( _query_params.append(('iava', iava)) + if jvndb is not None: + + _query_params.append(('jvndb', jvndb)) + + if ilvn is not None: + + _query_params.append(('ilvn', ilvn)) + if threat_actor is not None: _query_params.append(('threat_actor', threat_actor)) @@ -161611,37 +161554,9 @@ def _index_ipintel10d_get_serialize( _query_params.append(('botnet', botnet)) - if cidr is not None: - - _query_params.append(('cidr', cidr)) - - if asn is not None: - - _query_params.append(('asn', asn)) - - if country is not None: - - _query_params.append(('country', country)) - - if country_code is not None: - - _query_params.append(('country_code', country_code)) - - if id is not None: - - _query_params.append(('id', id)) - - if kind is not None: - - _query_params.append(('kind', kind)) - - if hostname is not None: - - _query_params.append(('hostname', hostname)) - - if matches is not None: + if published is not None: - _query_params.append(('matches', matches)) + _query_params.append(('published', published)) if date is not None: @@ -161692,7 +161607,7 @@ def _index_ipintel10d_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ipintel-10d', + resource_path='/v3/index/ioc-threat-actors', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -161709,7 +161624,7 @@ def _index_ipintel10d_get_serialize( @validate_call - async def index_ipintel30d_get( + async def index_ipintel10d_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -161753,9 +161668,9 @@ async def index_ipintel30d_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: - """Return vulnerability data stored in index \"ipintel-30d\" + """Return vulnerability data stored in index \"ipintel-10d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` :param page: set the page number of the response :type page: int @@ -161837,7 +161752,7 @@ async def index_ipintel30d_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel30d_get_serialize( + _param = self._index_ipintel10d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -161890,7 +161805,7 @@ async def index_ipintel30d_get( @validate_call - async def index_ipintel30d_get_with_http_info( + async def index_ipintel10d_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -161934,9 +161849,9 @@ async def index_ipintel30d_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: - """Return vulnerability data stored in index \"ipintel-30d\" + """Return vulnerability data stored in index \"ipintel-10d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` :param page: set the page number of the response :type page: int @@ -162018,7 +161933,7 @@ async def index_ipintel30d_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel30d_get_serialize( + _param = self._index_ipintel10d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162071,7 +161986,7 @@ async def index_ipintel30d_get_with_http_info( @validate_call - async def index_ipintel30d_get_without_preload_content( + async def index_ipintel10d_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -162115,9 +162030,9 @@ async def index_ipintel30d_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ipintel-30d\" + """Return vulnerability data stored in index \"ipintel-10d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` :param page: set the page number of the response :type page: int @@ -162199,7 +162114,7 @@ async def index_ipintel30d_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel30d_get_serialize( + _param = self._index_ipintel10d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162247,7 +162162,7 @@ async def index_ipintel30d_get_without_preload_content( return response_data.response - def _index_ipintel30d_get_serialize( + def _index_ipintel10d_get_serialize( self, page, limit, @@ -162440,7 +162355,7 @@ def _index_ipintel30d_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ipintel-30d', + resource_path='/v3/index/ipintel-10d', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -162457,7 +162372,7 @@ def _index_ipintel30d_get_serialize( @validate_call - async def index_ipintel3d_get( + async def index_ipintel30d_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -162501,9 +162416,9 @@ async def index_ipintel3d_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: - """Return vulnerability data stored in index \"ipintel-3d\" + """Return vulnerability data stored in index \"ipintel-30d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` :param page: set the page number of the response :type page: int @@ -162585,7 +162500,7 @@ async def index_ipintel3d_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel3d_get_serialize( + _param = self._index_ipintel30d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162638,7 +162553,7 @@ async def index_ipintel3d_get( @validate_call - async def index_ipintel3d_get_with_http_info( + async def index_ipintel30d_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -162682,9 +162597,9 @@ async def index_ipintel3d_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: - """Return vulnerability data stored in index \"ipintel-3d\" + """Return vulnerability data stored in index \"ipintel-30d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` :param page: set the page number of the response :type page: int @@ -162766,7 +162681,7 @@ async def index_ipintel3d_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel3d_get_serialize( + _param = self._index_ipintel30d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162819,7 +162734,7 @@ async def index_ipintel3d_get_with_http_info( @validate_call - async def index_ipintel3d_get_without_preload_content( + async def index_ipintel30d_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -162863,9 +162778,9 @@ async def index_ipintel3d_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ipintel-3d\" + """Return vulnerability data stored in index \"ipintel-30d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` :param page: set the page number of the response :type page: int @@ -162947,7 +162862,7 @@ async def index_ipintel3d_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel3d_get_serialize( + _param = self._index_ipintel30d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162995,7 +162910,7 @@ async def index_ipintel3d_get_without_preload_content( return response_data.response - def _index_ipintel3d_get_serialize( + def _index_ipintel30d_get_serialize( self, page, limit, @@ -163188,7 +163103,7 @@ def _index_ipintel3d_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ipintel-3d', + resource_path='/v3/index/ipintel-30d', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -163205,7 +163120,7 @@ def _index_ipintel3d_get_serialize( @validate_call - async def index_ipintel90d_get( + async def index_ipintel3d_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -163249,9 +163164,9 @@ async def index_ipintel90d_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: - """Return vulnerability data stored in index \"ipintel-90d\" + """Return vulnerability data stored in index \"ipintel-3d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` :param page: set the page number of the response :type page: int @@ -163333,7 +163248,7 @@ async def index_ipintel90d_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel90d_get_serialize( + _param = self._index_ipintel3d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -163386,7 +163301,7 @@ async def index_ipintel90d_get( @validate_call - async def index_ipintel90d_get_with_http_info( + async def index_ipintel3d_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -163430,9 +163345,9 @@ async def index_ipintel90d_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: - """Return vulnerability data stored in index \"ipintel-90d\" + """Return vulnerability data stored in index \"ipintel-3d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` :param page: set the page number of the response :type page: int @@ -163514,7 +163429,7 @@ async def index_ipintel90d_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel90d_get_serialize( + _param = self._index_ipintel3d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -163567,7 +163482,7 @@ async def index_ipintel90d_get_with_http_info( @validate_call - async def index_ipintel90d_get_without_preload_content( + async def index_ipintel3d_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -163611,9 +163526,9 @@ async def index_ipintel90d_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ipintel-90d\" + """Return vulnerability data stored in index \"ipintel-3d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` :param page: set the page number of the response :type page: int @@ -163695,7 +163610,7 @@ async def index_ipintel90d_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel90d_get_serialize( + _param = self._index_ipintel3d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -163743,7 +163658,7 @@ async def index_ipintel90d_get_without_preload_content( return response_data.response - def _index_ipintel90d_get_serialize( + def _index_ipintel3d_get_serialize( self, page, limit, @@ -163936,7 +163851,7 @@ def _index_ipintel90d_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ipintel-90d', + resource_path='/v3/index/ipintel-3d', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -163953,7 +163868,7 @@ def _index_ipintel90d_get_serialize( @validate_call - async def index_istio_get( + async def index_ipintel90d_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -163964,14 +163879,19 @@ async def index_istio_get( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, - jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, - ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, + asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, + country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, + country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, + id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, + kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, + hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, + matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -163991,10 +163911,10 @@ async def index_istio_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination: - """Return vulnerability data stored in index \"istio\" + ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: + """Return vulnerability data stored in index \"ipintel-90d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` :param page: set the page number of the response :type page: int @@ -164014,10 +163934,6 @@ async def index_istio_get( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str - :param jvndb: Specify a JVNDB ID to search with. - :type jvndb: str - :param ilvn: Specify an ILVN ID to search with. - :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -164028,8 +163944,22 @@ async def index_istio_get( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param published: Specify a published date - :type published: str + :param cidr: Specify an IPv4 or IPv6 CIDR + :type cidr: str + :param asn: Autonomous system number + :type asn: str + :param country: Country name ISO-3166?? format + :type country: str + :param country_code: Country code in ISO-3166?? format + :type country_code: str + :param id: Record type + :type id: str + :param kind: Kind of IpIntel Finding + :type kind: str + :param hostname: Match a string in the list of hostnames + :type hostname: str + :param matches: Search for a string in the field describing the finding + :type matches: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -164066,7 +163996,7 @@ async def index_istio_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_istio_get_serialize( + _param = self._index_ipintel90d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164076,14 +164006,19 @@ async def index_istio_get( cve=cve, alias=alias, iava=iava, - jvndb=jvndb, - ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - published=published, + cidr=cidr, + asn=asn, + country=country, + country_code=country_code, + id=id, + kind=kind, + hostname=hostname, + matches=matches, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -164098,7 +164033,7 @@ async def index_istio_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", '404': "str", '500': "str", } @@ -164114,7 +164049,7 @@ async def index_istio_get( @validate_call - async def index_istio_get_with_http_info( + async def index_ipintel90d_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164125,14 +164060,19 @@ async def index_istio_get_with_http_info( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, - jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, - ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, + asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, + country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, + country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, + id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, + kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, + hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, + matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -164152,10 +164092,10 @@ async def index_istio_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination]: - """Return vulnerability data stored in index \"istio\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: + """Return vulnerability data stored in index \"ipintel-90d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` :param page: set the page number of the response :type page: int @@ -164175,10 +164115,6 @@ async def index_istio_get_with_http_info( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str - :param jvndb: Specify a JVNDB ID to search with. - :type jvndb: str - :param ilvn: Specify an ILVN ID to search with. - :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -164189,8 +164125,22 @@ async def index_istio_get_with_http_info( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param published: Specify a published date - :type published: str + :param cidr: Specify an IPv4 or IPv6 CIDR + :type cidr: str + :param asn: Autonomous system number + :type asn: str + :param country: Country name ISO-3166?? format + :type country: str + :param country_code: Country code in ISO-3166?? format + :type country_code: str + :param id: Record type + :type id: str + :param kind: Kind of IpIntel Finding + :type kind: str + :param hostname: Match a string in the list of hostnames + :type hostname: str + :param matches: Search for a string in the field describing the finding + :type matches: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -164227,7 +164177,7 @@ async def index_istio_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_istio_get_serialize( + _param = self._index_ipintel90d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164237,14 +164187,19 @@ async def index_istio_get_with_http_info( cve=cve, alias=alias, iava=iava, - jvndb=jvndb, - ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - published=published, + cidr=cidr, + asn=asn, + country=country, + country_code=country_code, + id=id, + kind=kind, + hostname=hostname, + matches=matches, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -164259,7 +164214,7 @@ async def index_istio_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", '404': "str", '500': "str", } @@ -164275,7 +164230,7 @@ async def index_istio_get_with_http_info( @validate_call - async def index_istio_get_without_preload_content( + async def index_ipintel90d_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164286,14 +164241,19 @@ async def index_istio_get_without_preload_content( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, - jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, - ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, + asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, + country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, + country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, + id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, + kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, + hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, + matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -164314,9 +164274,9 @@ async def index_istio_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"istio\" + """Return vulnerability data stored in index \"ipintel-90d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` :param page: set the page number of the response :type page: int @@ -164336,10 +164296,6 @@ async def index_istio_get_without_preload_content( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str - :param jvndb: Specify a JVNDB ID to search with. - :type jvndb: str - :param ilvn: Specify an ILVN ID to search with. - :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -164350,8 +164306,22 @@ async def index_istio_get_without_preload_content( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param published: Specify a published date - :type published: str + :param cidr: Specify an IPv4 or IPv6 CIDR + :type cidr: str + :param asn: Autonomous system number + :type asn: str + :param country: Country name ISO-3166?? format + :type country: str + :param country_code: Country code in ISO-3166?? format + :type country_code: str + :param id: Record type + :type id: str + :param kind: Kind of IpIntel Finding + :type kind: str + :param hostname: Match a string in the list of hostnames + :type hostname: str + :param matches: Search for a string in the field describing the finding + :type matches: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -164388,7 +164358,7 @@ async def index_istio_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_istio_get_serialize( + _param = self._index_ipintel90d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164398,14 +164368,19 @@ async def index_istio_get_without_preload_content( cve=cve, alias=alias, iava=iava, - jvndb=jvndb, - ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - published=published, + cidr=cidr, + asn=asn, + country=country, + country_code=country_code, + id=id, + kind=kind, + hostname=hostname, + matches=matches, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -164420,7 +164395,7 @@ async def index_istio_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", '404': "str", '500': "str", } @@ -164431,7 +164406,7 @@ async def index_istio_get_without_preload_content( return response_data.response - def _index_istio_get_serialize( + def _index_ipintel90d_get_serialize( self, page, limit, @@ -164442,14 +164417,19 @@ def _index_istio_get_serialize( cve, alias, iava, - jvndb, - ilvn, threat_actor, mitre_id, misp_id, ransomware, botnet, - published, + cidr, + asn, + country, + country_code, + id, + kind, + hostname, + matches, date, updated_at_start_date, updated_at_end_date, @@ -164518,14 +164498,6 @@ def _index_istio_get_serialize( _query_params.append(('iava', iava)) - if jvndb is not None: - - _query_params.append(('jvndb', jvndb)) - - if ilvn is not None: - - _query_params.append(('ilvn', ilvn)) - if threat_actor is not None: _query_params.append(('threat_actor', threat_actor)) @@ -164546,9 +164518,37 @@ def _index_istio_get_serialize( _query_params.append(('botnet', botnet)) - if published is not None: + if cidr is not None: - _query_params.append(('published', published)) + _query_params.append(('cidr', cidr)) + + if asn is not None: + + _query_params.append(('asn', asn)) + + if country is not None: + + _query_params.append(('country', country)) + + if country_code is not None: + + _query_params.append(('country_code', country_code)) + + if id is not None: + + _query_params.append(('id', id)) + + if kind is not None: + + _query_params.append(('kind', kind)) + + if hostname is not None: + + _query_params.append(('hostname', hostname)) + + if matches is not None: + + _query_params.append(('matches', matches)) if date is not None: @@ -164599,7 +164599,7 @@ def _index_istio_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/istio', + resource_path='/v3/index/ipintel-90d', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -164616,7 +164616,7 @@ def _index_istio_get_serialize( @validate_call - async def index_ivanti_get( + async def index_istio_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164654,10 +164654,10 @@ async def index_ivanti_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination: - """Return vulnerability data stored in index \"ivanti\" + ) -> RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination: + """Return vulnerability data stored in index \"istio\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` :param page: set the page number of the response :type page: int @@ -164729,7 +164729,7 @@ async def index_ivanti_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_get_serialize( + _param = self._index_istio_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164761,7 +164761,7 @@ async def index_ivanti_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", '404': "str", '500': "str", } @@ -164777,7 +164777,7 @@ async def index_ivanti_get( @validate_call - async def index_ivanti_get_with_http_info( + async def index_istio_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164815,10 +164815,10 @@ async def index_ivanti_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination]: - """Return vulnerability data stored in index \"ivanti\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination]: + """Return vulnerability data stored in index \"istio\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` :param page: set the page number of the response :type page: int @@ -164890,7 +164890,7 @@ async def index_ivanti_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_get_serialize( + _param = self._index_istio_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164922,7 +164922,7 @@ async def index_ivanti_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", '404': "str", '500': "str", } @@ -164938,7 +164938,7 @@ async def index_ivanti_get_with_http_info( @validate_call - async def index_ivanti_get_without_preload_content( + async def index_istio_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164977,9 +164977,9 @@ async def index_ivanti_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ivanti\" + """Return vulnerability data stored in index \"istio\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` :param page: set the page number of the response :type page: int @@ -165051,7 +165051,7 @@ async def index_ivanti_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_get_serialize( + _param = self._index_istio_get_serialize( page=page, limit=limit, cursor=cursor, @@ -165083,7 +165083,7 @@ async def index_ivanti_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", '404': "str", '500': "str", } @@ -165094,7 +165094,7 @@ async def index_ivanti_get_without_preload_content( return response_data.response - def _index_ivanti_get_serialize( + def _index_istio_get_serialize( self, page, limit, @@ -165262,7 +165262,7 @@ def _index_ivanti_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ivanti', + resource_path='/v3/index/istio', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -165279,7 +165279,7 @@ def _index_ivanti_get_serialize( @validate_call - async def index_ivanti_rss_get( + async def index_ivanti_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -165317,10 +165317,10 @@ async def index_ivanti_rss_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination: - """Return vulnerability data stored in index \"ivanti-rss\" + ) -> RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination: + """Return vulnerability data stored in index \"ivanti\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` :param page: set the page number of the response :type page: int @@ -165392,7 +165392,7 @@ async def index_ivanti_rss_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_rss_get_serialize( + _param = self._index_ivanti_get_serialize( page=page, limit=limit, cursor=cursor, @@ -165424,7 +165424,7 @@ async def index_ivanti_rss_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", '404': "str", '500': "str", } @@ -165440,7 +165440,7 @@ async def index_ivanti_rss_get( @validate_call - async def index_ivanti_rss_get_with_http_info( + async def index_ivanti_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -165478,10 +165478,10 @@ async def index_ivanti_rss_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination]: - """Return vulnerability data stored in index \"ivanti-rss\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination]: + """Return vulnerability data stored in index \"ivanti\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` :param page: set the page number of the response :type page: int @@ -165553,7 +165553,7 @@ async def index_ivanti_rss_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_rss_get_serialize( + _param = self._index_ivanti_get_serialize( page=page, limit=limit, cursor=cursor, @@ -165585,7 +165585,7 @@ async def index_ivanti_rss_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", '404': "str", '500': "str", } @@ -165601,7 +165601,7 @@ async def index_ivanti_rss_get_with_http_info( @validate_call - async def index_ivanti_rss_get_without_preload_content( + async def index_ivanti_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -165640,9 +165640,9 @@ async def index_ivanti_rss_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ivanti-rss\" + """Return vulnerability data stored in index \"ivanti\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` :param page: set the page number of the response :type page: int @@ -165714,7 +165714,7 @@ async def index_ivanti_rss_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_rss_get_serialize( + _param = self._index_ivanti_get_serialize( page=page, limit=limit, cursor=cursor, @@ -165746,7 +165746,7 @@ async def index_ivanti_rss_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", '404': "str", '500': "str", } @@ -165757,7 +165757,7 @@ async def index_ivanti_rss_get_without_preload_content( return response_data.response - def _index_ivanti_rss_get_serialize( + def _index_ivanti_get_serialize( self, page, limit, @@ -165925,7 +165925,7 @@ def _index_ivanti_rss_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ivanti-rss', + resource_path='/v3/index/ivanti', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -165942,7 +165942,7 @@ def _index_ivanti_rss_get_serialize( @validate_call - async def index_jenkins_get( + async def index_ivanti_rss_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -165980,10 +165980,10 @@ async def index_jenkins_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination: - """Return vulnerability data stored in index \"jenkins\" + ) -> RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination: + """Return vulnerability data stored in index \"ivanti-rss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` :param page: set the page number of the response :type page: int @@ -166055,7 +166055,7 @@ async def index_jenkins_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jenkins_get_serialize( + _param = self._index_ivanti_rss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166087,7 +166087,7 @@ async def index_jenkins_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", '404': "str", '500': "str", } @@ -166103,7 +166103,7 @@ async def index_jenkins_get( @validate_call - async def index_jenkins_get_with_http_info( + async def index_ivanti_rss_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166141,10 +166141,10 @@ async def index_jenkins_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination]: - """Return vulnerability data stored in index \"jenkins\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination]: + """Return vulnerability data stored in index \"ivanti-rss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` :param page: set the page number of the response :type page: int @@ -166216,7 +166216,7 @@ async def index_jenkins_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jenkins_get_serialize( + _param = self._index_ivanti_rss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166248,7 +166248,7 @@ async def index_jenkins_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", '404': "str", '500': "str", } @@ -166264,7 +166264,7 @@ async def index_jenkins_get_with_http_info( @validate_call - async def index_jenkins_get_without_preload_content( + async def index_ivanti_rss_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166303,9 +166303,9 @@ async def index_jenkins_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jenkins\" + """Return vulnerability data stored in index \"ivanti-rss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` :param page: set the page number of the response :type page: int @@ -166377,7 +166377,7 @@ async def index_jenkins_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jenkins_get_serialize( + _param = self._index_ivanti_rss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166409,7 +166409,7 @@ async def index_jenkins_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", '404': "str", '500': "str", } @@ -166420,7 +166420,7 @@ async def index_jenkins_get_without_preload_content( return response_data.response - def _index_jenkins_get_serialize( + def _index_ivanti_rss_get_serialize( self, page, limit, @@ -166588,7 +166588,7 @@ def _index_jenkins_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jenkins', + resource_path='/v3/index/ivanti-rss', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -166605,7 +166605,7 @@ def _index_jenkins_get_serialize( @validate_call - async def index_jetbrains_get( + async def index_jenkins_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166643,10 +166643,10 @@ async def index_jetbrains_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination: - """Return vulnerability data stored in index \"jetbrains\" + ) -> RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination: + """Return vulnerability data stored in index \"jenkins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` :param page: set the page number of the response :type page: int @@ -166718,7 +166718,7 @@ async def index_jetbrains_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jetbrains_get_serialize( + _param = self._index_jenkins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166750,7 +166750,7 @@ async def index_jetbrains_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", '404': "str", '500': "str", } @@ -166766,7 +166766,7 @@ async def index_jetbrains_get( @validate_call - async def index_jetbrains_get_with_http_info( + async def index_jenkins_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166804,10 +166804,10 @@ async def index_jetbrains_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination]: - """Return vulnerability data stored in index \"jetbrains\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination]: + """Return vulnerability data stored in index \"jenkins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` :param page: set the page number of the response :type page: int @@ -166879,7 +166879,7 @@ async def index_jetbrains_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jetbrains_get_serialize( + _param = self._index_jenkins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166911,7 +166911,7 @@ async def index_jetbrains_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", '404': "str", '500': "str", } @@ -166927,7 +166927,7 @@ async def index_jetbrains_get_with_http_info( @validate_call - async def index_jetbrains_get_without_preload_content( + async def index_jenkins_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166966,9 +166966,9 @@ async def index_jetbrains_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jetbrains\" + """Return vulnerability data stored in index \"jenkins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` :param page: set the page number of the response :type page: int @@ -167040,7 +167040,7 @@ async def index_jetbrains_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jetbrains_get_serialize( + _param = self._index_jenkins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -167072,7 +167072,7 @@ async def index_jetbrains_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", '404': "str", '500': "str", } @@ -167083,7 +167083,7 @@ async def index_jetbrains_get_without_preload_content( return response_data.response - def _index_jetbrains_get_serialize( + def _index_jenkins_get_serialize( self, page, limit, @@ -167251,7 +167251,7 @@ def _index_jetbrains_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jetbrains', + resource_path='/v3/index/jenkins', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -167268,7 +167268,7 @@ def _index_jetbrains_get_serialize( @validate_call - async def index_jfrog_get( + async def index_jetbrains_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -167306,10 +167306,10 @@ async def index_jfrog_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination: - """Return vulnerability data stored in index \"jfrog\" + ) -> RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination: + """Return vulnerability data stored in index \"jetbrains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` :param page: set the page number of the response :type page: int @@ -167381,7 +167381,7 @@ async def index_jfrog_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jfrog_get_serialize( + _param = self._index_jetbrains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -167413,7 +167413,7 @@ async def index_jfrog_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", '404': "str", '500': "str", } @@ -167429,7 +167429,7 @@ async def index_jfrog_get( @validate_call - async def index_jfrog_get_with_http_info( + async def index_jetbrains_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -167467,10 +167467,10 @@ async def index_jfrog_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination]: - """Return vulnerability data stored in index \"jfrog\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination]: + """Return vulnerability data stored in index \"jetbrains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` :param page: set the page number of the response :type page: int @@ -167542,7 +167542,7 @@ async def index_jfrog_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jfrog_get_serialize( + _param = self._index_jetbrains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -167574,7 +167574,7 @@ async def index_jfrog_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", '404': "str", '500': "str", } @@ -167590,7 +167590,7 @@ async def index_jfrog_get_with_http_info( @validate_call - async def index_jfrog_get_without_preload_content( + async def index_jetbrains_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -167629,9 +167629,9 @@ async def index_jfrog_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jfrog\" + """Return vulnerability data stored in index \"jetbrains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` :param page: set the page number of the response :type page: int @@ -167703,7 +167703,7 @@ async def index_jfrog_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jfrog_get_serialize( + _param = self._index_jetbrains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -167735,7 +167735,7 @@ async def index_jfrog_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", '404': "str", '500': "str", } @@ -167746,7 +167746,7 @@ async def index_jfrog_get_without_preload_content( return response_data.response - def _index_jfrog_get_serialize( + def _index_jetbrains_get_serialize( self, page, limit, @@ -167914,7 +167914,7 @@ def _index_jfrog_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jfrog', + resource_path='/v3/index/jetbrains', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -167931,7 +167931,7 @@ def _index_jfrog_get_serialize( @validate_call - async def index_jnj_get( + async def index_jfrog_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -167969,10 +167969,10 @@ async def index_jnj_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"jnj\" + ) -> RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination: + """Return vulnerability data stored in index \"jfrog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` :param page: set the page number of the response :type page: int @@ -168044,7 +168044,7 @@ async def index_jnj_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jnj_get_serialize( + _param = self._index_jfrog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168076,7 +168076,7 @@ async def index_jnj_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", '404': "str", '500': "str", } @@ -168092,7 +168092,7 @@ async def index_jnj_get( @validate_call - async def index_jnj_get_with_http_info( + async def index_jfrog_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168130,10 +168130,10 @@ async def index_jnj_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"jnj\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination]: + """Return vulnerability data stored in index \"jfrog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` :param page: set the page number of the response :type page: int @@ -168205,7 +168205,7 @@ async def index_jnj_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jnj_get_serialize( + _param = self._index_jfrog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168237,7 +168237,7 @@ async def index_jnj_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", '404': "str", '500': "str", } @@ -168253,7 +168253,7 @@ async def index_jnj_get_with_http_info( @validate_call - async def index_jnj_get_without_preload_content( + async def index_jfrog_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168292,9 +168292,9 @@ async def index_jnj_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jnj\" + """Return vulnerability data stored in index \"jfrog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` :param page: set the page number of the response :type page: int @@ -168366,7 +168366,7 @@ async def index_jnj_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jnj_get_serialize( + _param = self._index_jfrog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168398,7 +168398,7 @@ async def index_jnj_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", '404': "str", '500': "str", } @@ -168409,7 +168409,7 @@ async def index_jnj_get_without_preload_content( return response_data.response - def _index_jnj_get_serialize( + def _index_jfrog_get_serialize( self, page, limit, @@ -168577,7 +168577,7 @@ def _index_jnj_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jnj', + resource_path='/v3/index/jfrog', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -168594,7 +168594,7 @@ def _index_jnj_get_serialize( @validate_call - async def index_johnson_controls_get( + async def index_jnj_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168632,10 +168632,10 @@ async def index_johnson_controls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination: - """Return vulnerability data stored in index \"johnson-controls\" + ) -> RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"jnj\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` :param page: set the page number of the response :type page: int @@ -168707,7 +168707,7 @@ async def index_johnson_controls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_johnson_controls_get_serialize( + _param = self._index_jnj_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168739,7 +168739,7 @@ async def index_johnson_controls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -168755,7 +168755,7 @@ async def index_johnson_controls_get( @validate_call - async def index_johnson_controls_get_with_http_info( + async def index_jnj_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168793,10 +168793,10 @@ async def index_johnson_controls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination]: - """Return vulnerability data stored in index \"johnson-controls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"jnj\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` :param page: set the page number of the response :type page: int @@ -168868,7 +168868,7 @@ async def index_johnson_controls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_johnson_controls_get_serialize( + _param = self._index_jnj_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168900,7 +168900,7 @@ async def index_johnson_controls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -168916,7 +168916,7 @@ async def index_johnson_controls_get_with_http_info( @validate_call - async def index_johnson_controls_get_without_preload_content( + async def index_jnj_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168955,9 +168955,9 @@ async def index_johnson_controls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"johnson-controls\" + """Return vulnerability data stored in index \"jnj\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` :param page: set the page number of the response :type page: int @@ -169029,7 +169029,7 @@ async def index_johnson_controls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_johnson_controls_get_serialize( + _param = self._index_jnj_get_serialize( page=page, limit=limit, cursor=cursor, @@ -169061,7 +169061,7 @@ async def index_johnson_controls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -169072,7 +169072,7 @@ async def index_johnson_controls_get_without_preload_content( return response_data.response - def _index_johnson_controls_get_serialize( + def _index_jnj_get_serialize( self, page, limit, @@ -169240,7 +169240,7 @@ def _index_johnson_controls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/johnson-controls', + resource_path='/v3/index/jnj', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -169257,7 +169257,7 @@ def _index_johnson_controls_get_serialize( @validate_call - async def index_juniper_get( + async def index_johnson_controls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -169295,10 +169295,10 @@ async def index_juniper_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination: - """Return vulnerability data stored in index \"juniper\" + ) -> RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination: + """Return vulnerability data stored in index \"johnson-controls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` :param page: set the page number of the response :type page: int @@ -169370,7 +169370,7 @@ async def index_juniper_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_juniper_get_serialize( + _param = self._index_johnson_controls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -169402,7 +169402,7 @@ async def index_juniper_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", '404': "str", '500': "str", } @@ -169418,7 +169418,7 @@ async def index_juniper_get( @validate_call - async def index_juniper_get_with_http_info( + async def index_johnson_controls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -169456,10 +169456,10 @@ async def index_juniper_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination]: - """Return vulnerability data stored in index \"juniper\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination]: + """Return vulnerability data stored in index \"johnson-controls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` :param page: set the page number of the response :type page: int @@ -169531,7 +169531,7 @@ async def index_juniper_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_juniper_get_serialize( + _param = self._index_johnson_controls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -169563,7 +169563,7 @@ async def index_juniper_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", '404': "str", '500': "str", } @@ -169579,7 +169579,7 @@ async def index_juniper_get_with_http_info( @validate_call - async def index_juniper_get_without_preload_content( + async def index_johnson_controls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -169618,9 +169618,9 @@ async def index_juniper_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"juniper\" + """Return vulnerability data stored in index \"johnson-controls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` :param page: set the page number of the response :type page: int @@ -169692,7 +169692,7 @@ async def index_juniper_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_juniper_get_serialize( + _param = self._index_johnson_controls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -169724,7 +169724,7 @@ async def index_juniper_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", '404': "str", '500': "str", } @@ -169735,7 +169735,7 @@ async def index_juniper_get_without_preload_content( return response_data.response - def _index_juniper_get_serialize( + def _index_johnson_controls_get_serialize( self, page, limit, @@ -169903,7 +169903,7 @@ def _index_juniper_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/juniper', + resource_path='/v3/index/johnson-controls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -169920,7 +169920,7 @@ def _index_juniper_get_serialize( @validate_call - async def index_jvn_get( + async def index_juniper_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -169958,10 +169958,10 @@ async def index_jvn_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination: - """Return vulnerability data stored in index \"jvn\" + ) -> RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination: + """Return vulnerability data stored in index \"juniper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` :param page: set the page number of the response :type page: int @@ -170033,7 +170033,7 @@ async def index_jvn_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvn_get_serialize( + _param = self._index_juniper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170065,7 +170065,7 @@ async def index_jvn_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", '404': "str", '500': "str", } @@ -170081,7 +170081,7 @@ async def index_jvn_get( @validate_call - async def index_jvn_get_with_http_info( + async def index_juniper_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170119,10 +170119,10 @@ async def index_jvn_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination]: - """Return vulnerability data stored in index \"jvn\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination]: + """Return vulnerability data stored in index \"juniper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` :param page: set the page number of the response :type page: int @@ -170194,7 +170194,7 @@ async def index_jvn_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvn_get_serialize( + _param = self._index_juniper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170226,7 +170226,7 @@ async def index_jvn_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", '404': "str", '500': "str", } @@ -170242,7 +170242,7 @@ async def index_jvn_get_with_http_info( @validate_call - async def index_jvn_get_without_preload_content( + async def index_juniper_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170281,9 +170281,9 @@ async def index_jvn_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jvn\" + """Return vulnerability data stored in index \"juniper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` :param page: set the page number of the response :type page: int @@ -170355,7 +170355,7 @@ async def index_jvn_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvn_get_serialize( + _param = self._index_juniper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170387,7 +170387,7 @@ async def index_jvn_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", '404': "str", '500': "str", } @@ -170398,7 +170398,7 @@ async def index_jvn_get_without_preload_content( return response_data.response - def _index_jvn_get_serialize( + def _index_juniper_get_serialize( self, page, limit, @@ -170566,7 +170566,7 @@ def _index_jvn_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jvn', + resource_path='/v3/index/juniper', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -170583,7 +170583,7 @@ def _index_jvn_get_serialize( @validate_call - async def index_jvndb_get( + async def index_jvn_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170621,10 +170621,10 @@ async def index_jvndb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination: - """Return vulnerability data stored in index \"jvndb\" + ) -> RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination: + """Return vulnerability data stored in index \"jvn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` :param page: set the page number of the response :type page: int @@ -170696,7 +170696,7 @@ async def index_jvndb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvndb_get_serialize( + _param = self._index_jvn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170728,7 +170728,7 @@ async def index_jvndb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", '404': "str", '500': "str", } @@ -170744,7 +170744,7 @@ async def index_jvndb_get( @validate_call - async def index_jvndb_get_with_http_info( + async def index_jvn_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170782,10 +170782,10 @@ async def index_jvndb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination]: - """Return vulnerability data stored in index \"jvndb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination]: + """Return vulnerability data stored in index \"jvn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` :param page: set the page number of the response :type page: int @@ -170857,7 +170857,7 @@ async def index_jvndb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvndb_get_serialize( + _param = self._index_jvn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170889,7 +170889,7 @@ async def index_jvndb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", '404': "str", '500': "str", } @@ -170905,7 +170905,7 @@ async def index_jvndb_get_with_http_info( @validate_call - async def index_jvndb_get_without_preload_content( + async def index_jvn_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170944,9 +170944,9 @@ async def index_jvndb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jvndb\" + """Return vulnerability data stored in index \"jvn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` :param page: set the page number of the response :type page: int @@ -171018,7 +171018,7 @@ async def index_jvndb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvndb_get_serialize( + _param = self._index_jvn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -171050,7 +171050,7 @@ async def index_jvndb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", '404': "str", '500': "str", } @@ -171061,7 +171061,7 @@ async def index_jvndb_get_without_preload_content( return response_data.response - def _index_jvndb_get_serialize( + def _index_jvn_get_serialize( self, page, limit, @@ -171229,7 +171229,7 @@ def _index_jvndb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jvndb', + resource_path='/v3/index/jvn', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -171246,7 +171246,7 @@ def _index_jvndb_get_serialize( @validate_call - async def index_kaspersky_ics_cert_get( + async def index_jvndb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -171284,10 +171284,10 @@ async def index_kaspersky_ics_cert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"kaspersky-ics-cert\" + ) -> RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination: + """Return vulnerability data stored in index \"jvndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` :param page: set the page number of the response :type page: int @@ -171359,7 +171359,7 @@ async def index_kaspersky_ics_cert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kaspersky_ics_cert_get_serialize( + _param = self._index_jvndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -171391,7 +171391,7 @@ async def index_kaspersky_ics_cert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", '404': "str", '500': "str", } @@ -171407,7 +171407,7 @@ async def index_kaspersky_ics_cert_get( @validate_call - async def index_kaspersky_ics_cert_get_with_http_info( + async def index_jvndb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -171445,10 +171445,10 @@ async def index_kaspersky_ics_cert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"kaspersky-ics-cert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination]: + """Return vulnerability data stored in index \"jvndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` :param page: set the page number of the response :type page: int @@ -171520,7 +171520,7 @@ async def index_kaspersky_ics_cert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kaspersky_ics_cert_get_serialize( + _param = self._index_jvndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -171552,7 +171552,7 @@ async def index_kaspersky_ics_cert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", '404': "str", '500': "str", } @@ -171568,7 +171568,7 @@ async def index_kaspersky_ics_cert_get_with_http_info( @validate_call - async def index_kaspersky_ics_cert_get_without_preload_content( + async def index_jvndb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -171607,9 +171607,9 @@ async def index_kaspersky_ics_cert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"kaspersky-ics-cert\" + """Return vulnerability data stored in index \"jvndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` :param page: set the page number of the response :type page: int @@ -171681,7 +171681,7 @@ async def index_kaspersky_ics_cert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kaspersky_ics_cert_get_serialize( + _param = self._index_jvndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -171713,7 +171713,7 @@ async def index_kaspersky_ics_cert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", '404': "str", '500': "str", } @@ -171724,7 +171724,7 @@ async def index_kaspersky_ics_cert_get_without_preload_content( return response_data.response - def _index_kaspersky_ics_cert_get_serialize( + def _index_jvndb_get_serialize( self, page, limit, @@ -171892,7 +171892,7 @@ def _index_kaspersky_ics_cert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/kaspersky-ics-cert', + resource_path='/v3/index/jvndb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -171909,7 +171909,7 @@ def _index_kaspersky_ics_cert_get_serialize( @validate_call - async def index_korelogic_get( + async def index_kaspersky_ics_cert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -171947,10 +171947,10 @@ async def index_korelogic_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination: - """Return vulnerability data stored in index \"korelogic\" + ) -> RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"kaspersky-ics-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` :param page: set the page number of the response :type page: int @@ -172022,7 +172022,7 @@ async def index_korelogic_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_korelogic_get_serialize( + _param = self._index_kaspersky_ics_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172054,7 +172054,7 @@ async def index_korelogic_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -172070,7 +172070,7 @@ async def index_korelogic_get( @validate_call - async def index_korelogic_get_with_http_info( + async def index_kaspersky_ics_cert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172108,10 +172108,10 @@ async def index_korelogic_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination]: - """Return vulnerability data stored in index \"korelogic\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"kaspersky-ics-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` :param page: set the page number of the response :type page: int @@ -172183,7 +172183,7 @@ async def index_korelogic_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_korelogic_get_serialize( + _param = self._index_kaspersky_ics_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172215,7 +172215,7 @@ async def index_korelogic_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -172231,7 +172231,7 @@ async def index_korelogic_get_with_http_info( @validate_call - async def index_korelogic_get_without_preload_content( + async def index_kaspersky_ics_cert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172270,9 +172270,9 @@ async def index_korelogic_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"korelogic\" + """Return vulnerability data stored in index \"kaspersky-ics-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` :param page: set the page number of the response :type page: int @@ -172344,7 +172344,7 @@ async def index_korelogic_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_korelogic_get_serialize( + _param = self._index_kaspersky_ics_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172376,7 +172376,7 @@ async def index_korelogic_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -172387,7 +172387,7 @@ async def index_korelogic_get_without_preload_content( return response_data.response - def _index_korelogic_get_serialize( + def _index_kaspersky_ics_cert_get_serialize( self, page, limit, @@ -172555,7 +172555,7 @@ def _index_korelogic_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/korelogic', + resource_path='/v3/index/kaspersky-ics-cert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -172572,7 +172572,7 @@ def _index_korelogic_get_serialize( @validate_call - async def index_krcert_security_notices_get( + async def index_korelogic_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172610,10 +172610,10 @@ async def index_krcert_security_notices_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"krcert-security-notices\" + ) -> RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination: + """Return vulnerability data stored in index \"korelogic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` :param page: set the page number of the response :type page: int @@ -172685,7 +172685,7 @@ async def index_krcert_security_notices_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_security_notices_get_serialize( + _param = self._index_korelogic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172717,7 +172717,7 @@ async def index_krcert_security_notices_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", '404': "str", '500': "str", } @@ -172733,7 +172733,7 @@ async def index_krcert_security_notices_get( @validate_call - async def index_krcert_security_notices_get_with_http_info( + async def index_korelogic_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172771,10 +172771,10 @@ async def index_krcert_security_notices_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"krcert-security-notices\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination]: + """Return vulnerability data stored in index \"korelogic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` :param page: set the page number of the response :type page: int @@ -172846,7 +172846,7 @@ async def index_krcert_security_notices_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_security_notices_get_serialize( + _param = self._index_korelogic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172878,7 +172878,7 @@ async def index_krcert_security_notices_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", '404': "str", '500': "str", } @@ -172894,7 +172894,7 @@ async def index_krcert_security_notices_get_with_http_info( @validate_call - async def index_krcert_security_notices_get_without_preload_content( + async def index_korelogic_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172933,9 +172933,9 @@ async def index_krcert_security_notices_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"krcert-security-notices\" + """Return vulnerability data stored in index \"korelogic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` :param page: set the page number of the response :type page: int @@ -173007,7 +173007,7 @@ async def index_krcert_security_notices_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_security_notices_get_serialize( + _param = self._index_korelogic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -173039,7 +173039,7 @@ async def index_krcert_security_notices_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", '404': "str", '500': "str", } @@ -173050,7 +173050,7 @@ async def index_krcert_security_notices_get_without_preload_content( return response_data.response - def _index_krcert_security_notices_get_serialize( + def _index_korelogic_get_serialize( self, page, limit, @@ -173218,7 +173218,7 @@ def _index_krcert_security_notices_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/krcert-security-notices', + resource_path='/v3/index/korelogic', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -173235,7 +173235,7 @@ def _index_krcert_security_notices_get_serialize( @validate_call - async def index_krcert_vulnerabilities_get( + async def index_krcert_security_notices_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -173274,9 +173274,9 @@ async def index_krcert_vulnerabilities_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"krcert-vulnerabilities\" + """Return vulnerability data stored in index \"krcert-security-notices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` :param page: set the page number of the response :type page: int @@ -173348,7 +173348,7 @@ async def index_krcert_vulnerabilities_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_vulnerabilities_get_serialize( + _param = self._index_krcert_security_notices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -173396,7 +173396,7 @@ async def index_krcert_vulnerabilities_get( @validate_call - async def index_krcert_vulnerabilities_get_with_http_info( + async def index_krcert_security_notices_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -173435,9 +173435,9 @@ async def index_krcert_vulnerabilities_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"krcert-vulnerabilities\" + """Return vulnerability data stored in index \"krcert-security-notices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` :param page: set the page number of the response :type page: int @@ -173509,7 +173509,7 @@ async def index_krcert_vulnerabilities_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_vulnerabilities_get_serialize( + _param = self._index_krcert_security_notices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -173557,7 +173557,7 @@ async def index_krcert_vulnerabilities_get_with_http_info( @validate_call - async def index_krcert_vulnerabilities_get_without_preload_content( + async def index_krcert_security_notices_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -173596,9 +173596,9 @@ async def index_krcert_vulnerabilities_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"krcert-vulnerabilities\" + """Return vulnerability data stored in index \"krcert-security-notices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` :param page: set the page number of the response :type page: int @@ -173670,7 +173670,7 @@ async def index_krcert_vulnerabilities_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_vulnerabilities_get_serialize( + _param = self._index_krcert_security_notices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -173713,7 +173713,7 @@ async def index_krcert_vulnerabilities_get_without_preload_content( return response_data.response - def _index_krcert_vulnerabilities_get_serialize( + def _index_krcert_security_notices_get_serialize( self, page, limit, @@ -173881,7 +173881,7 @@ def _index_krcert_vulnerabilities_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/krcert-vulnerabilities', + resource_path='/v3/index/krcert-security-notices', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -173898,7 +173898,7 @@ def _index_krcert_vulnerabilities_get_serialize( @validate_call - async def index_kubernetes_get( + async def index_krcert_vulnerabilities_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -173936,10 +173936,10 @@ async def index_kubernetes_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination: - """Return vulnerability data stored in index \"kubernetes\" + ) -> RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"krcert-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -174011,7 +174011,7 @@ async def index_kubernetes_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kubernetes_get_serialize( + _param = self._index_krcert_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174043,7 +174043,7 @@ async def index_kubernetes_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -174059,7 +174059,7 @@ async def index_kubernetes_get( @validate_call - async def index_kubernetes_get_with_http_info( + async def index_krcert_vulnerabilities_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174097,10 +174097,10 @@ async def index_kubernetes_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination]: - """Return vulnerability data stored in index \"kubernetes\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"krcert-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -174172,7 +174172,7 @@ async def index_kubernetes_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kubernetes_get_serialize( + _param = self._index_krcert_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174204,7 +174204,7 @@ async def index_kubernetes_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -174220,7 +174220,7 @@ async def index_kubernetes_get_with_http_info( @validate_call - async def index_kubernetes_get_without_preload_content( + async def index_krcert_vulnerabilities_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174259,9 +174259,9 @@ async def index_kubernetes_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"kubernetes\" + """Return vulnerability data stored in index \"krcert-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -174333,7 +174333,7 @@ async def index_kubernetes_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kubernetes_get_serialize( + _param = self._index_krcert_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174365,7 +174365,7 @@ async def index_kubernetes_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -174376,7 +174376,7 @@ async def index_kubernetes_get_without_preload_content( return response_data.response - def _index_kubernetes_get_serialize( + def _index_krcert_vulnerabilities_get_serialize( self, page, limit, @@ -174544,7 +174544,7 @@ def _index_kubernetes_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/kubernetes', + resource_path='/v3/index/krcert-vulnerabilities', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -174561,7 +174561,7 @@ def _index_kubernetes_get_serialize( @validate_call - async def index_kunbus_get( + async def index_kubernetes_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174599,10 +174599,10 @@ async def index_kunbus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination: - """Return vulnerability data stored in index \"kunbus\" + ) -> RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination: + """Return vulnerability data stored in index \"kubernetes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` :param page: set the page number of the response :type page: int @@ -174674,7 +174674,7 @@ async def index_kunbus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kunbus_get_serialize( + _param = self._index_kubernetes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174706,7 +174706,7 @@ async def index_kunbus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", '404': "str", '500': "str", } @@ -174722,7 +174722,7 @@ async def index_kunbus_get( @validate_call - async def index_kunbus_get_with_http_info( + async def index_kubernetes_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174760,10 +174760,10 @@ async def index_kunbus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination]: - """Return vulnerability data stored in index \"kunbus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination]: + """Return vulnerability data stored in index \"kubernetes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` :param page: set the page number of the response :type page: int @@ -174835,7 +174835,7 @@ async def index_kunbus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kunbus_get_serialize( + _param = self._index_kubernetes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174867,7 +174867,7 @@ async def index_kunbus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", '404': "str", '500': "str", } @@ -174883,7 +174883,7 @@ async def index_kunbus_get_with_http_info( @validate_call - async def index_kunbus_get_without_preload_content( + async def index_kubernetes_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174922,9 +174922,9 @@ async def index_kunbus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"kunbus\" + """Return vulnerability data stored in index \"kubernetes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` :param page: set the page number of the response :type page: int @@ -174996,7 +174996,7 @@ async def index_kunbus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kunbus_get_serialize( + _param = self._index_kubernetes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -175028,7 +175028,7 @@ async def index_kunbus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", '404': "str", '500': "str", } @@ -175039,7 +175039,7 @@ async def index_kunbus_get_without_preload_content( return response_data.response - def _index_kunbus_get_serialize( + def _index_kubernetes_get_serialize( self, page, limit, @@ -175207,7 +175207,7 @@ def _index_kunbus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/kunbus', + resource_path='/v3/index/kubernetes', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -175224,7 +175224,7 @@ def _index_kunbus_get_serialize( @validate_call - async def index_lantronix_get( + async def index_kunbus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -175262,10 +175262,10 @@ async def index_lantronix_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination: - """Return vulnerability data stored in index \"lantronix\" + ) -> RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination: + """Return vulnerability data stored in index \"kunbus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` :param page: set the page number of the response :type page: int @@ -175337,7 +175337,7 @@ async def index_lantronix_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lantronix_get_serialize( + _param = self._index_kunbus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -175369,7 +175369,7 @@ async def index_lantronix_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", '404': "str", '500': "str", } @@ -175385,7 +175385,7 @@ async def index_lantronix_get( @validate_call - async def index_lantronix_get_with_http_info( + async def index_kunbus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -175423,10 +175423,10 @@ async def index_lantronix_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination]: - """Return vulnerability data stored in index \"lantronix\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination]: + """Return vulnerability data stored in index \"kunbus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` :param page: set the page number of the response :type page: int @@ -175498,7 +175498,7 @@ async def index_lantronix_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lantronix_get_serialize( + _param = self._index_kunbus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -175530,7 +175530,7 @@ async def index_lantronix_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", '404': "str", '500': "str", } @@ -175546,7 +175546,7 @@ async def index_lantronix_get_with_http_info( @validate_call - async def index_lantronix_get_without_preload_content( + async def index_kunbus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -175585,9 +175585,9 @@ async def index_lantronix_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lantronix\" + """Return vulnerability data stored in index \"kunbus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` :param page: set the page number of the response :type page: int @@ -175659,7 +175659,7 @@ async def index_lantronix_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lantronix_get_serialize( + _param = self._index_kunbus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -175691,7 +175691,7 @@ async def index_lantronix_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", '404': "str", '500': "str", } @@ -175702,7 +175702,7 @@ async def index_lantronix_get_without_preload_content( return response_data.response - def _index_lantronix_get_serialize( + def _index_kunbus_get_serialize( self, page, limit, @@ -175870,7 +175870,7 @@ def _index_lantronix_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lantronix', + resource_path='/v3/index/kunbus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -175887,7 +175887,7 @@ def _index_lantronix_get_serialize( @validate_call - async def index_lenovo_get( + async def index_lantronix_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -175925,10 +175925,10 @@ async def index_lenovo_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination: - """Return vulnerability data stored in index \"lenovo\" + ) -> RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination: + """Return vulnerability data stored in index \"lantronix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` :param page: set the page number of the response :type page: int @@ -176000,7 +176000,7 @@ async def index_lenovo_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lenovo_get_serialize( + _param = self._index_lantronix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176032,7 +176032,7 @@ async def index_lenovo_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", '404': "str", '500': "str", } @@ -176048,7 +176048,7 @@ async def index_lenovo_get( @validate_call - async def index_lenovo_get_with_http_info( + async def index_lantronix_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176086,10 +176086,10 @@ async def index_lenovo_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination]: - """Return vulnerability data stored in index \"lenovo\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination]: + """Return vulnerability data stored in index \"lantronix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` :param page: set the page number of the response :type page: int @@ -176161,7 +176161,7 @@ async def index_lenovo_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lenovo_get_serialize( + _param = self._index_lantronix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176193,7 +176193,7 @@ async def index_lenovo_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", '404': "str", '500': "str", } @@ -176209,7 +176209,7 @@ async def index_lenovo_get_with_http_info( @validate_call - async def index_lenovo_get_without_preload_content( + async def index_lantronix_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176248,9 +176248,9 @@ async def index_lenovo_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lenovo\" + """Return vulnerability data stored in index \"lantronix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` :param page: set the page number of the response :type page: int @@ -176322,7 +176322,7 @@ async def index_lenovo_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lenovo_get_serialize( + _param = self._index_lantronix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176354,7 +176354,7 @@ async def index_lenovo_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", '404': "str", '500': "str", } @@ -176365,7 +176365,7 @@ async def index_lenovo_get_without_preload_content( return response_data.response - def _index_lenovo_get_serialize( + def _index_lantronix_get_serialize( self, page, limit, @@ -176533,7 +176533,7 @@ def _index_lenovo_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lenovo', + resource_path='/v3/index/lantronix', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -176550,7 +176550,7 @@ def _index_lenovo_get_serialize( @validate_call - async def index_lexmark_get( + async def index_lenovo_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176588,10 +176588,10 @@ async def index_lexmark_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"lexmark\" + ) -> RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination: + """Return vulnerability data stored in index \"lenovo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` :param page: set the page number of the response :type page: int @@ -176663,7 +176663,7 @@ async def index_lexmark_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lexmark_get_serialize( + _param = self._index_lenovo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176695,7 +176695,7 @@ async def index_lexmark_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", '404': "str", '500': "str", } @@ -176711,7 +176711,7 @@ async def index_lexmark_get( @validate_call - async def index_lexmark_get_with_http_info( + async def index_lenovo_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176749,10 +176749,10 @@ async def index_lexmark_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"lexmark\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination]: + """Return vulnerability data stored in index \"lenovo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` :param page: set the page number of the response :type page: int @@ -176824,7 +176824,7 @@ async def index_lexmark_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lexmark_get_serialize( + _param = self._index_lenovo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176856,7 +176856,7 @@ async def index_lexmark_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", '404': "str", '500': "str", } @@ -176872,7 +176872,7 @@ async def index_lexmark_get_with_http_info( @validate_call - async def index_lexmark_get_without_preload_content( + async def index_lenovo_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176911,9 +176911,9 @@ async def index_lexmark_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lexmark\" + """Return vulnerability data stored in index \"lenovo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` :param page: set the page number of the response :type page: int @@ -176985,7 +176985,7 @@ async def index_lexmark_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lexmark_get_serialize( + _param = self._index_lenovo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -177017,7 +177017,7 @@ async def index_lexmark_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", '404': "str", '500': "str", } @@ -177028,7 +177028,7 @@ async def index_lexmark_get_without_preload_content( return response_data.response - def _index_lexmark_get_serialize( + def _index_lenovo_get_serialize( self, page, limit, @@ -177196,7 +177196,7 @@ def _index_lexmark_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lexmark', + resource_path='/v3/index/lenovo', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -177213,7 +177213,7 @@ def _index_lexmark_get_serialize( @validate_call - async def index_lg_get( + async def index_lexmark_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -177251,10 +177251,10 @@ async def index_lg_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination: - """Return vulnerability data stored in index \"lg\" + ) -> RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"lexmark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` :param page: set the page number of the response :type page: int @@ -177326,7 +177326,7 @@ async def index_lg_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lg_get_serialize( + _param = self._index_lexmark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -177358,7 +177358,7 @@ async def index_lg_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -177374,7 +177374,7 @@ async def index_lg_get( @validate_call - async def index_lg_get_with_http_info( + async def index_lexmark_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -177412,10 +177412,10 @@ async def index_lg_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination]: - """Return vulnerability data stored in index \"lg\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"lexmark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` :param page: set the page number of the response :type page: int @@ -177487,7 +177487,7 @@ async def index_lg_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lg_get_serialize( + _param = self._index_lexmark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -177519,7 +177519,7 @@ async def index_lg_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -177535,7 +177535,7 @@ async def index_lg_get_with_http_info( @validate_call - async def index_lg_get_without_preload_content( + async def index_lexmark_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -177574,9 +177574,9 @@ async def index_lg_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lg\" + """Return vulnerability data stored in index \"lexmark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` :param page: set the page number of the response :type page: int @@ -177648,7 +177648,7 @@ async def index_lg_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lg_get_serialize( + _param = self._index_lexmark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -177680,7 +177680,7 @@ async def index_lg_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -177691,7 +177691,7 @@ async def index_lg_get_without_preload_content( return response_data.response - def _index_lg_get_serialize( + def _index_lexmark_get_serialize( self, page, limit, @@ -177859,7 +177859,7 @@ def _index_lg_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lg', + resource_path='/v3/index/lexmark', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -177876,7 +177876,7 @@ def _index_lg_get_serialize( @validate_call - async def index_libre_office_get( + async def index_lg_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -177914,10 +177914,10 @@ async def index_libre_office_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination: - """Return vulnerability data stored in index \"libre-office\" + ) -> RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination: + """Return vulnerability data stored in index \"lg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` :param page: set the page number of the response :type page: int @@ -177989,7 +177989,7 @@ async def index_libre_office_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_libre_office_get_serialize( + _param = self._index_lg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178021,7 +178021,7 @@ async def index_libre_office_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", '404': "str", '500': "str", } @@ -178037,7 +178037,7 @@ async def index_libre_office_get( @validate_call - async def index_libre_office_get_with_http_info( + async def index_lg_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178075,10 +178075,10 @@ async def index_libre_office_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination]: - """Return vulnerability data stored in index \"libre-office\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination]: + """Return vulnerability data stored in index \"lg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` :param page: set the page number of the response :type page: int @@ -178150,7 +178150,7 @@ async def index_libre_office_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_libre_office_get_serialize( + _param = self._index_lg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178182,7 +178182,7 @@ async def index_libre_office_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", '404': "str", '500': "str", } @@ -178198,7 +178198,7 @@ async def index_libre_office_get_with_http_info( @validate_call - async def index_libre_office_get_without_preload_content( + async def index_lg_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178237,9 +178237,9 @@ async def index_libre_office_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"libre-office\" + """Return vulnerability data stored in index \"lg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` :param page: set the page number of the response :type page: int @@ -178311,7 +178311,7 @@ async def index_libre_office_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_libre_office_get_serialize( + _param = self._index_lg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178343,7 +178343,7 @@ async def index_libre_office_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", '404': "str", '500': "str", } @@ -178354,7 +178354,7 @@ async def index_libre_office_get_without_preload_content( return response_data.response - def _index_libre_office_get_serialize( + def _index_lg_get_serialize( self, page, limit, @@ -178522,7 +178522,7 @@ def _index_libre_office_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/libre-office', + resource_path='/v3/index/lg', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -178539,7 +178539,7 @@ def _index_libre_office_get_serialize( @validate_call - async def index_linux_get( + async def index_libre_office_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178577,10 +178577,10 @@ async def index_linux_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination: - """Return vulnerability data stored in index \"linux\" + ) -> RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination: + """Return vulnerability data stored in index \"libre-office\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` :param page: set the page number of the response :type page: int @@ -178652,7 +178652,7 @@ async def index_linux_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_linux_get_serialize( + _param = self._index_libre_office_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178684,7 +178684,7 @@ async def index_linux_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", '404': "str", '500': "str", } @@ -178700,7 +178700,7 @@ async def index_linux_get( @validate_call - async def index_linux_get_with_http_info( + async def index_libre_office_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178738,10 +178738,10 @@ async def index_linux_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination]: - """Return vulnerability data stored in index \"linux\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination]: + """Return vulnerability data stored in index \"libre-office\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` :param page: set the page number of the response :type page: int @@ -178813,7 +178813,7 @@ async def index_linux_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_linux_get_serialize( + _param = self._index_libre_office_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178845,7 +178845,7 @@ async def index_linux_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", '404': "str", '500': "str", } @@ -178861,7 +178861,7 @@ async def index_linux_get_with_http_info( @validate_call - async def index_linux_get_without_preload_content( + async def index_libre_office_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178900,9 +178900,9 @@ async def index_linux_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"linux\" + """Return vulnerability data stored in index \"libre-office\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` :param page: set the page number of the response :type page: int @@ -178974,7 +178974,7 @@ async def index_linux_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_linux_get_serialize( + _param = self._index_libre_office_get_serialize( page=page, limit=limit, cursor=cursor, @@ -179006,7 +179006,7 @@ async def index_linux_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", '404': "str", '500': "str", } @@ -179017,7 +179017,7 @@ async def index_linux_get_without_preload_content( return response_data.response - def _index_linux_get_serialize( + def _index_libre_office_get_serialize( self, page, limit, @@ -179185,7 +179185,7 @@ def _index_linux_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/linux', + resource_path='/v3/index/libre-office', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -179202,7 +179202,7 @@ def _index_linux_get_serialize( @validate_call - async def index_lol_advs_get( + async def index_linux_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -179240,10 +179240,10 @@ async def index_lol_advs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination: - """Return vulnerability data stored in index \"lol-advs\" + ) -> RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination: + """Return vulnerability data stored in index \"linux\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` :param page: set the page number of the response :type page: int @@ -179315,7 +179315,7 @@ async def index_lol_advs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lol_advs_get_serialize( + _param = self._index_linux_get_serialize( page=page, limit=limit, cursor=cursor, @@ -179347,7 +179347,7 @@ async def index_lol_advs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", '404': "str", '500': "str", } @@ -179363,7 +179363,7 @@ async def index_lol_advs_get( @validate_call - async def index_lol_advs_get_with_http_info( + async def index_linux_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -179401,10 +179401,10 @@ async def index_lol_advs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination]: - """Return vulnerability data stored in index \"lol-advs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination]: + """Return vulnerability data stored in index \"linux\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` :param page: set the page number of the response :type page: int @@ -179476,7 +179476,7 @@ async def index_lol_advs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lol_advs_get_serialize( + _param = self._index_linux_get_serialize( page=page, limit=limit, cursor=cursor, @@ -179508,7 +179508,7 @@ async def index_lol_advs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", '404': "str", '500': "str", } @@ -179524,7 +179524,7 @@ async def index_lol_advs_get_with_http_info( @validate_call - async def index_lol_advs_get_without_preload_content( + async def index_linux_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -179563,9 +179563,9 @@ async def index_lol_advs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lol-advs\" + """Return vulnerability data stored in index \"linux\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` :param page: set the page number of the response :type page: int @@ -179637,7 +179637,7 @@ async def index_lol_advs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lol_advs_get_serialize( + _param = self._index_linux_get_serialize( page=page, limit=limit, cursor=cursor, @@ -179669,7 +179669,7 @@ async def index_lol_advs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", '404': "str", '500': "str", } @@ -179680,7 +179680,7 @@ async def index_lol_advs_get_without_preload_content( return response_data.response - def _index_lol_advs_get_serialize( + def _index_linux_get_serialize( self, page, limit, @@ -179848,7 +179848,7 @@ def _index_lol_advs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lol-advs', + resource_path='/v3/index/linux', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -179865,7 +179865,7 @@ def _index_lol_advs_get_serialize( @validate_call - async def index_m_files_get( + async def index_lol_advs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -179903,10 +179903,10 @@ async def index_m_files_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination: - """Return vulnerability data stored in index \"m-files\" + ) -> RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination: + """Return vulnerability data stored in index \"lol-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` :param page: set the page number of the response :type page: int @@ -179978,7 +179978,7 @@ async def index_m_files_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_m_files_get_serialize( + _param = self._index_lol_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180010,7 +180010,7 @@ async def index_m_files_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", '404': "str", '500': "str", } @@ -180026,7 +180026,7 @@ async def index_m_files_get( @validate_call - async def index_m_files_get_with_http_info( + async def index_lol_advs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180064,10 +180064,10 @@ async def index_m_files_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination]: - """Return vulnerability data stored in index \"m-files\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination]: + """Return vulnerability data stored in index \"lol-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` :param page: set the page number of the response :type page: int @@ -180139,7 +180139,7 @@ async def index_m_files_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_m_files_get_serialize( + _param = self._index_lol_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180171,7 +180171,7 @@ async def index_m_files_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", '404': "str", '500': "str", } @@ -180187,7 +180187,7 @@ async def index_m_files_get_with_http_info( @validate_call - async def index_m_files_get_without_preload_content( + async def index_lol_advs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180226,9 +180226,9 @@ async def index_m_files_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"m-files\" + """Return vulnerability data stored in index \"lol-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` :param page: set the page number of the response :type page: int @@ -180300,7 +180300,7 @@ async def index_m_files_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_m_files_get_serialize( + _param = self._index_lol_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180332,7 +180332,7 @@ async def index_m_files_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", '404': "str", '500': "str", } @@ -180343,7 +180343,7 @@ async def index_m_files_get_without_preload_content( return response_data.response - def _index_m_files_get_serialize( + def _index_lol_advs_get_serialize( self, page, limit, @@ -180511,7 +180511,7 @@ def _index_m_files_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/m-files', + resource_path='/v3/index/lol-advs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -180528,7 +180528,7 @@ def _index_m_files_get_serialize( @validate_call - async def index_macert_get( + async def index_m_files_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180566,10 +180566,10 @@ async def index_macert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination: - """Return vulnerability data stored in index \"macert\" + ) -> RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination: + """Return vulnerability data stored in index \"m-files\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` :param page: set the page number of the response :type page: int @@ -180641,7 +180641,7 @@ async def index_macert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_macert_get_serialize( + _param = self._index_m_files_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180673,7 +180673,7 @@ async def index_macert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", '404': "str", '500': "str", } @@ -180689,7 +180689,7 @@ async def index_macert_get( @validate_call - async def index_macert_get_with_http_info( + async def index_m_files_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180727,10 +180727,10 @@ async def index_macert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination]: - """Return vulnerability data stored in index \"macert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination]: + """Return vulnerability data stored in index \"m-files\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` :param page: set the page number of the response :type page: int @@ -180802,7 +180802,7 @@ async def index_macert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_macert_get_serialize( + _param = self._index_m_files_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180834,7 +180834,7 @@ async def index_macert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", '404': "str", '500': "str", } @@ -180850,7 +180850,7 @@ async def index_macert_get_with_http_info( @validate_call - async def index_macert_get_without_preload_content( + async def index_m_files_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180889,9 +180889,9 @@ async def index_macert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"macert\" + """Return vulnerability data stored in index \"m-files\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` :param page: set the page number of the response :type page: int @@ -180963,7 +180963,7 @@ async def index_macert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_macert_get_serialize( + _param = self._index_m_files_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180995,7 +180995,7 @@ async def index_macert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", '404': "str", '500': "str", } @@ -181006,7 +181006,7 @@ async def index_macert_get_without_preload_content( return response_data.response - def _index_macert_get_serialize( + def _index_m_files_get_serialize( self, page, limit, @@ -181174,7 +181174,7 @@ def _index_macert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/macert', + resource_path='/v3/index/m-files', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -181191,7 +181191,7 @@ def _index_macert_get_serialize( @validate_call - async def index_malicious_packages_get( + async def index_macert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -181229,10 +181229,10 @@ async def index_malicious_packages_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination: - """Return vulnerability data stored in index \"malicious-packages\" + ) -> RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination: + """Return vulnerability data stored in index \"macert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` :param page: set the page number of the response :type page: int @@ -181304,7 +181304,7 @@ async def index_malicious_packages_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_packages_get_serialize( + _param = self._index_macert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -181336,7 +181336,7 @@ async def index_malicious_packages_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", '404': "str", '500': "str", } @@ -181352,7 +181352,7 @@ async def index_malicious_packages_get( @validate_call - async def index_malicious_packages_get_with_http_info( + async def index_macert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -181390,10 +181390,10 @@ async def index_malicious_packages_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination]: - """Return vulnerability data stored in index \"malicious-packages\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination]: + """Return vulnerability data stored in index \"macert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` :param page: set the page number of the response :type page: int @@ -181465,7 +181465,7 @@ async def index_malicious_packages_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_packages_get_serialize( + _param = self._index_macert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -181497,7 +181497,7 @@ async def index_malicious_packages_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", '404': "str", '500': "str", } @@ -181513,7 +181513,7 @@ async def index_malicious_packages_get_with_http_info( @validate_call - async def index_malicious_packages_get_without_preload_content( + async def index_macert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -181552,9 +181552,9 @@ async def index_malicious_packages_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"malicious-packages\" + """Return vulnerability data stored in index \"macert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` :param page: set the page number of the response :type page: int @@ -181626,7 +181626,7 @@ async def index_malicious_packages_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_packages_get_serialize( + _param = self._index_macert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -181658,7 +181658,7 @@ async def index_malicious_packages_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", '404': "str", '500': "str", } @@ -181669,7 +181669,7 @@ async def index_malicious_packages_get_without_preload_content( return response_data.response - def _index_malicious_packages_get_serialize( + def _index_macert_get_serialize( self, page, limit, @@ -181837,7 +181837,7 @@ def _index_malicious_packages_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/malicious-packages', + resource_path='/v3/index/macert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -181854,7 +181854,7 @@ def _index_malicious_packages_get_serialize( @validate_call - async def index_malicious_vscode_exts_get( + async def index_malicious_packages_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -181892,10 +181892,10 @@ async def index_malicious_vscode_exts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination: - """Return vulnerability data stored in index \"malicious-vscode-exts\" + ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination: + """Return vulnerability data stored in index \"malicious-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` :param page: set the page number of the response :type page: int @@ -181967,7 +181967,7 @@ async def index_malicious_vscode_exts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_vscode_exts_get_serialize( + _param = self._index_malicious_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -181999,7 +181999,7 @@ async def index_malicious_vscode_exts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", '404': "str", '500': "str", } @@ -182015,7 +182015,7 @@ async def index_malicious_vscode_exts_get( @validate_call - async def index_malicious_vscode_exts_get_with_http_info( + async def index_malicious_packages_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182053,10 +182053,10 @@ async def index_malicious_vscode_exts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination]: - """Return vulnerability data stored in index \"malicious-vscode-exts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination]: + """Return vulnerability data stored in index \"malicious-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` :param page: set the page number of the response :type page: int @@ -182128,7 +182128,7 @@ async def index_malicious_vscode_exts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_vscode_exts_get_serialize( + _param = self._index_malicious_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182160,7 +182160,7 @@ async def index_malicious_vscode_exts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", '404': "str", '500': "str", } @@ -182176,7 +182176,7 @@ async def index_malicious_vscode_exts_get_with_http_info( @validate_call - async def index_malicious_vscode_exts_get_without_preload_content( + async def index_malicious_packages_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182215,9 +182215,9 @@ async def index_malicious_vscode_exts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"malicious-vscode-exts\" + """Return vulnerability data stored in index \"malicious-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` :param page: set the page number of the response :type page: int @@ -182289,7 +182289,7 @@ async def index_malicious_vscode_exts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_vscode_exts_get_serialize( + _param = self._index_malicious_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182321,7 +182321,7 @@ async def index_malicious_vscode_exts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", '404': "str", '500': "str", } @@ -182332,7 +182332,7 @@ async def index_malicious_vscode_exts_get_without_preload_content( return response_data.response - def _index_malicious_vscode_exts_get_serialize( + def _index_malicious_packages_get_serialize( self, page, limit, @@ -182500,7 +182500,7 @@ def _index_malicious_vscode_exts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/malicious-vscode-exts', + resource_path='/v3/index/malicious-packages', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -182517,7 +182517,7 @@ def _index_malicious_vscode_exts_get_serialize( @validate_call - async def index_manageengine_get( + async def index_malicious_vscode_exts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182555,10 +182555,10 @@ async def index_manageengine_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"manageengine\" + ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination: + """Return vulnerability data stored in index \"malicious-vscode-exts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` :param page: set the page number of the response :type page: int @@ -182630,7 +182630,7 @@ async def index_manageengine_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_manageengine_get_serialize( + _param = self._index_malicious_vscode_exts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182662,7 +182662,7 @@ async def index_manageengine_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", '404': "str", '500': "str", } @@ -182678,7 +182678,7 @@ async def index_manageengine_get( @validate_call - async def index_manageengine_get_with_http_info( + async def index_malicious_vscode_exts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182716,10 +182716,10 @@ async def index_manageengine_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"manageengine\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination]: + """Return vulnerability data stored in index \"malicious-vscode-exts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` :param page: set the page number of the response :type page: int @@ -182791,7 +182791,7 @@ async def index_manageengine_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_manageengine_get_serialize( + _param = self._index_malicious_vscode_exts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182823,7 +182823,7 @@ async def index_manageengine_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", '404': "str", '500': "str", } @@ -182839,7 +182839,7 @@ async def index_manageengine_get_with_http_info( @validate_call - async def index_manageengine_get_without_preload_content( + async def index_malicious_vscode_exts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182878,9 +182878,9 @@ async def index_manageengine_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"manageengine\" + """Return vulnerability data stored in index \"malicious-vscode-exts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` :param page: set the page number of the response :type page: int @@ -182952,7 +182952,7 @@ async def index_manageengine_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_manageengine_get_serialize( + _param = self._index_malicious_vscode_exts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182984,7 +182984,7 @@ async def index_manageengine_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", '404': "str", '500': "str", } @@ -182995,7 +182995,7 @@ async def index_manageengine_get_without_preload_content( return response_data.response - def _index_manageengine_get_serialize( + def _index_malicious_vscode_exts_get_serialize( self, page, limit, @@ -183163,7 +183163,7 @@ def _index_manageengine_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/manageengine', + resource_path='/v3/index/malicious-vscode-exts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -183180,7 +183180,7 @@ def _index_manageengine_get_serialize( @validate_call - async def index_maven_get( + async def index_manageengine_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -183218,10 +183218,10 @@ async def index_maven_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"maven\" + ) -> RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"manageengine\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` :param page: set the page number of the response :type page: int @@ -183293,7 +183293,7 @@ async def index_maven_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_maven_get_serialize( + _param = self._index_manageengine_get_serialize( page=page, limit=limit, cursor=cursor, @@ -183325,7 +183325,7 @@ async def index_maven_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -183341,7 +183341,7 @@ async def index_maven_get( @validate_call - async def index_maven_get_with_http_info( + async def index_manageengine_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -183379,10 +183379,10 @@ async def index_maven_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"maven\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"manageengine\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` :param page: set the page number of the response :type page: int @@ -183454,7 +183454,7 @@ async def index_maven_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_maven_get_serialize( + _param = self._index_manageengine_get_serialize( page=page, limit=limit, cursor=cursor, @@ -183486,7 +183486,7 @@ async def index_maven_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -183502,7 +183502,7 @@ async def index_maven_get_with_http_info( @validate_call - async def index_maven_get_without_preload_content( + async def index_manageengine_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -183541,9 +183541,9 @@ async def index_maven_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"maven\" + """Return vulnerability data stored in index \"manageengine\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` :param page: set the page number of the response :type page: int @@ -183615,7 +183615,7 @@ async def index_maven_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_maven_get_serialize( + _param = self._index_manageengine_get_serialize( page=page, limit=limit, cursor=cursor, @@ -183647,7 +183647,7 @@ async def index_maven_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -183658,7 +183658,7 @@ async def index_maven_get_without_preload_content( return response_data.response - def _index_maven_get_serialize( + def _index_manageengine_get_serialize( self, page, limit, @@ -183826,7 +183826,7 @@ def _index_maven_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/maven', + resource_path='/v3/index/manageengine', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -183843,7 +183843,7 @@ def _index_maven_get_serialize( @validate_call - async def index_mbed_tls_get( + async def index_maven_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -183881,10 +183881,10 @@ async def index_mbed_tls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination: - """Return vulnerability data stored in index \"mbed-tls\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"maven\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` :param page: set the page number of the response :type page: int @@ -183956,7 +183956,7 @@ async def index_mbed_tls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mbed_tls_get_serialize( + _param = self._index_maven_get_serialize( page=page, limit=limit, cursor=cursor, @@ -183988,7 +183988,7 @@ async def index_mbed_tls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -184004,7 +184004,7 @@ async def index_mbed_tls_get( @validate_call - async def index_mbed_tls_get_with_http_info( + async def index_maven_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184042,10 +184042,10 @@ async def index_mbed_tls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination]: - """Return vulnerability data stored in index \"mbed-tls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"maven\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` :param page: set the page number of the response :type page: int @@ -184117,7 +184117,7 @@ async def index_mbed_tls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mbed_tls_get_serialize( + _param = self._index_maven_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184149,7 +184149,7 @@ async def index_mbed_tls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -184165,7 +184165,7 @@ async def index_mbed_tls_get_with_http_info( @validate_call - async def index_mbed_tls_get_without_preload_content( + async def index_maven_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184204,9 +184204,9 @@ async def index_mbed_tls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mbed-tls\" + """Return vulnerability data stored in index \"maven\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` :param page: set the page number of the response :type page: int @@ -184278,7 +184278,7 @@ async def index_mbed_tls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mbed_tls_get_serialize( + _param = self._index_maven_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184310,7 +184310,7 @@ async def index_mbed_tls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -184321,7 +184321,7 @@ async def index_mbed_tls_get_without_preload_content( return response_data.response - def _index_mbed_tls_get_serialize( + def _index_maven_get_serialize( self, page, limit, @@ -184489,7 +184489,7 @@ def _index_mbed_tls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mbed-tls', + resource_path='/v3/index/maven', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -184506,7 +184506,7 @@ def _index_mbed_tls_get_serialize( @validate_call - async def index_mcafee_get( + async def index_mbed_tls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184544,10 +184544,10 @@ async def index_mcafee_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination: - """Return vulnerability data stored in index \"mcafee\" + ) -> RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination: + """Return vulnerability data stored in index \"mbed-tls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` :param page: set the page number of the response :type page: int @@ -184619,7 +184619,7 @@ async def index_mcafee_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mcafee_get_serialize( + _param = self._index_mbed_tls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184651,7 +184651,7 @@ async def index_mcafee_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", '404': "str", '500': "str", } @@ -184667,7 +184667,7 @@ async def index_mcafee_get( @validate_call - async def index_mcafee_get_with_http_info( + async def index_mbed_tls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184705,10 +184705,10 @@ async def index_mcafee_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination]: - """Return vulnerability data stored in index \"mcafee\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination]: + """Return vulnerability data stored in index \"mbed-tls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` :param page: set the page number of the response :type page: int @@ -184780,7 +184780,7 @@ async def index_mcafee_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mcafee_get_serialize( + _param = self._index_mbed_tls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184812,7 +184812,7 @@ async def index_mcafee_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", '404': "str", '500': "str", } @@ -184828,7 +184828,7 @@ async def index_mcafee_get_with_http_info( @validate_call - async def index_mcafee_get_without_preload_content( + async def index_mbed_tls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184867,9 +184867,9 @@ async def index_mcafee_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mcafee\" + """Return vulnerability data stored in index \"mbed-tls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` :param page: set the page number of the response :type page: int @@ -184941,7 +184941,7 @@ async def index_mcafee_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mcafee_get_serialize( + _param = self._index_mbed_tls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184973,7 +184973,7 @@ async def index_mcafee_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", '404': "str", '500': "str", } @@ -184984,7 +184984,7 @@ async def index_mcafee_get_without_preload_content( return response_data.response - def _index_mcafee_get_serialize( + def _index_mbed_tls_get_serialize( self, page, limit, @@ -185152,7 +185152,7 @@ def _index_mcafee_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mcafee', + resource_path='/v3/index/mbed-tls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -185169,7 +185169,7 @@ def _index_mcafee_get_serialize( @validate_call - async def index_mediatek_get( + async def index_mcafee_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -185207,10 +185207,10 @@ async def index_mediatek_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination: - """Return vulnerability data stored in index \"mediatek\" + ) -> RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination: + """Return vulnerability data stored in index \"mcafee\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` :param page: set the page number of the response :type page: int @@ -185282,7 +185282,7 @@ async def index_mediatek_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mediatek_get_serialize( + _param = self._index_mcafee_get_serialize( page=page, limit=limit, cursor=cursor, @@ -185314,7 +185314,7 @@ async def index_mediatek_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", '404': "str", '500': "str", } @@ -185330,7 +185330,7 @@ async def index_mediatek_get( @validate_call - async def index_mediatek_get_with_http_info( + async def index_mcafee_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -185368,10 +185368,10 @@ async def index_mediatek_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination]: - """Return vulnerability data stored in index \"mediatek\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination]: + """Return vulnerability data stored in index \"mcafee\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` :param page: set the page number of the response :type page: int @@ -185443,7 +185443,7 @@ async def index_mediatek_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mediatek_get_serialize( + _param = self._index_mcafee_get_serialize( page=page, limit=limit, cursor=cursor, @@ -185475,7 +185475,7 @@ async def index_mediatek_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", '404': "str", '500': "str", } @@ -185491,7 +185491,7 @@ async def index_mediatek_get_with_http_info( @validate_call - async def index_mediatek_get_without_preload_content( + async def index_mcafee_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -185530,9 +185530,9 @@ async def index_mediatek_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mediatek\" + """Return vulnerability data stored in index \"mcafee\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` :param page: set the page number of the response :type page: int @@ -185604,7 +185604,7 @@ async def index_mediatek_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mediatek_get_serialize( + _param = self._index_mcafee_get_serialize( page=page, limit=limit, cursor=cursor, @@ -185636,7 +185636,7 @@ async def index_mediatek_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", '404': "str", '500': "str", } @@ -185647,7 +185647,7 @@ async def index_mediatek_get_without_preload_content( return response_data.response - def _index_mediatek_get_serialize( + def _index_mcafee_get_serialize( self, page, limit, @@ -185815,7 +185815,7 @@ def _index_mediatek_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mediatek', + resource_path='/v3/index/mcafee', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -185832,7 +185832,7 @@ def _index_mediatek_get_serialize( @validate_call - async def index_medtronic_get( + async def index_mediatek_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -185870,10 +185870,10 @@ async def index_medtronic_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"medtronic\" + ) -> RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination: + """Return vulnerability data stored in index \"mediatek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` :param page: set the page number of the response :type page: int @@ -185945,7 +185945,7 @@ async def index_medtronic_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_medtronic_get_serialize( + _param = self._index_mediatek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -185977,7 +185977,7 @@ async def index_medtronic_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", '404': "str", '500': "str", } @@ -185993,7 +185993,7 @@ async def index_medtronic_get( @validate_call - async def index_medtronic_get_with_http_info( + async def index_mediatek_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186031,10 +186031,10 @@ async def index_medtronic_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"medtronic\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination]: + """Return vulnerability data stored in index \"mediatek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` :param page: set the page number of the response :type page: int @@ -186106,7 +186106,7 @@ async def index_medtronic_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_medtronic_get_serialize( + _param = self._index_mediatek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186138,7 +186138,7 @@ async def index_medtronic_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", '404': "str", '500': "str", } @@ -186154,7 +186154,7 @@ async def index_medtronic_get_with_http_info( @validate_call - async def index_medtronic_get_without_preload_content( + async def index_mediatek_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186193,9 +186193,9 @@ async def index_medtronic_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"medtronic\" + """Return vulnerability data stored in index \"mediatek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` :param page: set the page number of the response :type page: int @@ -186267,7 +186267,7 @@ async def index_medtronic_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_medtronic_get_serialize( + _param = self._index_mediatek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186299,7 +186299,7 @@ async def index_medtronic_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", '404': "str", '500': "str", } @@ -186310,7 +186310,7 @@ async def index_medtronic_get_without_preload_content( return response_data.response - def _index_medtronic_get_serialize( + def _index_mediatek_get_serialize( self, page, limit, @@ -186478,7 +186478,7 @@ def _index_medtronic_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/medtronic', + resource_path='/v3/index/mediatek', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -186495,7 +186495,7 @@ def _index_medtronic_get_serialize( @validate_call - async def index_mendix_get( + async def index_medtronic_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186533,10 +186533,10 @@ async def index_mendix_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination: - """Return vulnerability data stored in index \"mendix\" + ) -> RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"medtronic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` :param page: set the page number of the response :type page: int @@ -186608,7 +186608,7 @@ async def index_mendix_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mendix_get_serialize( + _param = self._index_medtronic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186640,7 +186640,7 @@ async def index_mendix_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -186656,7 +186656,7 @@ async def index_mendix_get( @validate_call - async def index_mendix_get_with_http_info( + async def index_medtronic_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186694,10 +186694,10 @@ async def index_mendix_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination]: - """Return vulnerability data stored in index \"mendix\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"medtronic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` :param page: set the page number of the response :type page: int @@ -186769,7 +186769,7 @@ async def index_mendix_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mendix_get_serialize( + _param = self._index_medtronic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186801,7 +186801,7 @@ async def index_mendix_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -186817,7 +186817,7 @@ async def index_mendix_get_with_http_info( @validate_call - async def index_mendix_get_without_preload_content( + async def index_medtronic_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186856,9 +186856,9 @@ async def index_mendix_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mendix\" + """Return vulnerability data stored in index \"medtronic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` :param page: set the page number of the response :type page: int @@ -186930,7 +186930,7 @@ async def index_mendix_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mendix_get_serialize( + _param = self._index_medtronic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186962,7 +186962,7 @@ async def index_mendix_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -186973,7 +186973,7 @@ async def index_mendix_get_without_preload_content( return response_data.response - def _index_mendix_get_serialize( + def _index_medtronic_get_serialize( self, page, limit, @@ -187141,7 +187141,7 @@ def _index_mendix_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mendix', + resource_path='/v3/index/medtronic', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -187158,7 +187158,7 @@ def _index_mendix_get_serialize( @validate_call - async def index_meta_advisories_get( + async def index_mendix_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -187196,10 +187196,10 @@ async def index_meta_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination: - """Return vulnerability data stored in index \"meta-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination: + """Return vulnerability data stored in index \"mendix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` :param page: set the page number of the response :type page: int @@ -187271,7 +187271,7 @@ async def index_meta_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_meta_advisories_get_serialize( + _param = self._index_mendix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -187303,7 +187303,7 @@ async def index_meta_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", '404': "str", '500': "str", } @@ -187319,7 +187319,7 @@ async def index_meta_advisories_get( @validate_call - async def index_meta_advisories_get_with_http_info( + async def index_mendix_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -187357,10 +187357,10 @@ async def index_meta_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination]: - """Return vulnerability data stored in index \"meta-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination]: + """Return vulnerability data stored in index \"mendix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` :param page: set the page number of the response :type page: int @@ -187432,7 +187432,7 @@ async def index_meta_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_meta_advisories_get_serialize( + _param = self._index_mendix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -187464,7 +187464,7 @@ async def index_meta_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", '404': "str", '500': "str", } @@ -187480,7 +187480,7 @@ async def index_meta_advisories_get_with_http_info( @validate_call - async def index_meta_advisories_get_without_preload_content( + async def index_mendix_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -187519,9 +187519,9 @@ async def index_meta_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"meta-advisories\" + """Return vulnerability data stored in index \"mendix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` :param page: set the page number of the response :type page: int @@ -187593,7 +187593,7 @@ async def index_meta_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_meta_advisories_get_serialize( + _param = self._index_mendix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -187625,7 +187625,7 @@ async def index_meta_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", '404': "str", '500': "str", } @@ -187636,7 +187636,7 @@ async def index_meta_advisories_get_without_preload_content( return response_data.response - def _index_meta_advisories_get_serialize( + def _index_mendix_get_serialize( self, page, limit, @@ -187804,7 +187804,7 @@ def _index_meta_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/meta-advisories', + resource_path='/v3/index/mendix', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -187821,7 +187821,7 @@ def _index_meta_advisories_get_serialize( @validate_call - async def index_metasploit_get( + async def index_meta_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -187859,10 +187859,10 @@ async def index_metasploit_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination: - """Return vulnerability data stored in index \"metasploit\" + ) -> RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination: + """Return vulnerability data stored in index \"meta-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -187934,7 +187934,7 @@ async def index_metasploit_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_metasploit_get_serialize( + _param = self._index_meta_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -187966,7 +187966,7 @@ async def index_metasploit_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", '404': "str", '500': "str", } @@ -187982,7 +187982,7 @@ async def index_metasploit_get( @validate_call - async def index_metasploit_get_with_http_info( + async def index_meta_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188020,10 +188020,10 @@ async def index_metasploit_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination]: - """Return vulnerability data stored in index \"metasploit\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination]: + """Return vulnerability data stored in index \"meta-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -188095,7 +188095,7 @@ async def index_metasploit_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_metasploit_get_serialize( + _param = self._index_meta_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188127,7 +188127,7 @@ async def index_metasploit_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", '404': "str", '500': "str", } @@ -188143,7 +188143,7 @@ async def index_metasploit_get_with_http_info( @validate_call - async def index_metasploit_get_without_preload_content( + async def index_meta_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188182,9 +188182,9 @@ async def index_metasploit_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"metasploit\" + """Return vulnerability data stored in index \"meta-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -188256,7 +188256,7 @@ async def index_metasploit_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_metasploit_get_serialize( + _param = self._index_meta_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188288,7 +188288,7 @@ async def index_metasploit_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", '404': "str", '500': "str", } @@ -188299,7 +188299,7 @@ async def index_metasploit_get_without_preload_content( return response_data.response - def _index_metasploit_get_serialize( + def _index_meta_advisories_get_serialize( self, page, limit, @@ -188467,7 +188467,7 @@ def _index_metasploit_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/metasploit', + resource_path='/v3/index/meta-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -188484,7 +188484,7 @@ def _index_metasploit_get_serialize( @validate_call - async def index_microsoft_csaf_get( + async def index_metasploit_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188522,10 +188522,10 @@ async def index_microsoft_csaf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination: - """Return vulnerability data stored in index \"microsoft-csaf\" + ) -> RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination: + """Return vulnerability data stored in index \"metasploit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` :param page: set the page number of the response :type page: int @@ -188597,7 +188597,7 @@ async def index_microsoft_csaf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_csaf_get_serialize( + _param = self._index_metasploit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188629,7 +188629,7 @@ async def index_microsoft_csaf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", '404': "str", '500': "str", } @@ -188645,7 +188645,7 @@ async def index_microsoft_csaf_get( @validate_call - async def index_microsoft_csaf_get_with_http_info( + async def index_metasploit_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188683,10 +188683,10 @@ async def index_microsoft_csaf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-csaf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination]: + """Return vulnerability data stored in index \"metasploit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` :param page: set the page number of the response :type page: int @@ -188758,7 +188758,7 @@ async def index_microsoft_csaf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_csaf_get_serialize( + _param = self._index_metasploit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188790,7 +188790,7 @@ async def index_microsoft_csaf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", '404': "str", '500': "str", } @@ -188806,7 +188806,7 @@ async def index_microsoft_csaf_get_with_http_info( @validate_call - async def index_microsoft_csaf_get_without_preload_content( + async def index_metasploit_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188845,9 +188845,9 @@ async def index_microsoft_csaf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-csaf\" + """Return vulnerability data stored in index \"metasploit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` :param page: set the page number of the response :type page: int @@ -188919,7 +188919,7 @@ async def index_microsoft_csaf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_csaf_get_serialize( + _param = self._index_metasploit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188951,7 +188951,7 @@ async def index_microsoft_csaf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", '404': "str", '500': "str", } @@ -188962,7 +188962,7 @@ async def index_microsoft_csaf_get_without_preload_content( return response_data.response - def _index_microsoft_csaf_get_serialize( + def _index_metasploit_get_serialize( self, page, limit, @@ -189130,7 +189130,7 @@ def _index_microsoft_csaf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-csaf', + resource_path='/v3/index/metasploit', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -189147,7 +189147,7 @@ def _index_microsoft_csaf_get_serialize( @validate_call - async def index_microsoft_cvrf_get( + async def index_microsoft_csaf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -189185,10 +189185,10 @@ async def index_microsoft_cvrf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination: - """Return vulnerability data stored in index \"microsoft-cvrf\" + ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination: + """Return vulnerability data stored in index \"microsoft-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -189260,7 +189260,7 @@ async def index_microsoft_cvrf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_cvrf_get_serialize( + _param = self._index_microsoft_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -189292,7 +189292,7 @@ async def index_microsoft_cvrf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", '404': "str", '500': "str", } @@ -189308,7 +189308,7 @@ async def index_microsoft_cvrf_get( @validate_call - async def index_microsoft_cvrf_get_with_http_info( + async def index_microsoft_csaf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -189346,10 +189346,10 @@ async def index_microsoft_cvrf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-cvrf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -189421,7 +189421,7 @@ async def index_microsoft_cvrf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_cvrf_get_serialize( + _param = self._index_microsoft_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -189453,7 +189453,7 @@ async def index_microsoft_cvrf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", '404': "str", '500': "str", } @@ -189469,7 +189469,7 @@ async def index_microsoft_cvrf_get_with_http_info( @validate_call - async def index_microsoft_cvrf_get_without_preload_content( + async def index_microsoft_csaf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -189508,9 +189508,9 @@ async def index_microsoft_cvrf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-cvrf\" + """Return vulnerability data stored in index \"microsoft-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -189582,7 +189582,7 @@ async def index_microsoft_cvrf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_cvrf_get_serialize( + _param = self._index_microsoft_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -189614,7 +189614,7 @@ async def index_microsoft_cvrf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", '404': "str", '500': "str", } @@ -189625,7 +189625,7 @@ async def index_microsoft_cvrf_get_without_preload_content( return response_data.response - def _index_microsoft_cvrf_get_serialize( + def _index_microsoft_csaf_get_serialize( self, page, limit, @@ -189793,7 +189793,7 @@ def _index_microsoft_cvrf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-cvrf', + resource_path='/v3/index/microsoft-csaf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -189810,7 +189810,7 @@ def _index_microsoft_cvrf_get_serialize( @validate_call - async def index_microsoft_driver_block_list_get( + async def index_microsoft_cvrf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -189848,10 +189848,10 @@ async def index_microsoft_driver_block_list_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination: - """Return vulnerability data stored in index \"microsoft-driver-block-list\" + ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination: + """Return vulnerability data stored in index \"microsoft-cvrf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` :param page: set the page number of the response :type page: int @@ -189923,7 +189923,7 @@ async def index_microsoft_driver_block_list_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_driver_block_list_get_serialize( + _param = self._index_microsoft_cvrf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -189955,7 +189955,7 @@ async def index_microsoft_driver_block_list_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", '404': "str", '500': "str", } @@ -189971,7 +189971,7 @@ async def index_microsoft_driver_block_list_get( @validate_call - async def index_microsoft_driver_block_list_get_with_http_info( + async def index_microsoft_cvrf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190009,10 +190009,10 @@ async def index_microsoft_driver_block_list_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-driver-block-list\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-cvrf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` :param page: set the page number of the response :type page: int @@ -190084,7 +190084,7 @@ async def index_microsoft_driver_block_list_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_driver_block_list_get_serialize( + _param = self._index_microsoft_cvrf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190116,7 +190116,7 @@ async def index_microsoft_driver_block_list_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", '404': "str", '500': "str", } @@ -190132,7 +190132,7 @@ async def index_microsoft_driver_block_list_get_with_http_info( @validate_call - async def index_microsoft_driver_block_list_get_without_preload_content( + async def index_microsoft_cvrf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190171,9 +190171,9 @@ async def index_microsoft_driver_block_list_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-driver-block-list\" + """Return vulnerability data stored in index \"microsoft-cvrf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` :param page: set the page number of the response :type page: int @@ -190245,7 +190245,7 @@ async def index_microsoft_driver_block_list_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_driver_block_list_get_serialize( + _param = self._index_microsoft_cvrf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190277,7 +190277,7 @@ async def index_microsoft_driver_block_list_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", '404': "str", '500': "str", } @@ -190288,7 +190288,7 @@ async def index_microsoft_driver_block_list_get_without_preload_content( return response_data.response - def _index_microsoft_driver_block_list_get_serialize( + def _index_microsoft_cvrf_get_serialize( self, page, limit, @@ -190456,7 +190456,7 @@ def _index_microsoft_driver_block_list_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-driver-block-list', + resource_path='/v3/index/microsoft-cvrf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -190473,7 +190473,7 @@ def _index_microsoft_driver_block_list_get_serialize( @validate_call - async def index_microsoft_eol_get( + async def index_microsoft_driver_block_list_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190511,10 +190511,10 @@ async def index_microsoft_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: - """Return vulnerability data stored in index \"microsoft-eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination: + """Return vulnerability data stored in index \"microsoft-driver-block-list\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` :param page: set the page number of the response :type page: int @@ -190586,7 +190586,7 @@ async def index_microsoft_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_eol_get_serialize( + _param = self._index_microsoft_driver_block_list_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190618,7 +190618,7 @@ async def index_microsoft_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", '404': "str", '500': "str", } @@ -190634,7 +190634,7 @@ async def index_microsoft_eol_get( @validate_call - async def index_microsoft_eol_get_with_http_info( + async def index_microsoft_driver_block_list_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190672,10 +190672,10 @@ async def index_microsoft_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-driver-block-list\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` :param page: set the page number of the response :type page: int @@ -190747,7 +190747,7 @@ async def index_microsoft_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_eol_get_serialize( + _param = self._index_microsoft_driver_block_list_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190779,7 +190779,7 @@ async def index_microsoft_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", '404': "str", '500': "str", } @@ -190795,7 +190795,7 @@ async def index_microsoft_eol_get_with_http_info( @validate_call - async def index_microsoft_eol_get_without_preload_content( + async def index_microsoft_driver_block_list_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190834,9 +190834,9 @@ async def index_microsoft_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-eol\" + """Return vulnerability data stored in index \"microsoft-driver-block-list\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` :param page: set the page number of the response :type page: int @@ -190908,7 +190908,7 @@ async def index_microsoft_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_eol_get_serialize( + _param = self._index_microsoft_driver_block_list_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190940,7 +190940,7 @@ async def index_microsoft_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", '404': "str", '500': "str", } @@ -190951,7 +190951,7 @@ async def index_microsoft_eol_get_without_preload_content( return response_data.response - def _index_microsoft_eol_get_serialize( + def _index_microsoft_driver_block_list_get_serialize( self, page, limit, @@ -191119,7 +191119,7 @@ def _index_microsoft_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-eol', + resource_path='/v3/index/microsoft-driver-block-list', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -191136,7 +191136,7 @@ def _index_microsoft_eol_get_serialize( @validate_call - async def index_microsoft_kb_get( + async def index_microsoft_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191174,10 +191174,10 @@ async def index_microsoft_kb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination: - """Return vulnerability data stored in index \"microsoft-kb\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: + """Return vulnerability data stored in index \"microsoft-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` :param page: set the page number of the response :type page: int @@ -191249,7 +191249,7 @@ async def index_microsoft_kb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_kb_get_serialize( + _param = self._index_microsoft_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -191281,7 +191281,7 @@ async def index_microsoft_kb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -191297,7 +191297,7 @@ async def index_microsoft_kb_get( @validate_call - async def index_microsoft_kb_get_with_http_info( + async def index_microsoft_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191335,10 +191335,10 @@ async def index_microsoft_kb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-kb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` :param page: set the page number of the response :type page: int @@ -191410,7 +191410,7 @@ async def index_microsoft_kb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_kb_get_serialize( + _param = self._index_microsoft_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -191442,7 +191442,7 @@ async def index_microsoft_kb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -191458,7 +191458,7 @@ async def index_microsoft_kb_get_with_http_info( @validate_call - async def index_microsoft_kb_get_without_preload_content( + async def index_microsoft_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191497,9 +191497,9 @@ async def index_microsoft_kb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-kb\" + """Return vulnerability data stored in index \"microsoft-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` :param page: set the page number of the response :type page: int @@ -191571,7 +191571,7 @@ async def index_microsoft_kb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_kb_get_serialize( + _param = self._index_microsoft_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -191603,7 +191603,7 @@ async def index_microsoft_kb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -191614,7 +191614,7 @@ async def index_microsoft_kb_get_without_preload_content( return response_data.response - def _index_microsoft_kb_get_serialize( + def _index_microsoft_eol_get_serialize( self, page, limit, @@ -191782,7 +191782,7 @@ def _index_microsoft_kb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-kb', + resource_path='/v3/index/microsoft-eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -191799,7 +191799,7 @@ def _index_microsoft_kb_get_serialize( @validate_call - async def index_mikrotik_get( + async def index_microsoft_kb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191837,10 +191837,10 @@ async def index_mikrotik_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination: - """Return vulnerability data stored in index \"mikrotik\" + ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination: + """Return vulnerability data stored in index \"microsoft-kb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` :param page: set the page number of the response :type page: int @@ -191912,7 +191912,7 @@ async def index_mikrotik_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mikrotik_get_serialize( + _param = self._index_microsoft_kb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -191944,7 +191944,7 @@ async def index_mikrotik_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", '404': "str", '500': "str", } @@ -191960,7 +191960,7 @@ async def index_mikrotik_get( @validate_call - async def index_mikrotik_get_with_http_info( + async def index_microsoft_kb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191998,10 +191998,10 @@ async def index_mikrotik_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination]: - """Return vulnerability data stored in index \"mikrotik\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-kb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` :param page: set the page number of the response :type page: int @@ -192073,7 +192073,7 @@ async def index_mikrotik_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mikrotik_get_serialize( + _param = self._index_microsoft_kb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192105,7 +192105,7 @@ async def index_mikrotik_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", '404': "str", '500': "str", } @@ -192121,7 +192121,7 @@ async def index_mikrotik_get_with_http_info( @validate_call - async def index_mikrotik_get_without_preload_content( + async def index_microsoft_kb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -192160,9 +192160,9 @@ async def index_mikrotik_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mikrotik\" + """Return vulnerability data stored in index \"microsoft-kb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` :param page: set the page number of the response :type page: int @@ -192234,7 +192234,7 @@ async def index_mikrotik_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mikrotik_get_serialize( + _param = self._index_microsoft_kb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192266,7 +192266,7 @@ async def index_mikrotik_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", '404': "str", '500': "str", } @@ -192277,7 +192277,7 @@ async def index_mikrotik_get_without_preload_content( return response_data.response - def _index_mikrotik_get_serialize( + def _index_microsoft_kb_get_serialize( self, page, limit, @@ -192445,7 +192445,7 @@ def _index_mikrotik_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mikrotik', + resource_path='/v3/index/microsoft-kb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -192462,7 +192462,7 @@ def _index_mikrotik_get_serialize( @validate_call - async def index_mindray_get( + async def index_mikrotik_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -192500,10 +192500,10 @@ async def index_mindray_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination: - """Return vulnerability data stored in index \"mindray\" + ) -> RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination: + """Return vulnerability data stored in index \"mikrotik\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` :param page: set the page number of the response :type page: int @@ -192575,7 +192575,7 @@ async def index_mindray_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mindray_get_serialize( + _param = self._index_mikrotik_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192607,7 +192607,7 @@ async def index_mindray_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", '404': "str", '500': "str", } @@ -192623,7 +192623,7 @@ async def index_mindray_get( @validate_call - async def index_mindray_get_with_http_info( + async def index_mikrotik_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -192661,10 +192661,10 @@ async def index_mindray_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination]: - """Return vulnerability data stored in index \"mindray\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination]: + """Return vulnerability data stored in index \"mikrotik\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` :param page: set the page number of the response :type page: int @@ -192736,7 +192736,7 @@ async def index_mindray_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mindray_get_serialize( + _param = self._index_mikrotik_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192768,7 +192768,7 @@ async def index_mindray_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", '404': "str", '500': "str", } @@ -192784,7 +192784,7 @@ async def index_mindray_get_with_http_info( @validate_call - async def index_mindray_get_without_preload_content( + async def index_mikrotik_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -192823,9 +192823,9 @@ async def index_mindray_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mindray\" + """Return vulnerability data stored in index \"mikrotik\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` :param page: set the page number of the response :type page: int @@ -192897,7 +192897,7 @@ async def index_mindray_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mindray_get_serialize( + _param = self._index_mikrotik_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192929,7 +192929,7 @@ async def index_mindray_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", '404': "str", '500': "str", } @@ -192940,7 +192940,7 @@ async def index_mindray_get_without_preload_content( return response_data.response - def _index_mindray_get_serialize( + def _index_mikrotik_get_serialize( self, page, limit, @@ -193108,7 +193108,7 @@ def _index_mindray_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mindray', + resource_path='/v3/index/mikrotik', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -193125,7 +193125,7 @@ def _index_mindray_get_serialize( @validate_call - async def index_misp_threat_actors_get( + async def index_mindray_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193163,10 +193163,10 @@ async def index_misp_threat_actors_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination: - """Return vulnerability data stored in index \"misp-threat-actors\" + ) -> RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination: + """Return vulnerability data stored in index \"mindray\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` :param page: set the page number of the response :type page: int @@ -193238,7 +193238,7 @@ async def index_misp_threat_actors_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_misp_threat_actors_get_serialize( + _param = self._index_mindray_get_serialize( page=page, limit=limit, cursor=cursor, @@ -193270,7 +193270,7 @@ async def index_misp_threat_actors_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", '404': "str", '500': "str", } @@ -193286,7 +193286,7 @@ async def index_misp_threat_actors_get( @validate_call - async def index_misp_threat_actors_get_with_http_info( + async def index_mindray_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193324,10 +193324,10 @@ async def index_misp_threat_actors_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination]: - """Return vulnerability data stored in index \"misp-threat-actors\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination]: + """Return vulnerability data stored in index \"mindray\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` :param page: set the page number of the response :type page: int @@ -193399,7 +193399,7 @@ async def index_misp_threat_actors_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_misp_threat_actors_get_serialize( + _param = self._index_mindray_get_serialize( page=page, limit=limit, cursor=cursor, @@ -193431,7 +193431,7 @@ async def index_misp_threat_actors_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", '404': "str", '500': "str", } @@ -193447,7 +193447,7 @@ async def index_misp_threat_actors_get_with_http_info( @validate_call - async def index_misp_threat_actors_get_without_preload_content( + async def index_mindray_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193486,9 +193486,9 @@ async def index_misp_threat_actors_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"misp-threat-actors\" + """Return vulnerability data stored in index \"mindray\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` :param page: set the page number of the response :type page: int @@ -193560,7 +193560,7 @@ async def index_misp_threat_actors_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_misp_threat_actors_get_serialize( + _param = self._index_mindray_get_serialize( page=page, limit=limit, cursor=cursor, @@ -193592,7 +193592,7 @@ async def index_misp_threat_actors_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", '404': "str", '500': "str", } @@ -193603,7 +193603,7 @@ async def index_misp_threat_actors_get_without_preload_content( return response_data.response - def _index_misp_threat_actors_get_serialize( + def _index_mindray_get_serialize( self, page, limit, @@ -193771,7 +193771,7 @@ def _index_misp_threat_actors_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/misp-threat-actors', + resource_path='/v3/index/mindray', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -193788,7 +193788,7 @@ def _index_misp_threat_actors_get_serialize( @validate_call - async def index_mitel_get( + async def index_misp_threat_actors_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193826,10 +193826,10 @@ async def index_mitel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination: - """Return vulnerability data stored in index \"mitel\" + ) -> RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination: + """Return vulnerability data stored in index \"misp-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -193901,7 +193901,7 @@ async def index_mitel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitel_get_serialize( + _param = self._index_misp_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -193933,7 +193933,7 @@ async def index_mitel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", '404': "str", '500': "str", } @@ -193949,7 +193949,7 @@ async def index_mitel_get( @validate_call - async def index_mitel_get_with_http_info( + async def index_misp_threat_actors_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193987,10 +193987,10 @@ async def index_mitel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination]: - """Return vulnerability data stored in index \"mitel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination]: + """Return vulnerability data stored in index \"misp-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -194062,7 +194062,7 @@ async def index_mitel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitel_get_serialize( + _param = self._index_misp_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194094,7 +194094,7 @@ async def index_mitel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", '404': "str", '500': "str", } @@ -194110,7 +194110,7 @@ async def index_mitel_get_with_http_info( @validate_call - async def index_mitel_get_without_preload_content( + async def index_misp_threat_actors_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -194149,9 +194149,9 @@ async def index_mitel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mitel\" + """Return vulnerability data stored in index \"misp-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -194223,7 +194223,7 @@ async def index_mitel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitel_get_serialize( + _param = self._index_misp_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194255,7 +194255,7 @@ async def index_mitel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", '404': "str", '500': "str", } @@ -194266,7 +194266,7 @@ async def index_mitel_get_without_preload_content( return response_data.response - def _index_mitel_get_serialize( + def _index_misp_threat_actors_get_serialize( self, page, limit, @@ -194434,7 +194434,7 @@ def _index_mitel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mitel', + resource_path='/v3/index/misp-threat-actors', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -194451,7 +194451,7 @@ def _index_mitel_get_serialize( @validate_call - async def index_mitre_attack_cve_get( + async def index_mitel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -194489,10 +194489,10 @@ async def index_mitre_attack_cve_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination: - """Return vulnerability data stored in index \"mitre-attack-cve\" + ) -> RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination: + """Return vulnerability data stored in index \"mitel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` :param page: set the page number of the response :type page: int @@ -194564,7 +194564,7 @@ async def index_mitre_attack_cve_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_attack_cve_get_serialize( + _param = self._index_mitel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194596,7 +194596,7 @@ async def index_mitre_attack_cve_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", '404': "str", '500': "str", } @@ -194612,7 +194612,7 @@ async def index_mitre_attack_cve_get( @validate_call - async def index_mitre_attack_cve_get_with_http_info( + async def index_mitel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -194650,10 +194650,10 @@ async def index_mitre_attack_cve_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination]: - """Return vulnerability data stored in index \"mitre-attack-cve\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination]: + """Return vulnerability data stored in index \"mitel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` :param page: set the page number of the response :type page: int @@ -194725,7 +194725,7 @@ async def index_mitre_attack_cve_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_attack_cve_get_serialize( + _param = self._index_mitel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194757,7 +194757,7 @@ async def index_mitre_attack_cve_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", '404': "str", '500': "str", } @@ -194773,7 +194773,7 @@ async def index_mitre_attack_cve_get_with_http_info( @validate_call - async def index_mitre_attack_cve_get_without_preload_content( + async def index_mitel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -194812,9 +194812,9 @@ async def index_mitre_attack_cve_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mitre-attack-cve\" + """Return vulnerability data stored in index \"mitel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` :param page: set the page number of the response :type page: int @@ -194886,7 +194886,7 @@ async def index_mitre_attack_cve_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_attack_cve_get_serialize( + _param = self._index_mitel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194918,7 +194918,7 @@ async def index_mitre_attack_cve_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", '404': "str", '500': "str", } @@ -194929,7 +194929,7 @@ async def index_mitre_attack_cve_get_without_preload_content( return response_data.response - def _index_mitre_attack_cve_get_serialize( + def _index_mitel_get_serialize( self, page, limit, @@ -195097,7 +195097,7 @@ def _index_mitre_attack_cve_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mitre-attack-cve', + resource_path='/v3/index/mitel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -195114,7 +195114,7 @@ def _index_mitre_attack_cve_get_serialize( @validate_call - async def index_mitre_cvelist_v5_get( + async def index_mitre_attack_cve_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195152,10 +195152,10 @@ async def index_mitre_cvelist_v5_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination: - """Return vulnerability data stored in index \"mitre-cvelist-v5\" + ) -> RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination: + """Return vulnerability data stored in index \"mitre-attack-cve\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` :param page: set the page number of the response :type page: int @@ -195227,7 +195227,7 @@ async def index_mitre_cvelist_v5_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_cvelist_v5_get_serialize( + _param = self._index_mitre_attack_cve_get_serialize( page=page, limit=limit, cursor=cursor, @@ -195259,7 +195259,7 @@ async def index_mitre_cvelist_v5_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", '404': "str", '500': "str", } @@ -195275,7 +195275,7 @@ async def index_mitre_cvelist_v5_get( @validate_call - async def index_mitre_cvelist_v5_get_with_http_info( + async def index_mitre_attack_cve_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195313,10 +195313,10 @@ async def index_mitre_cvelist_v5_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination]: - """Return vulnerability data stored in index \"mitre-cvelist-v5\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination]: + """Return vulnerability data stored in index \"mitre-attack-cve\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` :param page: set the page number of the response :type page: int @@ -195388,7 +195388,7 @@ async def index_mitre_cvelist_v5_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_cvelist_v5_get_serialize( + _param = self._index_mitre_attack_cve_get_serialize( page=page, limit=limit, cursor=cursor, @@ -195420,7 +195420,7 @@ async def index_mitre_cvelist_v5_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", '404': "str", '500': "str", } @@ -195436,7 +195436,7 @@ async def index_mitre_cvelist_v5_get_with_http_info( @validate_call - async def index_mitre_cvelist_v5_get_without_preload_content( + async def index_mitre_attack_cve_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195475,9 +195475,9 @@ async def index_mitre_cvelist_v5_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mitre-cvelist-v5\" + """Return vulnerability data stored in index \"mitre-attack-cve\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` :param page: set the page number of the response :type page: int @@ -195549,7 +195549,7 @@ async def index_mitre_cvelist_v5_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_cvelist_v5_get_serialize( + _param = self._index_mitre_attack_cve_get_serialize( page=page, limit=limit, cursor=cursor, @@ -195581,7 +195581,7 @@ async def index_mitre_cvelist_v5_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", '404': "str", '500': "str", } @@ -195592,7 +195592,7 @@ async def index_mitre_cvelist_v5_get_without_preload_content( return response_data.response - def _index_mitre_cvelist_v5_get_serialize( + def _index_mitre_attack_cve_get_serialize( self, page, limit, @@ -195760,7 +195760,7 @@ def _index_mitre_cvelist_v5_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mitre-cvelist-v5', + resource_path='/v3/index/mitre-attack-cve', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -195777,7 +195777,7 @@ def _index_mitre_cvelist_v5_get_serialize( @validate_call - async def index_mitsubishi_electric_get( + async def index_mitre_cvelist_v5_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195815,10 +195815,10 @@ async def index_mitsubishi_electric_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"mitsubishi-electric\" + ) -> RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination: + """Return vulnerability data stored in index \"mitre-cvelist-v5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` :param page: set the page number of the response :type page: int @@ -195890,7 +195890,7 @@ async def index_mitsubishi_electric_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitsubishi_electric_get_serialize( + _param = self._index_mitre_cvelist_v5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -195922,7 +195922,7 @@ async def index_mitsubishi_electric_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", '404': "str", '500': "str", } @@ -195938,7 +195938,7 @@ async def index_mitsubishi_electric_get( @validate_call - async def index_mitsubishi_electric_get_with_http_info( + async def index_mitre_cvelist_v5_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195976,10 +195976,10 @@ async def index_mitsubishi_electric_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"mitsubishi-electric\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination]: + """Return vulnerability data stored in index \"mitre-cvelist-v5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` :param page: set the page number of the response :type page: int @@ -196051,7 +196051,7 @@ async def index_mitsubishi_electric_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitsubishi_electric_get_serialize( + _param = self._index_mitre_cvelist_v5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196083,7 +196083,7 @@ async def index_mitsubishi_electric_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", '404': "str", '500': "str", } @@ -196099,7 +196099,7 @@ async def index_mitsubishi_electric_get_with_http_info( @validate_call - async def index_mitsubishi_electric_get_without_preload_content( + async def index_mitre_cvelist_v5_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -196138,9 +196138,9 @@ async def index_mitsubishi_electric_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mitsubishi-electric\" + """Return vulnerability data stored in index \"mitre-cvelist-v5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` :param page: set the page number of the response :type page: int @@ -196212,7 +196212,7 @@ async def index_mitsubishi_electric_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitsubishi_electric_get_serialize( + _param = self._index_mitre_cvelist_v5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196244,7 +196244,7 @@ async def index_mitsubishi_electric_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", '404': "str", '500': "str", } @@ -196255,7 +196255,7 @@ async def index_mitsubishi_electric_get_without_preload_content( return response_data.response - def _index_mitsubishi_electric_get_serialize( + def _index_mitre_cvelist_v5_get_serialize( self, page, limit, @@ -196423,7 +196423,7 @@ def _index_mitsubishi_electric_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mitsubishi-electric', + resource_path='/v3/index/mitre-cvelist-v5', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -196440,7 +196440,7 @@ def _index_mitsubishi_electric_get_serialize( @validate_call - async def index_mogwai_labs_get( + async def index_mitsubishi_electric_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -196478,10 +196478,10 @@ async def index_mogwai_labs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"mogwai-labs\" + ) -> RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"mitsubishi-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` :param page: set the page number of the response :type page: int @@ -196553,7 +196553,7 @@ async def index_mogwai_labs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mogwai_labs_get_serialize( + _param = self._index_mitsubishi_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196585,7 +196585,7 @@ async def index_mogwai_labs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -196601,7 +196601,7 @@ async def index_mogwai_labs_get( @validate_call - async def index_mogwai_labs_get_with_http_info( + async def index_mitsubishi_electric_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -196639,10 +196639,10 @@ async def index_mogwai_labs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"mogwai-labs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"mitsubishi-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` :param page: set the page number of the response :type page: int @@ -196714,7 +196714,7 @@ async def index_mogwai_labs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mogwai_labs_get_serialize( + _param = self._index_mitsubishi_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196746,7 +196746,7 @@ async def index_mogwai_labs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -196762,7 +196762,7 @@ async def index_mogwai_labs_get_with_http_info( @validate_call - async def index_mogwai_labs_get_without_preload_content( + async def index_mitsubishi_electric_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -196801,9 +196801,9 @@ async def index_mogwai_labs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mogwai-labs\" + """Return vulnerability data stored in index \"mitsubishi-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` :param page: set the page number of the response :type page: int @@ -196875,7 +196875,7 @@ async def index_mogwai_labs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mogwai_labs_get_serialize( + _param = self._index_mitsubishi_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196907,7 +196907,7 @@ async def index_mogwai_labs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -196918,7 +196918,7 @@ async def index_mogwai_labs_get_without_preload_content( return response_data.response - def _index_mogwai_labs_get_serialize( + def _index_mitsubishi_electric_get_serialize( self, page, limit, @@ -197086,7 +197086,7 @@ def _index_mogwai_labs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mogwai-labs', + resource_path='/v3/index/mitsubishi-electric', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -197103,7 +197103,7 @@ def _index_mogwai_labs_get_serialize( @validate_call - async def index_moksha_get( + async def index_mogwai_labs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197141,10 +197141,10 @@ async def index_moksha_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"moksha\" + ) -> RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"mogwai-labs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` :param page: set the page number of the response :type page: int @@ -197216,7 +197216,7 @@ async def index_moksha_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moksha_get_serialize( + _param = self._index_mogwai_labs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -197248,7 +197248,7 @@ async def index_moksha_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -197264,7 +197264,7 @@ async def index_moksha_get( @validate_call - async def index_moksha_get_with_http_info( + async def index_mogwai_labs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197302,10 +197302,10 @@ async def index_moksha_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"moksha\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"mogwai-labs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` :param page: set the page number of the response :type page: int @@ -197377,7 +197377,7 @@ async def index_moksha_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moksha_get_serialize( + _param = self._index_mogwai_labs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -197409,7 +197409,7 @@ async def index_moksha_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -197425,7 +197425,7 @@ async def index_moksha_get_with_http_info( @validate_call - async def index_moksha_get_without_preload_content( + async def index_mogwai_labs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197464,9 +197464,9 @@ async def index_moksha_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"moksha\" + """Return vulnerability data stored in index \"mogwai-labs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` :param page: set the page number of the response :type page: int @@ -197538,7 +197538,7 @@ async def index_moksha_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moksha_get_serialize( + _param = self._index_mogwai_labs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -197570,7 +197570,7 @@ async def index_moksha_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -197581,7 +197581,7 @@ async def index_moksha_get_without_preload_content( return response_data.response - def _index_moksha_get_serialize( + def _index_mogwai_labs_get_serialize( self, page, limit, @@ -197749,7 +197749,7 @@ def _index_moksha_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/moksha', + resource_path='/v3/index/mogwai-labs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -197766,7 +197766,7 @@ def _index_moksha_get_serialize( @validate_call - async def index_mongodb_get( + async def index_moksha_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197804,10 +197804,10 @@ async def index_mongodb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination: - """Return vulnerability data stored in index \"mongodb\" + ) -> RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"moksha\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` :param page: set the page number of the response :type page: int @@ -197879,7 +197879,7 @@ async def index_mongodb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mongodb_get_serialize( + _param = self._index_moksha_get_serialize( page=page, limit=limit, cursor=cursor, @@ -197911,7 +197911,7 @@ async def index_mongodb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -197927,7 +197927,7 @@ async def index_mongodb_get( @validate_call - async def index_mongodb_get_with_http_info( + async def index_moksha_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197965,10 +197965,10 @@ async def index_mongodb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination]: - """Return vulnerability data stored in index \"mongodb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"moksha\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` :param page: set the page number of the response :type page: int @@ -198040,7 +198040,7 @@ async def index_mongodb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mongodb_get_serialize( + _param = self._index_moksha_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198072,7 +198072,7 @@ async def index_mongodb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -198088,7 +198088,7 @@ async def index_mongodb_get_with_http_info( @validate_call - async def index_mongodb_get_without_preload_content( + async def index_moksha_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -198127,9 +198127,9 @@ async def index_mongodb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mongodb\" + """Return vulnerability data stored in index \"moksha\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` :param page: set the page number of the response :type page: int @@ -198201,7 +198201,7 @@ async def index_mongodb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mongodb_get_serialize( + _param = self._index_moksha_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198233,7 +198233,7 @@ async def index_mongodb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -198244,7 +198244,7 @@ async def index_mongodb_get_without_preload_content( return response_data.response - def _index_mongodb_get_serialize( + def _index_moksha_get_serialize( self, page, limit, @@ -198412,7 +198412,7 @@ def _index_mongodb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mongodb', + resource_path='/v3/index/moksha', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -198429,7 +198429,7 @@ def _index_mongodb_get_serialize( @validate_call - async def index_moxa_get( + async def index_mongodb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -198467,10 +198467,10 @@ async def index_moxa_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"moxa\" + ) -> RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination: + """Return vulnerability data stored in index \"mongodb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` :param page: set the page number of the response :type page: int @@ -198542,7 +198542,7 @@ async def index_moxa_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moxa_get_serialize( + _param = self._index_mongodb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198574,7 +198574,7 @@ async def index_moxa_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", '404': "str", '500': "str", } @@ -198590,7 +198590,7 @@ async def index_moxa_get( @validate_call - async def index_moxa_get_with_http_info( + async def index_mongodb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -198628,10 +198628,10 @@ async def index_moxa_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"moxa\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination]: + """Return vulnerability data stored in index \"mongodb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` :param page: set the page number of the response :type page: int @@ -198703,7 +198703,7 @@ async def index_moxa_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moxa_get_serialize( + _param = self._index_mongodb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198735,7 +198735,7 @@ async def index_moxa_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", '404': "str", '500': "str", } @@ -198751,7 +198751,7 @@ async def index_moxa_get_with_http_info( @validate_call - async def index_moxa_get_without_preload_content( + async def index_mongodb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -198790,9 +198790,9 @@ async def index_moxa_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"moxa\" + """Return vulnerability data stored in index \"mongodb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` :param page: set the page number of the response :type page: int @@ -198864,7 +198864,7 @@ async def index_moxa_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moxa_get_serialize( + _param = self._index_mongodb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198896,7 +198896,7 @@ async def index_moxa_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", '404': "str", '500': "str", } @@ -198907,7 +198907,7 @@ async def index_moxa_get_without_preload_content( return response_data.response - def _index_moxa_get_serialize( + def _index_mongodb_get_serialize( self, page, limit, @@ -199075,7 +199075,7 @@ def _index_moxa_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/moxa', + resource_path='/v3/index/mongodb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -199092,7 +199092,7 @@ def _index_moxa_get_serialize( @validate_call - async def index_mozilla_get( + async def index_moxa_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199130,10 +199130,10 @@ async def index_mozilla_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"mozilla\" + ) -> RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"moxa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` :param page: set the page number of the response :type page: int @@ -199205,7 +199205,7 @@ async def index_mozilla_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mozilla_get_serialize( + _param = self._index_moxa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -199237,7 +199237,7 @@ async def index_mozilla_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -199253,7 +199253,7 @@ async def index_mozilla_get( @validate_call - async def index_mozilla_get_with_http_info( + async def index_moxa_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199291,10 +199291,10 @@ async def index_mozilla_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"mozilla\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"moxa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` :param page: set the page number of the response :type page: int @@ -199366,7 +199366,7 @@ async def index_mozilla_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mozilla_get_serialize( + _param = self._index_moxa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -199398,7 +199398,7 @@ async def index_mozilla_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -199414,7 +199414,7 @@ async def index_mozilla_get_with_http_info( @validate_call - async def index_mozilla_get_without_preload_content( + async def index_moxa_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199453,9 +199453,9 @@ async def index_mozilla_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mozilla\" + """Return vulnerability data stored in index \"moxa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` :param page: set the page number of the response :type page: int @@ -199527,7 +199527,7 @@ async def index_mozilla_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mozilla_get_serialize( + _param = self._index_moxa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -199559,7 +199559,7 @@ async def index_mozilla_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -199570,7 +199570,7 @@ async def index_mozilla_get_without_preload_content( return response_data.response - def _index_mozilla_get_serialize( + def _index_moxa_get_serialize( self, page, limit, @@ -199738,7 +199738,7 @@ def _index_mozilla_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mozilla', + resource_path='/v3/index/moxa', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -199755,7 +199755,7 @@ def _index_mozilla_get_serialize( @validate_call - async def index_naver_get( + async def index_mozilla_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199793,10 +199793,10 @@ async def index_naver_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination: - """Return vulnerability data stored in index \"naver\" + ) -> RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"mozilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` :param page: set the page number of the response :type page: int @@ -199868,7 +199868,7 @@ async def index_naver_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_naver_get_serialize( + _param = self._index_mozilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -199900,7 +199900,7 @@ async def index_naver_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -199916,7 +199916,7 @@ async def index_naver_get( @validate_call - async def index_naver_get_with_http_info( + async def index_mozilla_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199954,10 +199954,10 @@ async def index_naver_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination]: - """Return vulnerability data stored in index \"naver\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"mozilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` :param page: set the page number of the response :type page: int @@ -200029,7 +200029,7 @@ async def index_naver_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_naver_get_serialize( + _param = self._index_mozilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200061,7 +200061,7 @@ async def index_naver_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -200077,7 +200077,7 @@ async def index_naver_get_with_http_info( @validate_call - async def index_naver_get_without_preload_content( + async def index_mozilla_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -200116,9 +200116,9 @@ async def index_naver_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"naver\" + """Return vulnerability data stored in index \"mozilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` :param page: set the page number of the response :type page: int @@ -200190,7 +200190,7 @@ async def index_naver_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_naver_get_serialize( + _param = self._index_mozilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200222,7 +200222,7 @@ async def index_naver_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -200233,7 +200233,7 @@ async def index_naver_get_without_preload_content( return response_data.response - def _index_naver_get_serialize( + def _index_mozilla_get_serialize( self, page, limit, @@ -200401,7 +200401,7 @@ def _index_naver_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/naver', + resource_path='/v3/index/mozilla', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -200418,7 +200418,7 @@ def _index_naver_get_serialize( @validate_call - async def index_ncsc_cves_get( + async def index_naver_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -200456,10 +200456,10 @@ async def index_ncsc_cves_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination: - """Return vulnerability data stored in index \"ncsc-cves\" + ) -> RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination: + """Return vulnerability data stored in index \"naver\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` :param page: set the page number of the response :type page: int @@ -200531,7 +200531,7 @@ async def index_ncsc_cves_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_cves_get_serialize( + _param = self._index_naver_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200563,7 +200563,7 @@ async def index_ncsc_cves_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", '404': "str", '500': "str", } @@ -200579,7 +200579,7 @@ async def index_ncsc_cves_get( @validate_call - async def index_ncsc_cves_get_with_http_info( + async def index_naver_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -200617,10 +200617,10 @@ async def index_ncsc_cves_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination]: - """Return vulnerability data stored in index \"ncsc-cves\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination]: + """Return vulnerability data stored in index \"naver\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` :param page: set the page number of the response :type page: int @@ -200692,7 +200692,7 @@ async def index_ncsc_cves_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_cves_get_serialize( + _param = self._index_naver_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200724,7 +200724,7 @@ async def index_ncsc_cves_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", '404': "str", '500': "str", } @@ -200740,7 +200740,7 @@ async def index_ncsc_cves_get_with_http_info( @validate_call - async def index_ncsc_cves_get_without_preload_content( + async def index_naver_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -200779,9 +200779,9 @@ async def index_ncsc_cves_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ncsc-cves\" + """Return vulnerability data stored in index \"naver\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` :param page: set the page number of the response :type page: int @@ -200853,7 +200853,7 @@ async def index_ncsc_cves_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_cves_get_serialize( + _param = self._index_naver_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200885,7 +200885,7 @@ async def index_ncsc_cves_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", '404': "str", '500': "str", } @@ -200896,7 +200896,7 @@ async def index_ncsc_cves_get_without_preload_content( return response_data.response - def _index_ncsc_cves_get_serialize( + def _index_naver_get_serialize( self, page, limit, @@ -201064,7 +201064,7 @@ def _index_ncsc_cves_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ncsc-cves', + resource_path='/v3/index/naver', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -201081,7 +201081,7 @@ def _index_ncsc_cves_get_serialize( @validate_call - async def index_ncsc_get( + async def index_ncsc_cves_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201119,10 +201119,10 @@ async def index_ncsc_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination: - """Return vulnerability data stored in index \"ncsc\" + ) -> RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination: + """Return vulnerability data stored in index \"ncsc-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` :param page: set the page number of the response :type page: int @@ -201194,7 +201194,7 @@ async def index_ncsc_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_get_serialize( + _param = self._index_ncsc_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -201226,7 +201226,7 @@ async def index_ncsc_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", '404': "str", '500': "str", } @@ -201242,7 +201242,7 @@ async def index_ncsc_get( @validate_call - async def index_ncsc_get_with_http_info( + async def index_ncsc_cves_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201280,10 +201280,10 @@ async def index_ncsc_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination]: - """Return vulnerability data stored in index \"ncsc\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination]: + """Return vulnerability data stored in index \"ncsc-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` :param page: set the page number of the response :type page: int @@ -201355,7 +201355,7 @@ async def index_ncsc_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_get_serialize( + _param = self._index_ncsc_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -201387,7 +201387,7 @@ async def index_ncsc_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", '404': "str", '500': "str", } @@ -201403,7 +201403,7 @@ async def index_ncsc_get_with_http_info( @validate_call - async def index_ncsc_get_without_preload_content( + async def index_ncsc_cves_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201442,9 +201442,9 @@ async def index_ncsc_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ncsc\" + """Return vulnerability data stored in index \"ncsc-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` :param page: set the page number of the response :type page: int @@ -201516,7 +201516,7 @@ async def index_ncsc_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_get_serialize( + _param = self._index_ncsc_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -201548,7 +201548,7 @@ async def index_ncsc_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", '404': "str", '500': "str", } @@ -201559,7 +201559,7 @@ async def index_ncsc_get_without_preload_content( return response_data.response - def _index_ncsc_get_serialize( + def _index_ncsc_cves_get_serialize( self, page, limit, @@ -201727,7 +201727,7 @@ def _index_ncsc_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ncsc', + resource_path='/v3/index/ncsc-cves', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -201744,7 +201744,7 @@ def _index_ncsc_get_serialize( @validate_call - async def index_nec_get( + async def index_ncsc_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201782,10 +201782,10 @@ async def index_nec_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination: - """Return vulnerability data stored in index \"nec\" + ) -> RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination: + """Return vulnerability data stored in index \"ncsc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` :param page: set the page number of the response :type page: int @@ -201857,7 +201857,7 @@ async def index_nec_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nec_get_serialize( + _param = self._index_ncsc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -201889,7 +201889,7 @@ async def index_nec_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", '404': "str", '500': "str", } @@ -201905,7 +201905,7 @@ async def index_nec_get( @validate_call - async def index_nec_get_with_http_info( + async def index_ncsc_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201943,10 +201943,10 @@ async def index_nec_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination]: - """Return vulnerability data stored in index \"nec\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination]: + """Return vulnerability data stored in index \"ncsc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` :param page: set the page number of the response :type page: int @@ -202018,7 +202018,7 @@ async def index_nec_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nec_get_serialize( + _param = self._index_ncsc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202050,7 +202050,7 @@ async def index_nec_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", '404': "str", '500': "str", } @@ -202066,7 +202066,7 @@ async def index_nec_get_with_http_info( @validate_call - async def index_nec_get_without_preload_content( + async def index_ncsc_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -202105,9 +202105,9 @@ async def index_nec_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nec\" + """Return vulnerability data stored in index \"ncsc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` :param page: set the page number of the response :type page: int @@ -202179,7 +202179,7 @@ async def index_nec_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nec_get_serialize( + _param = self._index_ncsc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202211,7 +202211,7 @@ async def index_nec_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", '404': "str", '500': "str", } @@ -202222,7 +202222,7 @@ async def index_nec_get_without_preload_content( return response_data.response - def _index_nec_get_serialize( + def _index_ncsc_get_serialize( self, page, limit, @@ -202390,7 +202390,7 @@ def _index_nec_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nec', + resource_path='/v3/index/ncsc', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -202407,7 +202407,7 @@ def _index_nec_get_serialize( @validate_call - async def index_nessus_get( + async def index_nec_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -202445,10 +202445,10 @@ async def index_nessus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination: - """Return vulnerability data stored in index \"nessus\" + ) -> RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination: + """Return vulnerability data stored in index \"nec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` :param page: set the page number of the response :type page: int @@ -202520,7 +202520,7 @@ async def index_nessus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nessus_get_serialize( + _param = self._index_nec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202552,7 +202552,7 @@ async def index_nessus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", '404': "str", '500': "str", } @@ -202568,7 +202568,7 @@ async def index_nessus_get( @validate_call - async def index_nessus_get_with_http_info( + async def index_nec_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -202606,10 +202606,10 @@ async def index_nessus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination]: - """Return vulnerability data stored in index \"nessus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination]: + """Return vulnerability data stored in index \"nec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` :param page: set the page number of the response :type page: int @@ -202681,7 +202681,7 @@ async def index_nessus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nessus_get_serialize( + _param = self._index_nec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202713,7 +202713,7 @@ async def index_nessus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", '404': "str", '500': "str", } @@ -202729,7 +202729,7 @@ async def index_nessus_get_with_http_info( @validate_call - async def index_nessus_get_without_preload_content( + async def index_nec_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -202768,9 +202768,9 @@ async def index_nessus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nessus\" + """Return vulnerability data stored in index \"nec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` :param page: set the page number of the response :type page: int @@ -202842,7 +202842,7 @@ async def index_nessus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nessus_get_serialize( + _param = self._index_nec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202874,7 +202874,7 @@ async def index_nessus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", '404': "str", '500': "str", } @@ -202885,7 +202885,7 @@ async def index_nessus_get_without_preload_content( return response_data.response - def _index_nessus_get_serialize( + def _index_nec_get_serialize( self, page, limit, @@ -203053,7 +203053,7 @@ def _index_nessus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nessus', + resource_path='/v3/index/nec', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -203070,7 +203070,7 @@ def _index_nessus_get_serialize( @validate_call - async def index_netapp_get( + async def index_nessus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203108,10 +203108,10 @@ async def index_netapp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination: - """Return vulnerability data stored in index \"netapp\" + ) -> RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination: + """Return vulnerability data stored in index \"nessus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` :param page: set the page number of the response :type page: int @@ -203183,7 +203183,7 @@ async def index_netapp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netapp_get_serialize( + _param = self._index_nessus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -203215,7 +203215,7 @@ async def index_netapp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", '404': "str", '500': "str", } @@ -203231,7 +203231,7 @@ async def index_netapp_get( @validate_call - async def index_netapp_get_with_http_info( + async def index_nessus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203269,10 +203269,10 @@ async def index_netapp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination]: - """Return vulnerability data stored in index \"netapp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination]: + """Return vulnerability data stored in index \"nessus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` :param page: set the page number of the response :type page: int @@ -203344,7 +203344,7 @@ async def index_netapp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netapp_get_serialize( + _param = self._index_nessus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -203376,7 +203376,7 @@ async def index_netapp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", '404': "str", '500': "str", } @@ -203392,7 +203392,7 @@ async def index_netapp_get_with_http_info( @validate_call - async def index_netapp_get_without_preload_content( + async def index_nessus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203431,9 +203431,9 @@ async def index_netapp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netapp\" + """Return vulnerability data stored in index \"nessus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` :param page: set the page number of the response :type page: int @@ -203505,7 +203505,7 @@ async def index_netapp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netapp_get_serialize( + _param = self._index_nessus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -203537,7 +203537,7 @@ async def index_netapp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", '404': "str", '500': "str", } @@ -203548,7 +203548,7 @@ async def index_netapp_get_without_preload_content( return response_data.response - def _index_netapp_get_serialize( + def _index_nessus_get_serialize( self, page, limit, @@ -203716,7 +203716,7 @@ def _index_netapp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netapp', + resource_path='/v3/index/nessus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -203733,7 +203733,7 @@ def _index_netapp_get_serialize( @validate_call - async def index_netatalk_get( + async def index_netapp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203771,10 +203771,10 @@ async def index_netatalk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination: - """Return vulnerability data stored in index \"netatalk\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination: + """Return vulnerability data stored in index \"netapp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` :param page: set the page number of the response :type page: int @@ -203846,7 +203846,7 @@ async def index_netatalk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netatalk_get_serialize( + _param = self._index_netapp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -203878,7 +203878,7 @@ async def index_netatalk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", '404': "str", '500': "str", } @@ -203894,7 +203894,7 @@ async def index_netatalk_get( @validate_call - async def index_netatalk_get_with_http_info( + async def index_netapp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203932,10 +203932,10 @@ async def index_netatalk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination]: - """Return vulnerability data stored in index \"netatalk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination]: + """Return vulnerability data stored in index \"netapp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` :param page: set the page number of the response :type page: int @@ -204007,7 +204007,7 @@ async def index_netatalk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netatalk_get_serialize( + _param = self._index_netapp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204039,7 +204039,7 @@ async def index_netatalk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", '404': "str", '500': "str", } @@ -204055,7 +204055,7 @@ async def index_netatalk_get_with_http_info( @validate_call - async def index_netatalk_get_without_preload_content( + async def index_netapp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -204094,9 +204094,9 @@ async def index_netatalk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netatalk\" + """Return vulnerability data stored in index \"netapp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` :param page: set the page number of the response :type page: int @@ -204168,7 +204168,7 @@ async def index_netatalk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netatalk_get_serialize( + _param = self._index_netapp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204200,7 +204200,7 @@ async def index_netatalk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", '404': "str", '500': "str", } @@ -204211,7 +204211,7 @@ async def index_netatalk_get_without_preload_content( return response_data.response - def _index_netatalk_get_serialize( + def _index_netapp_get_serialize( self, page, limit, @@ -204379,7 +204379,7 @@ def _index_netatalk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netatalk', + resource_path='/v3/index/netapp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -204396,7 +204396,7 @@ def _index_netatalk_get_serialize( @validate_call - async def index_netgate_get( + async def index_netatalk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -204434,10 +204434,10 @@ async def index_netgate_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination: - """Return vulnerability data stored in index \"netgate\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination: + """Return vulnerability data stored in index \"netatalk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` :param page: set the page number of the response :type page: int @@ -204509,7 +204509,7 @@ async def index_netgate_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgate_get_serialize( + _param = self._index_netatalk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204541,7 +204541,7 @@ async def index_netgate_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", '404': "str", '500': "str", } @@ -204557,7 +204557,7 @@ async def index_netgate_get( @validate_call - async def index_netgate_get_with_http_info( + async def index_netatalk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -204595,10 +204595,10 @@ async def index_netgate_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination]: - """Return vulnerability data stored in index \"netgate\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination]: + """Return vulnerability data stored in index \"netatalk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` :param page: set the page number of the response :type page: int @@ -204670,7 +204670,7 @@ async def index_netgate_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgate_get_serialize( + _param = self._index_netatalk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204702,7 +204702,7 @@ async def index_netgate_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", '404': "str", '500': "str", } @@ -204718,7 +204718,7 @@ async def index_netgate_get_with_http_info( @validate_call - async def index_netgate_get_without_preload_content( + async def index_netatalk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -204757,9 +204757,9 @@ async def index_netgate_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netgate\" + """Return vulnerability data stored in index \"netatalk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` :param page: set the page number of the response :type page: int @@ -204831,7 +204831,7 @@ async def index_netgate_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgate_get_serialize( + _param = self._index_netatalk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204863,7 +204863,7 @@ async def index_netgate_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", '404': "str", '500': "str", } @@ -204874,7 +204874,7 @@ async def index_netgate_get_without_preload_content( return response_data.response - def _index_netgate_get_serialize( + def _index_netatalk_get_serialize( self, page, limit, @@ -205042,7 +205042,7 @@ def _index_netgate_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netgate', + resource_path='/v3/index/netatalk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -205059,7 +205059,7 @@ def _index_netgate_get_serialize( @validate_call - async def index_netgear_get( + async def index_netgate_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205097,10 +205097,10 @@ async def index_netgear_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination: - """Return vulnerability data stored in index \"netgear\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination: + """Return vulnerability data stored in index \"netgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` :param page: set the page number of the response :type page: int @@ -205172,7 +205172,7 @@ async def index_netgear_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgear_get_serialize( + _param = self._index_netgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -205204,7 +205204,7 @@ async def index_netgear_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", '404': "str", '500': "str", } @@ -205220,7 +205220,7 @@ async def index_netgear_get( @validate_call - async def index_netgear_get_with_http_info( + async def index_netgate_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205258,10 +205258,10 @@ async def index_netgear_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination]: - """Return vulnerability data stored in index \"netgear\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination]: + """Return vulnerability data stored in index \"netgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` :param page: set the page number of the response :type page: int @@ -205333,7 +205333,7 @@ async def index_netgear_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgear_get_serialize( + _param = self._index_netgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -205365,7 +205365,7 @@ async def index_netgear_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", '404': "str", '500': "str", } @@ -205381,7 +205381,7 @@ async def index_netgear_get_with_http_info( @validate_call - async def index_netgear_get_without_preload_content( + async def index_netgate_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205420,9 +205420,9 @@ async def index_netgear_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netgear\" + """Return vulnerability data stored in index \"netgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` :param page: set the page number of the response :type page: int @@ -205494,7 +205494,7 @@ async def index_netgear_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgear_get_serialize( + _param = self._index_netgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -205526,7 +205526,7 @@ async def index_netgear_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", '404': "str", '500': "str", } @@ -205537,7 +205537,7 @@ async def index_netgear_get_without_preload_content( return response_data.response - def _index_netgear_get_serialize( + def _index_netgate_get_serialize( self, page, limit, @@ -205705,7 +205705,7 @@ def _index_netgear_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netgear', + resource_path='/v3/index/netgate', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -205722,7 +205722,7 @@ def _index_netgear_get_serialize( @validate_call - async def index_netskope_get( + async def index_netgear_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205760,10 +205760,10 @@ async def index_netskope_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination: - """Return vulnerability data stored in index \"netskope\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination: + """Return vulnerability data stored in index \"netgear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` :param page: set the page number of the response :type page: int @@ -205835,7 +205835,7 @@ async def index_netskope_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netskope_get_serialize( + _param = self._index_netgear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -205867,7 +205867,7 @@ async def index_netskope_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", '404': "str", '500': "str", } @@ -205883,7 +205883,7 @@ async def index_netskope_get( @validate_call - async def index_netskope_get_with_http_info( + async def index_netgear_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205921,10 +205921,10 @@ async def index_netskope_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination]: - """Return vulnerability data stored in index \"netskope\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination]: + """Return vulnerability data stored in index \"netgear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` :param page: set the page number of the response :type page: int @@ -205996,7 +205996,7 @@ async def index_netskope_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netskope_get_serialize( + _param = self._index_netgear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206028,7 +206028,7 @@ async def index_netskope_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", '404': "str", '500': "str", } @@ -206044,7 +206044,7 @@ async def index_netskope_get_with_http_info( @validate_call - async def index_netskope_get_without_preload_content( + async def index_netgear_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -206083,9 +206083,9 @@ async def index_netskope_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netskope\" + """Return vulnerability data stored in index \"netgear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` :param page: set the page number of the response :type page: int @@ -206157,7 +206157,7 @@ async def index_netskope_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netskope_get_serialize( + _param = self._index_netgear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206189,7 +206189,7 @@ async def index_netskope_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", '404': "str", '500': "str", } @@ -206200,7 +206200,7 @@ async def index_netskope_get_without_preload_content( return response_data.response - def _index_netskope_get_serialize( + def _index_netgear_get_serialize( self, page, limit, @@ -206368,7 +206368,7 @@ def _index_netskope_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netskope', + resource_path='/v3/index/netgear', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -206385,7 +206385,7 @@ def _index_netskope_get_serialize( @validate_call - async def index_nexpose_get( + async def index_netskope_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -206423,10 +206423,10 @@ async def index_nexpose_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination: - """Return vulnerability data stored in index \"nexpose\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination: + """Return vulnerability data stored in index \"netskope\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` :param page: set the page number of the response :type page: int @@ -206498,7 +206498,7 @@ async def index_nexpose_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nexpose_get_serialize( + _param = self._index_netskope_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206530,7 +206530,7 @@ async def index_nexpose_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", '404': "str", '500': "str", } @@ -206546,7 +206546,7 @@ async def index_nexpose_get( @validate_call - async def index_nexpose_get_with_http_info( + async def index_netskope_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -206584,10 +206584,10 @@ async def index_nexpose_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination]: - """Return vulnerability data stored in index \"nexpose\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination]: + """Return vulnerability data stored in index \"netskope\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` :param page: set the page number of the response :type page: int @@ -206659,7 +206659,7 @@ async def index_nexpose_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nexpose_get_serialize( + _param = self._index_netskope_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206691,7 +206691,7 @@ async def index_nexpose_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", '404': "str", '500': "str", } @@ -206707,7 +206707,7 @@ async def index_nexpose_get_with_http_info( @validate_call - async def index_nexpose_get_without_preload_content( + async def index_netskope_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -206746,9 +206746,9 @@ async def index_nexpose_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nexpose\" + """Return vulnerability data stored in index \"netskope\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` :param page: set the page number of the response :type page: int @@ -206820,7 +206820,7 @@ async def index_nexpose_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nexpose_get_serialize( + _param = self._index_netskope_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206852,7 +206852,7 @@ async def index_nexpose_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", '404': "str", '500': "str", } @@ -206863,7 +206863,7 @@ async def index_nexpose_get_without_preload_content( return response_data.response - def _index_nexpose_get_serialize( + def _index_netskope_get_serialize( self, page, limit, @@ -207031,7 +207031,7 @@ def _index_nexpose_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nexpose', + resource_path='/v3/index/netskope', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -207048,7 +207048,7 @@ def _index_nexpose_get_serialize( @validate_call - async def index_nginx_get( + async def index_nexpose_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207086,10 +207086,10 @@ async def index_nginx_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"nginx\" + ) -> RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination: + """Return vulnerability data stored in index \"nexpose\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` :param page: set the page number of the response :type page: int @@ -207161,7 +207161,7 @@ async def index_nginx_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nginx_get_serialize( + _param = self._index_nexpose_get_serialize( page=page, limit=limit, cursor=cursor, @@ -207193,7 +207193,7 @@ async def index_nginx_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", '404': "str", '500': "str", } @@ -207209,7 +207209,7 @@ async def index_nginx_get( @validate_call - async def index_nginx_get_with_http_info( + async def index_nexpose_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207247,10 +207247,10 @@ async def index_nginx_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"nginx\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination]: + """Return vulnerability data stored in index \"nexpose\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` :param page: set the page number of the response :type page: int @@ -207322,7 +207322,7 @@ async def index_nginx_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nginx_get_serialize( + _param = self._index_nexpose_get_serialize( page=page, limit=limit, cursor=cursor, @@ -207354,7 +207354,7 @@ async def index_nginx_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", '404': "str", '500': "str", } @@ -207370,7 +207370,7 @@ async def index_nginx_get_with_http_info( @validate_call - async def index_nginx_get_without_preload_content( + async def index_nexpose_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207409,9 +207409,9 @@ async def index_nginx_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nginx\" + """Return vulnerability data stored in index \"nexpose\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` :param page: set the page number of the response :type page: int @@ -207483,7 +207483,7 @@ async def index_nginx_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nginx_get_serialize( + _param = self._index_nexpose_get_serialize( page=page, limit=limit, cursor=cursor, @@ -207515,7 +207515,7 @@ async def index_nginx_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", '404': "str", '500': "str", } @@ -207526,7 +207526,7 @@ async def index_nginx_get_without_preload_content( return response_data.response - def _index_nginx_get_serialize( + def _index_nexpose_get_serialize( self, page, limit, @@ -207694,7 +207694,7 @@ def _index_nginx_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nginx', + resource_path='/v3/index/nexpose', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -207711,7 +207711,7 @@ def _index_nginx_get_serialize( @validate_call - async def index_nhs_get( + async def index_nginx_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207749,10 +207749,10 @@ async def index_nhs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination: - """Return vulnerability data stored in index \"nhs\" + ) -> RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"nginx\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` :param page: set the page number of the response :type page: int @@ -207824,7 +207824,7 @@ async def index_nhs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nhs_get_serialize( + _param = self._index_nginx_get_serialize( page=page, limit=limit, cursor=cursor, @@ -207856,7 +207856,7 @@ async def index_nhs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -207872,7 +207872,7 @@ async def index_nhs_get( @validate_call - async def index_nhs_get_with_http_info( + async def index_nginx_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207910,10 +207910,10 @@ async def index_nhs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination]: - """Return vulnerability data stored in index \"nhs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"nginx\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` :param page: set the page number of the response :type page: int @@ -207985,7 +207985,7 @@ async def index_nhs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nhs_get_serialize( + _param = self._index_nginx_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208017,7 +208017,7 @@ async def index_nhs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -208033,7 +208033,7 @@ async def index_nhs_get_with_http_info( @validate_call - async def index_nhs_get_without_preload_content( + async def index_nginx_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -208072,9 +208072,9 @@ async def index_nhs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nhs\" + """Return vulnerability data stored in index \"nginx\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` :param page: set the page number of the response :type page: int @@ -208146,7 +208146,7 @@ async def index_nhs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nhs_get_serialize( + _param = self._index_nginx_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208178,7 +208178,7 @@ async def index_nhs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -208189,7 +208189,7 @@ async def index_nhs_get_without_preload_content( return response_data.response - def _index_nhs_get_serialize( + def _index_nginx_get_serialize( self, page, limit, @@ -208357,7 +208357,7 @@ def _index_nhs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nhs', + resource_path='/v3/index/nginx', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -208374,7 +208374,7 @@ def _index_nhs_get_serialize( @validate_call - async def index_ni_get( + async def index_nhs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -208412,10 +208412,10 @@ async def index_ni_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination: - """Return vulnerability data stored in index \"ni\" + ) -> RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination: + """Return vulnerability data stored in index \"nhs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` :param page: set the page number of the response :type page: int @@ -208487,7 +208487,7 @@ async def index_ni_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ni_get_serialize( + _param = self._index_nhs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208519,7 +208519,7 @@ async def index_ni_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", '404': "str", '500': "str", } @@ -208535,7 +208535,7 @@ async def index_ni_get( @validate_call - async def index_ni_get_with_http_info( + async def index_nhs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -208573,10 +208573,10 @@ async def index_ni_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination]: - """Return vulnerability data stored in index \"ni\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination]: + """Return vulnerability data stored in index \"nhs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` :param page: set the page number of the response :type page: int @@ -208648,7 +208648,7 @@ async def index_ni_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ni_get_serialize( + _param = self._index_nhs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208680,7 +208680,7 @@ async def index_ni_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", '404': "str", '500': "str", } @@ -208696,7 +208696,7 @@ async def index_ni_get_with_http_info( @validate_call - async def index_ni_get_without_preload_content( + async def index_nhs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -208735,9 +208735,9 @@ async def index_ni_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ni\" + """Return vulnerability data stored in index \"nhs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` :param page: set the page number of the response :type page: int @@ -208809,7 +208809,7 @@ async def index_ni_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ni_get_serialize( + _param = self._index_nhs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208841,7 +208841,7 @@ async def index_ni_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", '404': "str", '500': "str", } @@ -208852,7 +208852,7 @@ async def index_ni_get_without_preload_content( return response_data.response - def _index_ni_get_serialize( + def _index_nhs_get_serialize( self, page, limit, @@ -209020,7 +209020,7 @@ def _index_ni_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ni', + resource_path='/v3/index/nhs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -209037,7 +209037,7 @@ def _index_ni_get_serialize( @validate_call - async def index_nist_nvd2_cpematch_get( + async def index_ni_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209075,10 +209075,10 @@ async def index_nist_nvd2_cpematch_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination: - """Return vulnerability data stored in index \"nist-nvd2-cpematch\" + ) -> RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination: + """Return vulnerability data stored in index \"ni\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` :param page: set the page number of the response :type page: int @@ -209150,7 +209150,7 @@ async def index_nist_nvd2_cpematch_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_cpematch_get_serialize( + _param = self._index_ni_get_serialize( page=page, limit=limit, cursor=cursor, @@ -209182,7 +209182,7 @@ async def index_nist_nvd2_cpematch_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", '404': "str", '500': "str", } @@ -209198,7 +209198,7 @@ async def index_nist_nvd2_cpematch_get( @validate_call - async def index_nist_nvd2_cpematch_get_with_http_info( + async def index_ni_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209236,10 +209236,10 @@ async def index_nist_nvd2_cpematch_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination]: - """Return vulnerability data stored in index \"nist-nvd2-cpematch\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination]: + """Return vulnerability data stored in index \"ni\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` :param page: set the page number of the response :type page: int @@ -209311,7 +209311,7 @@ async def index_nist_nvd2_cpematch_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_cpematch_get_serialize( + _param = self._index_ni_get_serialize( page=page, limit=limit, cursor=cursor, @@ -209343,7 +209343,7 @@ async def index_nist_nvd2_cpematch_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", '404': "str", '500': "str", } @@ -209359,7 +209359,7 @@ async def index_nist_nvd2_cpematch_get_with_http_info( @validate_call - async def index_nist_nvd2_cpematch_get_without_preload_content( + async def index_ni_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209398,9 +209398,9 @@ async def index_nist_nvd2_cpematch_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nist-nvd2-cpematch\" + """Return vulnerability data stored in index \"ni\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` :param page: set the page number of the response :type page: int @@ -209472,7 +209472,7 @@ async def index_nist_nvd2_cpematch_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_cpematch_get_serialize( + _param = self._index_ni_get_serialize( page=page, limit=limit, cursor=cursor, @@ -209504,7 +209504,7 @@ async def index_nist_nvd2_cpematch_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", '404': "str", '500': "str", } @@ -209515,7 +209515,7 @@ async def index_nist_nvd2_cpematch_get_without_preload_content( return response_data.response - def _index_nist_nvd2_cpematch_get_serialize( + def _index_ni_get_serialize( self, page, limit, @@ -209683,7 +209683,7 @@ def _index_nist_nvd2_cpematch_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nist-nvd2-cpematch', + resource_path='/v3/index/ni', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -209700,7 +209700,7 @@ def _index_nist_nvd2_cpematch_get_serialize( @validate_call - async def index_nist_nvd2_get( + async def index_nist_nvd2_cpematch_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209738,10 +209738,10 @@ async def index_nist_nvd2_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination: - """Return vulnerability data stored in index \"nist-nvd2\" + ) -> RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination: + """Return vulnerability data stored in index \"nist-nvd2-cpematch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` :param page: set the page number of the response :type page: int @@ -209813,7 +209813,7 @@ async def index_nist_nvd2_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_get_serialize( + _param = self._index_nist_nvd2_cpematch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -209845,7 +209845,7 @@ async def index_nist_nvd2_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", '404': "str", '500': "str", } @@ -209861,7 +209861,7 @@ async def index_nist_nvd2_get( @validate_call - async def index_nist_nvd2_get_with_http_info( + async def index_nist_nvd2_cpematch_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209899,10 +209899,10 @@ async def index_nist_nvd2_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination]: - """Return vulnerability data stored in index \"nist-nvd2\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination]: + """Return vulnerability data stored in index \"nist-nvd2-cpematch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` :param page: set the page number of the response :type page: int @@ -209974,7 +209974,7 @@ async def index_nist_nvd2_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_get_serialize( + _param = self._index_nist_nvd2_cpematch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210006,7 +210006,7 @@ async def index_nist_nvd2_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", '404': "str", '500': "str", } @@ -210022,7 +210022,7 @@ async def index_nist_nvd2_get_with_http_info( @validate_call - async def index_nist_nvd2_get_without_preload_content( + async def index_nist_nvd2_cpematch_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -210061,9 +210061,9 @@ async def index_nist_nvd2_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nist-nvd2\" + """Return vulnerability data stored in index \"nist-nvd2-cpematch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` :param page: set the page number of the response :type page: int @@ -210135,7 +210135,7 @@ async def index_nist_nvd2_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_get_serialize( + _param = self._index_nist_nvd2_cpematch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210167,7 +210167,7 @@ async def index_nist_nvd2_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", '404': "str", '500': "str", } @@ -210178,7 +210178,7 @@ async def index_nist_nvd2_get_without_preload_content( return response_data.response - def _index_nist_nvd2_get_serialize( + def _index_nist_nvd2_cpematch_get_serialize( self, page, limit, @@ -210346,7 +210346,7 @@ def _index_nist_nvd2_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nist-nvd2', + resource_path='/v3/index/nist-nvd2-cpematch', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -210363,7 +210363,7 @@ def _index_nist_nvd2_get_serialize( @validate_call - async def index_nist_nvd2_sources_get( + async def index_nist_nvd2_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -210401,10 +210401,10 @@ async def index_nist_nvd2_sources_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination: - """Return vulnerability data stored in index \"nist-nvd2-sources\" + ) -> RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination: + """Return vulnerability data stored in index \"nist-nvd2\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` :param page: set the page number of the response :type page: int @@ -210476,7 +210476,7 @@ async def index_nist_nvd2_sources_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_sources_get_serialize( + _param = self._index_nist_nvd2_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210508,7 +210508,7 @@ async def index_nist_nvd2_sources_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", '404': "str", '500': "str", } @@ -210524,7 +210524,7 @@ async def index_nist_nvd2_sources_get( @validate_call - async def index_nist_nvd2_sources_get_with_http_info( + async def index_nist_nvd2_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -210562,10 +210562,10 @@ async def index_nist_nvd2_sources_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination]: - """Return vulnerability data stored in index \"nist-nvd2-sources\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination]: + """Return vulnerability data stored in index \"nist-nvd2\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` :param page: set the page number of the response :type page: int @@ -210637,7 +210637,7 @@ async def index_nist_nvd2_sources_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_sources_get_serialize( + _param = self._index_nist_nvd2_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210669,7 +210669,7 @@ async def index_nist_nvd2_sources_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", '404': "str", '500': "str", } @@ -210685,7 +210685,7 @@ async def index_nist_nvd2_sources_get_with_http_info( @validate_call - async def index_nist_nvd2_sources_get_without_preload_content( + async def index_nist_nvd2_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -210724,9 +210724,9 @@ async def index_nist_nvd2_sources_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nist-nvd2-sources\" + """Return vulnerability data stored in index \"nist-nvd2\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` :param page: set the page number of the response :type page: int @@ -210798,7 +210798,7 @@ async def index_nist_nvd2_sources_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_sources_get_serialize( + _param = self._index_nist_nvd2_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210830,7 +210830,7 @@ async def index_nist_nvd2_sources_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", '404': "str", '500': "str", } @@ -210841,7 +210841,7 @@ async def index_nist_nvd2_sources_get_without_preload_content( return response_data.response - def _index_nist_nvd2_sources_get_serialize( + def _index_nist_nvd2_get_serialize( self, page, limit, @@ -211009,7 +211009,7 @@ def _index_nist_nvd2_sources_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nist-nvd2-sources', + resource_path='/v3/index/nist-nvd2', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -211026,7 +211026,7 @@ def _index_nist_nvd2_sources_get_serialize( @validate_call - async def index_nist_nvd_get( + async def index_nist_nvd2_sources_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211064,10 +211064,10 @@ async def index_nist_nvd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiCveItemsPaginatePagination: - """Return vulnerability data stored in index \"nist-nvd\" + ) -> RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination: + """Return vulnerability data stored in index \"nist-nvd2-sources\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` :param page: set the page number of the response :type page: int @@ -211139,7 +211139,7 @@ async def index_nist_nvd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd_get_serialize( + _param = self._index_nist_nvd2_sources_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211171,7 +211171,7 @@ async def index_nist_nvd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", '404': "str", '500': "str", } @@ -211187,7 +211187,7 @@ async def index_nist_nvd_get( @validate_call - async def index_nist_nvd_get_with_http_info( + async def index_nist_nvd2_sources_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211225,10 +211225,10 @@ async def index_nist_nvd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiCveItemsPaginatePagination]: - """Return vulnerability data stored in index \"nist-nvd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination]: + """Return vulnerability data stored in index \"nist-nvd2-sources\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` :param page: set the page number of the response :type page: int @@ -211300,7 +211300,7 @@ async def index_nist_nvd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd_get_serialize( + _param = self._index_nist_nvd2_sources_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211332,7 +211332,7 @@ async def index_nist_nvd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", '404': "str", '500': "str", } @@ -211348,7 +211348,7 @@ async def index_nist_nvd_get_with_http_info( @validate_call - async def index_nist_nvd_get_without_preload_content( + async def index_nist_nvd2_sources_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211387,9 +211387,9 @@ async def index_nist_nvd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nist-nvd\" + """Return vulnerability data stored in index \"nist-nvd2-sources\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` :param page: set the page number of the response :type page: int @@ -211461,7 +211461,7 @@ async def index_nist_nvd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd_get_serialize( + _param = self._index_nist_nvd2_sources_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211493,7 +211493,7 @@ async def index_nist_nvd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", '404': "str", '500': "str", } @@ -211504,7 +211504,7 @@ async def index_nist_nvd_get_without_preload_content( return response_data.response - def _index_nist_nvd_get_serialize( + def _index_nist_nvd2_sources_get_serialize( self, page, limit, @@ -211672,7 +211672,7 @@ def _index_nist_nvd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nist-nvd', + resource_path='/v3/index/nist-nvd2-sources', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -211689,7 +211689,7 @@ def _index_nist_nvd_get_serialize( @validate_call - async def index_node_security_get( + async def index_nist_nvd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211727,10 +211727,10 @@ async def index_node_security_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination: - """Return vulnerability data stored in index \"node-security\" + ) -> RenderResponseWithMetadataArrayApiCveItemsPaginatePagination: + """Return vulnerability data stored in index \"nist-nvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` :param page: set the page number of the response :type page: int @@ -211802,7 +211802,7 @@ async def index_node_security_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_node_security_get_serialize( + _param = self._index_nist_nvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211834,7 +211834,7 @@ async def index_node_security_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", '404': "str", '500': "str", } @@ -211850,7 +211850,7 @@ async def index_node_security_get( @validate_call - async def index_node_security_get_with_http_info( + async def index_nist_nvd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211888,10 +211888,10 @@ async def index_node_security_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination]: - """Return vulnerability data stored in index \"node-security\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiCveItemsPaginatePagination]: + """Return vulnerability data stored in index \"nist-nvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` :param page: set the page number of the response :type page: int @@ -211963,7 +211963,7 @@ async def index_node_security_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_node_security_get_serialize( + _param = self._index_nist_nvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211995,7 +211995,7 @@ async def index_node_security_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", '404': "str", '500': "str", } @@ -212011,7 +212011,7 @@ async def index_node_security_get_with_http_info( @validate_call - async def index_node_security_get_without_preload_content( + async def index_nist_nvd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -212050,9 +212050,9 @@ async def index_node_security_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"node-security\" + """Return vulnerability data stored in index \"nist-nvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` :param page: set the page number of the response :type page: int @@ -212124,7 +212124,7 @@ async def index_node_security_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_node_security_get_serialize( + _param = self._index_nist_nvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -212156,7 +212156,7 @@ async def index_node_security_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", '404': "str", '500': "str", } @@ -212167,7 +212167,7 @@ async def index_node_security_get_without_preload_content( return response_data.response - def _index_node_security_get_serialize( + def _index_nist_nvd_get_serialize( self, page, limit, @@ -212335,7 +212335,7 @@ def _index_node_security_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/node-security', + resource_path='/v3/index/nist-nvd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -212352,7 +212352,7 @@ def _index_node_security_get_serialize( @validate_call - async def index_nodejs_get( + async def index_node_security_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -212390,10 +212390,10 @@ async def index_nodejs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination: - """Return vulnerability data stored in index \"nodejs\" + ) -> RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination: + """Return vulnerability data stored in index \"node-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` :param page: set the page number of the response :type page: int @@ -212465,7 +212465,7 @@ async def index_nodejs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nodejs_get_serialize( + _param = self._index_node_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -212497,7 +212497,7 @@ async def index_nodejs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", '404': "str", '500': "str", } @@ -212513,7 +212513,7 @@ async def index_nodejs_get( @validate_call - async def index_nodejs_get_with_http_info( + async def index_node_security_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -212551,10 +212551,10 @@ async def index_nodejs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination]: - """Return vulnerability data stored in index \"nodejs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination]: + """Return vulnerability data stored in index \"node-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` :param page: set the page number of the response :type page: int @@ -212626,7 +212626,7 @@ async def index_nodejs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nodejs_get_serialize( + _param = self._index_node_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -212658,7 +212658,7 @@ async def index_nodejs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", '404': "str", '500': "str", } @@ -212674,7 +212674,7 @@ async def index_nodejs_get_with_http_info( @validate_call - async def index_nodejs_get_without_preload_content( + async def index_node_security_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -212713,9 +212713,9 @@ async def index_nodejs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nodejs\" + """Return vulnerability data stored in index \"node-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` :param page: set the page number of the response :type page: int @@ -212787,7 +212787,7 @@ async def index_nodejs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nodejs_get_serialize( + _param = self._index_node_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -212819,7 +212819,7 @@ async def index_nodejs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", '404': "str", '500': "str", } @@ -212830,7 +212830,7 @@ async def index_nodejs_get_without_preload_content( return response_data.response - def _index_nodejs_get_serialize( + def _index_node_security_get_serialize( self, page, limit, @@ -212998,7 +212998,7 @@ def _index_nodejs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nodejs', + resource_path='/v3/index/node-security', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -213015,7 +213015,7 @@ def _index_nodejs_get_serialize( @validate_call - async def index_nokia_get( + async def index_nodejs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213053,10 +213053,10 @@ async def index_nokia_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination: - """Return vulnerability data stored in index \"nokia\" + ) -> RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination: + """Return vulnerability data stored in index \"nodejs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` :param page: set the page number of the response :type page: int @@ -213128,7 +213128,7 @@ async def index_nokia_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nokia_get_serialize( + _param = self._index_nodejs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213160,7 +213160,7 @@ async def index_nokia_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", '404': "str", '500': "str", } @@ -213176,7 +213176,7 @@ async def index_nokia_get( @validate_call - async def index_nokia_get_with_http_info( + async def index_nodejs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213214,10 +213214,10 @@ async def index_nokia_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination]: - """Return vulnerability data stored in index \"nokia\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination]: + """Return vulnerability data stored in index \"nodejs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` :param page: set the page number of the response :type page: int @@ -213289,7 +213289,7 @@ async def index_nokia_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nokia_get_serialize( + _param = self._index_nodejs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213321,7 +213321,7 @@ async def index_nokia_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", '404': "str", '500': "str", } @@ -213337,7 +213337,7 @@ async def index_nokia_get_with_http_info( @validate_call - async def index_nokia_get_without_preload_content( + async def index_nodejs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213376,9 +213376,9 @@ async def index_nokia_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nokia\" + """Return vulnerability data stored in index \"nodejs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` :param page: set the page number of the response :type page: int @@ -213450,7 +213450,7 @@ async def index_nokia_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nokia_get_serialize( + _param = self._index_nodejs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213482,7 +213482,7 @@ async def index_nokia_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", '404': "str", '500': "str", } @@ -213493,7 +213493,7 @@ async def index_nokia_get_without_preload_content( return response_data.response - def _index_nokia_get_serialize( + def _index_nodejs_get_serialize( self, page, limit, @@ -213661,7 +213661,7 @@ def _index_nokia_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nokia', + resource_path='/v3/index/nodejs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -213678,7 +213678,7 @@ def _index_nokia_get_serialize( @validate_call - async def index_notepadplusplus_get( + async def index_nokia_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213716,10 +213716,10 @@ async def index_notepadplusplus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination: - """Return vulnerability data stored in index \"notepadplusplus\" + ) -> RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination: + """Return vulnerability data stored in index \"nokia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` :param page: set the page number of the response :type page: int @@ -213791,7 +213791,7 @@ async def index_notepadplusplus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_notepadplusplus_get_serialize( + _param = self._index_nokia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213823,7 +213823,7 @@ async def index_notepadplusplus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", '404': "str", '500': "str", } @@ -213839,7 +213839,7 @@ async def index_notepadplusplus_get( @validate_call - async def index_notepadplusplus_get_with_http_info( + async def index_nokia_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213877,10 +213877,10 @@ async def index_notepadplusplus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination]: - """Return vulnerability data stored in index \"notepadplusplus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination]: + """Return vulnerability data stored in index \"nokia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` :param page: set the page number of the response :type page: int @@ -213952,7 +213952,7 @@ async def index_notepadplusplus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_notepadplusplus_get_serialize( + _param = self._index_nokia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213984,7 +213984,7 @@ async def index_notepadplusplus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", '404': "str", '500': "str", } @@ -214000,7 +214000,7 @@ async def index_notepadplusplus_get_with_http_info( @validate_call - async def index_notepadplusplus_get_without_preload_content( + async def index_nokia_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -214039,9 +214039,9 @@ async def index_notepadplusplus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"notepadplusplus\" + """Return vulnerability data stored in index \"nokia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` :param page: set the page number of the response :type page: int @@ -214113,7 +214113,7 @@ async def index_notepadplusplus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_notepadplusplus_get_serialize( + _param = self._index_nokia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -214145,7 +214145,7 @@ async def index_notepadplusplus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", '404': "str", '500': "str", } @@ -214156,7 +214156,7 @@ async def index_notepadplusplus_get_without_preload_content( return response_data.response - def _index_notepadplusplus_get_serialize( + def _index_nokia_get_serialize( self, page, limit, @@ -214324,7 +214324,7 @@ def _index_notepadplusplus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/notepadplusplus', + resource_path='/v3/index/nokia', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -214341,7 +214341,7 @@ def _index_notepadplusplus_get_serialize( @validate_call - async def index_nozomi_get( + async def index_notepadplusplus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -214379,10 +214379,10 @@ async def index_nozomi_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination: - """Return vulnerability data stored in index \"nozomi\" + ) -> RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination: + """Return vulnerability data stored in index \"notepadplusplus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` :param page: set the page number of the response :type page: int @@ -214454,7 +214454,7 @@ async def index_nozomi_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nozomi_get_serialize( + _param = self._index_notepadplusplus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -214486,7 +214486,7 @@ async def index_nozomi_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", '404': "str", '500': "str", } @@ -214502,7 +214502,7 @@ async def index_nozomi_get( @validate_call - async def index_nozomi_get_with_http_info( + async def index_notepadplusplus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -214540,10 +214540,10 @@ async def index_nozomi_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination]: - """Return vulnerability data stored in index \"nozomi\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination]: + """Return vulnerability data stored in index \"notepadplusplus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` :param page: set the page number of the response :type page: int @@ -214615,7 +214615,7 @@ async def index_nozomi_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nozomi_get_serialize( + _param = self._index_notepadplusplus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -214647,7 +214647,7 @@ async def index_nozomi_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", '404': "str", '500': "str", } @@ -214663,7 +214663,7 @@ async def index_nozomi_get_with_http_info( @validate_call - async def index_nozomi_get_without_preload_content( + async def index_notepadplusplus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -214702,9 +214702,9 @@ async def index_nozomi_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nozomi\" + """Return vulnerability data stored in index \"notepadplusplus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` :param page: set the page number of the response :type page: int @@ -214776,7 +214776,7 @@ async def index_nozomi_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nozomi_get_serialize( + _param = self._index_notepadplusplus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -214808,7 +214808,7 @@ async def index_nozomi_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", '404': "str", '500': "str", } @@ -214819,7 +214819,7 @@ async def index_nozomi_get_without_preload_content( return response_data.response - def _index_nozomi_get_serialize( + def _index_notepadplusplus_get_serialize( self, page, limit, @@ -214987,7 +214987,7 @@ def _index_nozomi_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nozomi', + resource_path='/v3/index/notepadplusplus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -215004,7 +215004,7 @@ def _index_nozomi_get_serialize( @validate_call - async def index_npm_get( + async def index_nozomi_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215042,10 +215042,10 @@ async def index_npm_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"npm\" + ) -> RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination: + """Return vulnerability data stored in index \"nozomi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` :param page: set the page number of the response :type page: int @@ -215117,7 +215117,7 @@ async def index_npm_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_npm_get_serialize( + _param = self._index_nozomi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215149,7 +215149,7 @@ async def index_npm_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", '404': "str", '500': "str", } @@ -215165,7 +215165,7 @@ async def index_npm_get( @validate_call - async def index_npm_get_with_http_info( + async def index_nozomi_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215203,10 +215203,10 @@ async def index_npm_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"npm\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination]: + """Return vulnerability data stored in index \"nozomi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` :param page: set the page number of the response :type page: int @@ -215278,7 +215278,7 @@ async def index_npm_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_npm_get_serialize( + _param = self._index_nozomi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215310,7 +215310,7 @@ async def index_npm_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", '404': "str", '500': "str", } @@ -215326,7 +215326,7 @@ async def index_npm_get_with_http_info( @validate_call - async def index_npm_get_without_preload_content( + async def index_nozomi_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215365,9 +215365,9 @@ async def index_npm_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"npm\" + """Return vulnerability data stored in index \"nozomi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` :param page: set the page number of the response :type page: int @@ -215439,7 +215439,7 @@ async def index_npm_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_npm_get_serialize( + _param = self._index_nozomi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215471,7 +215471,7 @@ async def index_npm_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", '404': "str", '500': "str", } @@ -215482,7 +215482,7 @@ async def index_npm_get_without_preload_content( return response_data.response - def _index_npm_get_serialize( + def _index_nozomi_get_serialize( self, page, limit, @@ -215650,7 +215650,7 @@ def _index_npm_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/npm', + resource_path='/v3/index/nozomi', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -215667,7 +215667,7 @@ def _index_npm_get_serialize( @validate_call - async def index_ntp_get( + async def index_npm_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215705,10 +215705,10 @@ async def index_ntp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination: - """Return vulnerability data stored in index \"ntp\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"npm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` :param page: set the page number of the response :type page: int @@ -215780,7 +215780,7 @@ async def index_ntp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ntp_get_serialize( + _param = self._index_npm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215812,7 +215812,7 @@ async def index_ntp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -215828,7 +215828,7 @@ async def index_ntp_get( @validate_call - async def index_ntp_get_with_http_info( + async def index_npm_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215866,10 +215866,10 @@ async def index_ntp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination]: - """Return vulnerability data stored in index \"ntp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"npm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` :param page: set the page number of the response :type page: int @@ -215941,7 +215941,7 @@ async def index_ntp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ntp_get_serialize( + _param = self._index_npm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215973,7 +215973,7 @@ async def index_ntp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -215989,7 +215989,7 @@ async def index_ntp_get_with_http_info( @validate_call - async def index_ntp_get_without_preload_content( + async def index_npm_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -216028,9 +216028,9 @@ async def index_ntp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ntp\" + """Return vulnerability data stored in index \"npm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` :param page: set the page number of the response :type page: int @@ -216102,7 +216102,7 @@ async def index_ntp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ntp_get_serialize( + _param = self._index_npm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -216134,7 +216134,7 @@ async def index_ntp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -216145,7 +216145,7 @@ async def index_ntp_get_without_preload_content( return response_data.response - def _index_ntp_get_serialize( + def _index_npm_get_serialize( self, page, limit, @@ -216313,7 +216313,7 @@ def _index_ntp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ntp', + resource_path='/v3/index/npm', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -216330,7 +216330,7 @@ def _index_ntp_get_serialize( @validate_call - async def index_nuclei_get( + async def index_ntp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -216368,10 +216368,10 @@ async def index_nuclei_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination: - """Return vulnerability data stored in index \"nuclei\" + ) -> RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination: + """Return vulnerability data stored in index \"ntp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` :param page: set the page number of the response :type page: int @@ -216443,7 +216443,7 @@ async def index_nuclei_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuclei_get_serialize( + _param = self._index_ntp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -216475,7 +216475,7 @@ async def index_nuclei_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", '404': "str", '500': "str", } @@ -216491,7 +216491,7 @@ async def index_nuclei_get( @validate_call - async def index_nuclei_get_with_http_info( + async def index_ntp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -216529,10 +216529,10 @@ async def index_nuclei_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination]: - """Return vulnerability data stored in index \"nuclei\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination]: + """Return vulnerability data stored in index \"ntp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` :param page: set the page number of the response :type page: int @@ -216604,7 +216604,7 @@ async def index_nuclei_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuclei_get_serialize( + _param = self._index_ntp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -216636,7 +216636,7 @@ async def index_nuclei_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", '404': "str", '500': "str", } @@ -216652,7 +216652,7 @@ async def index_nuclei_get_with_http_info( @validate_call - async def index_nuclei_get_without_preload_content( + async def index_ntp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -216691,9 +216691,9 @@ async def index_nuclei_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nuclei\" + """Return vulnerability data stored in index \"ntp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` :param page: set the page number of the response :type page: int @@ -216765,7 +216765,7 @@ async def index_nuclei_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuclei_get_serialize( + _param = self._index_ntp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -216797,7 +216797,7 @@ async def index_nuclei_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", '404': "str", '500': "str", } @@ -216808,7 +216808,7 @@ async def index_nuclei_get_without_preload_content( return response_data.response - def _index_nuclei_get_serialize( + def _index_ntp_get_serialize( self, page, limit, @@ -216976,7 +216976,7 @@ def _index_nuclei_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nuclei', + resource_path='/v3/index/ntp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -216993,7 +216993,7 @@ def _index_nuclei_get_serialize( @validate_call - async def index_nuget_get( + async def index_nuclei_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217031,10 +217031,10 @@ async def index_nuget_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"nuget\" + ) -> RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination: + """Return vulnerability data stored in index \"nuclei\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` :param page: set the page number of the response :type page: int @@ -217106,7 +217106,7 @@ async def index_nuget_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuget_get_serialize( + _param = self._index_nuclei_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217138,7 +217138,7 @@ async def index_nuget_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", '404': "str", '500': "str", } @@ -217154,7 +217154,7 @@ async def index_nuget_get( @validate_call - async def index_nuget_get_with_http_info( + async def index_nuclei_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217192,10 +217192,10 @@ async def index_nuget_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"nuget\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination]: + """Return vulnerability data stored in index \"nuclei\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` :param page: set the page number of the response :type page: int @@ -217267,7 +217267,7 @@ async def index_nuget_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuget_get_serialize( + _param = self._index_nuclei_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217299,7 +217299,7 @@ async def index_nuget_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", '404': "str", '500': "str", } @@ -217315,7 +217315,7 @@ async def index_nuget_get_with_http_info( @validate_call - async def index_nuget_get_without_preload_content( + async def index_nuclei_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217354,9 +217354,9 @@ async def index_nuget_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nuget\" + """Return vulnerability data stored in index \"nuclei\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` :param page: set the page number of the response :type page: int @@ -217428,7 +217428,7 @@ async def index_nuget_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuget_get_serialize( + _param = self._index_nuclei_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217460,7 +217460,7 @@ async def index_nuget_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", '404': "str", '500': "str", } @@ -217471,7 +217471,7 @@ async def index_nuget_get_without_preload_content( return response_data.response - def _index_nuget_get_serialize( + def _index_nuclei_get_serialize( self, page, limit, @@ -217639,7 +217639,7 @@ def _index_nuget_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nuget', + resource_path='/v3/index/nuclei', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -217656,7 +217656,7 @@ def _index_nuget_get_serialize( @validate_call - async def index_nvd_cpe_dictionary_get( + async def index_nuget_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217694,10 +217694,10 @@ async def index_nvd_cpe_dictionary_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination: - """Return vulnerability data stored in index \"nvd-cpe-dictionary\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"nuget\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` :param page: set the page number of the response :type page: int @@ -217769,7 +217769,7 @@ async def index_nvd_cpe_dictionary_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvd_cpe_dictionary_get_serialize( + _param = self._index_nuget_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217801,7 +217801,7 @@ async def index_nvd_cpe_dictionary_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -217817,7 +217817,7 @@ async def index_nvd_cpe_dictionary_get( @validate_call - async def index_nvd_cpe_dictionary_get_with_http_info( + async def index_nuget_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217855,10 +217855,10 @@ async def index_nvd_cpe_dictionary_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination]: - """Return vulnerability data stored in index \"nvd-cpe-dictionary\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"nuget\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` :param page: set the page number of the response :type page: int @@ -217930,7 +217930,7 @@ async def index_nvd_cpe_dictionary_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvd_cpe_dictionary_get_serialize( + _param = self._index_nuget_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217962,7 +217962,7 @@ async def index_nvd_cpe_dictionary_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -217978,7 +217978,7 @@ async def index_nvd_cpe_dictionary_get_with_http_info( @validate_call - async def index_nvd_cpe_dictionary_get_without_preload_content( + async def index_nuget_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -218017,9 +218017,9 @@ async def index_nvd_cpe_dictionary_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nvd-cpe-dictionary\" + """Return vulnerability data stored in index \"nuget\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` :param page: set the page number of the response :type page: int @@ -218091,7 +218091,7 @@ async def index_nvd_cpe_dictionary_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvd_cpe_dictionary_get_serialize( + _param = self._index_nuget_get_serialize( page=page, limit=limit, cursor=cursor, @@ -218123,7 +218123,7 @@ async def index_nvd_cpe_dictionary_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -218134,7 +218134,7 @@ async def index_nvd_cpe_dictionary_get_without_preload_content( return response_data.response - def _index_nvd_cpe_dictionary_get_serialize( + def _index_nuget_get_serialize( self, page, limit, @@ -218302,7 +218302,7 @@ def _index_nvd_cpe_dictionary_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nvd-cpe-dictionary', + resource_path='/v3/index/nuget', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -218319,7 +218319,7 @@ def _index_nvd_cpe_dictionary_get_serialize( @validate_call - async def index_nvidia_get( + async def index_nvd_cpe_dictionary_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -218357,10 +218357,10 @@ async def index_nvidia_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination: - """Return vulnerability data stored in index \"nvidia\" + ) -> RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination: + """Return vulnerability data stored in index \"nvd-cpe-dictionary\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` :param page: set the page number of the response :type page: int @@ -218432,7 +218432,7 @@ async def index_nvidia_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvidia_get_serialize( + _param = self._index_nvd_cpe_dictionary_get_serialize( page=page, limit=limit, cursor=cursor, @@ -218464,7 +218464,7 @@ async def index_nvidia_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", '404': "str", '500': "str", } @@ -218480,7 +218480,7 @@ async def index_nvidia_get( @validate_call - async def index_nvidia_get_with_http_info( + async def index_nvd_cpe_dictionary_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -218518,10 +218518,10 @@ async def index_nvidia_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination]: - """Return vulnerability data stored in index \"nvidia\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination]: + """Return vulnerability data stored in index \"nvd-cpe-dictionary\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` :param page: set the page number of the response :type page: int @@ -218593,7 +218593,7 @@ async def index_nvidia_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvidia_get_serialize( + _param = self._index_nvd_cpe_dictionary_get_serialize( page=page, limit=limit, cursor=cursor, @@ -218625,7 +218625,7 @@ async def index_nvidia_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", '404': "str", '500': "str", } @@ -218641,7 +218641,7 @@ async def index_nvidia_get_with_http_info( @validate_call - async def index_nvidia_get_without_preload_content( + async def index_nvd_cpe_dictionary_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -218680,9 +218680,9 @@ async def index_nvidia_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nvidia\" + """Return vulnerability data stored in index \"nvd-cpe-dictionary\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` :param page: set the page number of the response :type page: int @@ -218754,7 +218754,7 @@ async def index_nvidia_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvidia_get_serialize( + _param = self._index_nvd_cpe_dictionary_get_serialize( page=page, limit=limit, cursor=cursor, @@ -218786,7 +218786,7 @@ async def index_nvidia_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", '404': "str", '500': "str", } @@ -218797,7 +218797,7 @@ async def index_nvidia_get_without_preload_content( return response_data.response - def _index_nvidia_get_serialize( + def _index_nvd_cpe_dictionary_get_serialize( self, page, limit, @@ -218965,7 +218965,7 @@ def _index_nvidia_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nvidia', + resource_path='/v3/index/nvd-cpe-dictionary', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -218982,7 +218982,7 @@ def _index_nvidia_get_serialize( @validate_call - async def index_nz_advisories_get( + async def index_nvidia_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219020,10 +219020,10 @@ async def index_nz_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"nz-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination: + """Return vulnerability data stored in index \"nvidia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` :param page: set the page number of the response :type page: int @@ -219095,7 +219095,7 @@ async def index_nz_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nz_advisories_get_serialize( + _param = self._index_nvidia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219127,7 +219127,7 @@ async def index_nz_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", '404': "str", '500': "str", } @@ -219143,7 +219143,7 @@ async def index_nz_advisories_get( @validate_call - async def index_nz_advisories_get_with_http_info( + async def index_nvidia_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219181,10 +219181,10 @@ async def index_nz_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"nz-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination]: + """Return vulnerability data stored in index \"nvidia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` :param page: set the page number of the response :type page: int @@ -219256,7 +219256,7 @@ async def index_nz_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nz_advisories_get_serialize( + _param = self._index_nvidia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219288,7 +219288,7 @@ async def index_nz_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", '404': "str", '500': "str", } @@ -219304,7 +219304,7 @@ async def index_nz_advisories_get_with_http_info( @validate_call - async def index_nz_advisories_get_without_preload_content( + async def index_nvidia_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219343,9 +219343,9 @@ async def index_nz_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nz-advisories\" + """Return vulnerability data stored in index \"nvidia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` :param page: set the page number of the response :type page: int @@ -219417,7 +219417,7 @@ async def index_nz_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nz_advisories_get_serialize( + _param = self._index_nvidia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219449,7 +219449,7 @@ async def index_nz_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", '404': "str", '500': "str", } @@ -219460,7 +219460,7 @@ async def index_nz_advisories_get_without_preload_content( return response_data.response - def _index_nz_advisories_get_serialize( + def _index_nvidia_get_serialize( self, page, limit, @@ -219628,7 +219628,7 @@ def _index_nz_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nz-advisories', + resource_path='/v3/index/nvidia', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -219645,7 +219645,7 @@ def _index_nz_advisories_get_serialize( @validate_call - async def index_octopus_deploy_get( + async def index_nz_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219683,10 +219683,10 @@ async def index_octopus_deploy_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination: - """Return vulnerability data stored in index \"octopus-deploy\" + ) -> RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"nz-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -219758,7 +219758,7 @@ async def index_octopus_deploy_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_octopus_deploy_get_serialize( + _param = self._index_nz_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219790,7 +219790,7 @@ async def index_octopus_deploy_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -219806,7 +219806,7 @@ async def index_octopus_deploy_get( @validate_call - async def index_octopus_deploy_get_with_http_info( + async def index_nz_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219844,10 +219844,10 @@ async def index_octopus_deploy_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination]: - """Return vulnerability data stored in index \"octopus-deploy\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"nz-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -219919,7 +219919,7 @@ async def index_octopus_deploy_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_octopus_deploy_get_serialize( + _param = self._index_nz_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219951,7 +219951,7 @@ async def index_octopus_deploy_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -219967,7 +219967,7 @@ async def index_octopus_deploy_get_with_http_info( @validate_call - async def index_octopus_deploy_get_without_preload_content( + async def index_nz_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -220006,9 +220006,9 @@ async def index_octopus_deploy_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"octopus-deploy\" + """Return vulnerability data stored in index \"nz-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -220080,7 +220080,7 @@ async def index_octopus_deploy_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_octopus_deploy_get_serialize( + _param = self._index_nz_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -220112,7 +220112,7 @@ async def index_octopus_deploy_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -220123,7 +220123,7 @@ async def index_octopus_deploy_get_without_preload_content( return response_data.response - def _index_octopus_deploy_get_serialize( + def _index_nz_advisories_get_serialize( self, page, limit, @@ -220291,7 +220291,7 @@ def _index_octopus_deploy_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/octopus-deploy', + resource_path='/v3/index/nz-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -220308,7 +220308,7 @@ def _index_octopus_deploy_get_serialize( @validate_call - async def index_okta_get( + async def index_octopus_deploy_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -220346,10 +220346,10 @@ async def index_okta_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination: - """Return vulnerability data stored in index \"okta\" + ) -> RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination: + """Return vulnerability data stored in index \"octopus-deploy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` :param page: set the page number of the response :type page: int @@ -220421,7 +220421,7 @@ async def index_okta_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_okta_get_serialize( + _param = self._index_octopus_deploy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -220453,7 +220453,7 @@ async def index_okta_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", '404': "str", '500': "str", } @@ -220469,7 +220469,7 @@ async def index_okta_get( @validate_call - async def index_okta_get_with_http_info( + async def index_octopus_deploy_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -220507,10 +220507,10 @@ async def index_okta_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination]: - """Return vulnerability data stored in index \"okta\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination]: + """Return vulnerability data stored in index \"octopus-deploy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` :param page: set the page number of the response :type page: int @@ -220582,7 +220582,7 @@ async def index_okta_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_okta_get_serialize( + _param = self._index_octopus_deploy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -220614,7 +220614,7 @@ async def index_okta_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", '404': "str", '500': "str", } @@ -220630,7 +220630,7 @@ async def index_okta_get_with_http_info( @validate_call - async def index_okta_get_without_preload_content( + async def index_octopus_deploy_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -220669,9 +220669,9 @@ async def index_okta_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"okta\" + """Return vulnerability data stored in index \"octopus-deploy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` :param page: set the page number of the response :type page: int @@ -220743,7 +220743,7 @@ async def index_okta_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_okta_get_serialize( + _param = self._index_octopus_deploy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -220775,7 +220775,7 @@ async def index_okta_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", '404': "str", '500': "str", } @@ -220786,7 +220786,7 @@ async def index_okta_get_without_preload_content( return response_data.response - def _index_okta_get_serialize( + def _index_octopus_deploy_get_serialize( self, page, limit, @@ -220954,7 +220954,7 @@ def _index_okta_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/okta', + resource_path='/v3/index/octopus-deploy', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -220971,7 +220971,7 @@ def _index_okta_get_serialize( @validate_call - async def index_omron_eol_get( + async def index_okta_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221009,10 +221009,10 @@ async def index_omron_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: - """Return vulnerability data stored in index \"omron-eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination: + """Return vulnerability data stored in index \"okta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` :param page: set the page number of the response :type page: int @@ -221084,7 +221084,7 @@ async def index_omron_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_eol_get_serialize( + _param = self._index_okta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221116,7 +221116,7 @@ async def index_omron_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", '404': "str", '500': "str", } @@ -221132,7 +221132,7 @@ async def index_omron_eol_get( @validate_call - async def index_omron_eol_get_with_http_info( + async def index_okta_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221170,10 +221170,10 @@ async def index_omron_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: - """Return vulnerability data stored in index \"omron-eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination]: + """Return vulnerability data stored in index \"okta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` :param page: set the page number of the response :type page: int @@ -221245,7 +221245,7 @@ async def index_omron_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_eol_get_serialize( + _param = self._index_okta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221277,7 +221277,7 @@ async def index_omron_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", '404': "str", '500': "str", } @@ -221293,7 +221293,7 @@ async def index_omron_eol_get_with_http_info( @validate_call - async def index_omron_eol_get_without_preload_content( + async def index_okta_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221332,9 +221332,9 @@ async def index_omron_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"omron-eol\" + """Return vulnerability data stored in index \"okta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` :param page: set the page number of the response :type page: int @@ -221406,7 +221406,7 @@ async def index_omron_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_eol_get_serialize( + _param = self._index_okta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221438,7 +221438,7 @@ async def index_omron_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", '404': "str", '500': "str", } @@ -221449,7 +221449,7 @@ async def index_omron_eol_get_without_preload_content( return response_data.response - def _index_omron_eol_get_serialize( + def _index_okta_get_serialize( self, page, limit, @@ -221617,7 +221617,7 @@ def _index_omron_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/omron-eol', + resource_path='/v3/index/okta', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -221634,7 +221634,7 @@ def _index_omron_eol_get_serialize( @validate_call - async def index_omron_get( + async def index_omron_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221672,10 +221672,10 @@ async def index_omron_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination: - """Return vulnerability data stored in index \"omron\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: + """Return vulnerability data stored in index \"omron-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` :param page: set the page number of the response :type page: int @@ -221747,7 +221747,7 @@ async def index_omron_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_get_serialize( + _param = self._index_omron_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221779,7 +221779,7 @@ async def index_omron_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -221795,7 +221795,7 @@ async def index_omron_get( @validate_call - async def index_omron_get_with_http_info( + async def index_omron_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221833,10 +221833,10 @@ async def index_omron_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination]: - """Return vulnerability data stored in index \"omron\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: + """Return vulnerability data stored in index \"omron-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` :param page: set the page number of the response :type page: int @@ -221908,7 +221908,7 @@ async def index_omron_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_get_serialize( + _param = self._index_omron_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221940,7 +221940,7 @@ async def index_omron_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -221956,7 +221956,7 @@ async def index_omron_get_with_http_info( @validate_call - async def index_omron_get_without_preload_content( + async def index_omron_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221995,9 +221995,9 @@ async def index_omron_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"omron\" + """Return vulnerability data stored in index \"omron-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` :param page: set the page number of the response :type page: int @@ -222069,7 +222069,7 @@ async def index_omron_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_get_serialize( + _param = self._index_omron_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -222101,7 +222101,7 @@ async def index_omron_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -222112,7 +222112,7 @@ async def index_omron_get_without_preload_content( return response_data.response - def _index_omron_get_serialize( + def _index_omron_eol_get_serialize( self, page, limit, @@ -222280,7 +222280,7 @@ def _index_omron_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/omron', + resource_path='/v3/index/omron-eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -222297,7 +222297,7 @@ def _index_omron_get_serialize( @validate_call - async def index_one_e_get( + async def index_omron_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -222335,10 +222335,10 @@ async def index_one_e_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination: - """Return vulnerability data stored in index \"one-e\" + ) -> RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination: + """Return vulnerability data stored in index \"omron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` :param page: set the page number of the response :type page: int @@ -222410,7 +222410,7 @@ async def index_one_e_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_one_e_get_serialize( + _param = self._index_omron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -222442,7 +222442,7 @@ async def index_one_e_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", '404': "str", '500': "str", } @@ -222458,7 +222458,7 @@ async def index_one_e_get( @validate_call - async def index_one_e_get_with_http_info( + async def index_omron_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -222496,10 +222496,10 @@ async def index_one_e_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination]: - """Return vulnerability data stored in index \"one-e\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination]: + """Return vulnerability data stored in index \"omron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` :param page: set the page number of the response :type page: int @@ -222571,7 +222571,7 @@ async def index_one_e_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_one_e_get_serialize( + _param = self._index_omron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -222603,7 +222603,7 @@ async def index_one_e_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", '404': "str", '500': "str", } @@ -222619,7 +222619,7 @@ async def index_one_e_get_with_http_info( @validate_call - async def index_one_e_get_without_preload_content( + async def index_omron_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -222658,9 +222658,9 @@ async def index_one_e_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"one-e\" + """Return vulnerability data stored in index \"omron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` :param page: set the page number of the response :type page: int @@ -222732,7 +222732,7 @@ async def index_one_e_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_one_e_get_serialize( + _param = self._index_omron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -222764,7 +222764,7 @@ async def index_one_e_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", '404': "str", '500': "str", } @@ -222775,7 +222775,7 @@ async def index_one_e_get_without_preload_content( return response_data.response - def _index_one_e_get_serialize( + def _index_omron_get_serialize( self, page, limit, @@ -222943,7 +222943,7 @@ def _index_one_e_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/one-e', + resource_path='/v3/index/omron', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -222960,7 +222960,7 @@ def _index_one_e_get_serialize( @validate_call - async def index_opam_get( + async def index_one_e_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -222998,10 +222998,10 @@ async def index_opam_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"opam\" + ) -> RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination: + """Return vulnerability data stored in index \"one-e\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` :param page: set the page number of the response :type page: int @@ -223073,7 +223073,7 @@ async def index_opam_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opam_get_serialize( + _param = self._index_one_e_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223105,7 +223105,7 @@ async def index_opam_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", '404': "str", '500': "str", } @@ -223121,7 +223121,7 @@ async def index_opam_get( @validate_call - async def index_opam_get_with_http_info( + async def index_one_e_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223159,10 +223159,10 @@ async def index_opam_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"opam\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination]: + """Return vulnerability data stored in index \"one-e\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` :param page: set the page number of the response :type page: int @@ -223234,7 +223234,7 @@ async def index_opam_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opam_get_serialize( + _param = self._index_one_e_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223266,7 +223266,7 @@ async def index_opam_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", '404': "str", '500': "str", } @@ -223282,7 +223282,7 @@ async def index_opam_get_with_http_info( @validate_call - async def index_opam_get_without_preload_content( + async def index_one_e_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223321,9 +223321,9 @@ async def index_opam_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"opam\" + """Return vulnerability data stored in index \"one-e\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` :param page: set the page number of the response :type page: int @@ -223395,7 +223395,7 @@ async def index_opam_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opam_get_serialize( + _param = self._index_one_e_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223427,7 +223427,7 @@ async def index_opam_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", '404': "str", '500': "str", } @@ -223438,7 +223438,7 @@ async def index_opam_get_without_preload_content( return response_data.response - def _index_opam_get_serialize( + def _index_one_e_get_serialize( self, page, limit, @@ -223606,7 +223606,7 @@ def _index_opam_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/opam', + resource_path='/v3/index/one-e', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -223623,7 +223623,7 @@ def _index_opam_get_serialize( @validate_call - async def index_opc_foundation_get( + async def index_opam_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223661,10 +223661,10 @@ async def index_opc_foundation_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"opc-foundation\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"opam\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` :param page: set the page number of the response :type page: int @@ -223736,7 +223736,7 @@ async def index_opc_foundation_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opc_foundation_get_serialize( + _param = self._index_opam_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223768,7 +223768,7 @@ async def index_opc_foundation_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -223784,7 +223784,7 @@ async def index_opc_foundation_get( @validate_call - async def index_opc_foundation_get_with_http_info( + async def index_opam_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223822,10 +223822,10 @@ async def index_opc_foundation_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"opc-foundation\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"opam\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` :param page: set the page number of the response :type page: int @@ -223897,7 +223897,7 @@ async def index_opc_foundation_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opc_foundation_get_serialize( + _param = self._index_opam_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223929,7 +223929,7 @@ async def index_opc_foundation_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -223945,7 +223945,7 @@ async def index_opc_foundation_get_with_http_info( @validate_call - async def index_opc_foundation_get_without_preload_content( + async def index_opam_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223984,9 +223984,9 @@ async def index_opc_foundation_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"opc-foundation\" + """Return vulnerability data stored in index \"opam\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` :param page: set the page number of the response :type page: int @@ -224058,7 +224058,7 @@ async def index_opc_foundation_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opc_foundation_get_serialize( + _param = self._index_opam_get_serialize( page=page, limit=limit, cursor=cursor, @@ -224090,7 +224090,7 @@ async def index_opc_foundation_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -224101,7 +224101,7 @@ async def index_opc_foundation_get_without_preload_content( return response_data.response - def _index_opc_foundation_get_serialize( + def _index_opam_get_serialize( self, page, limit, @@ -224269,7 +224269,7 @@ def _index_opc_foundation_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/opc-foundation', + resource_path='/v3/index/opam', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -224286,7 +224286,7 @@ def _index_opc_foundation_get_serialize( @validate_call - async def index_open_cvdb_get( + async def index_opc_foundation_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -224324,10 +224324,10 @@ async def index_open_cvdb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination: - """Return vulnerability data stored in index \"open-cvdb\" + ) -> RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"opc-foundation\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` :param page: set the page number of the response :type page: int @@ -224399,7 +224399,7 @@ async def index_open_cvdb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_open_cvdb_get_serialize( + _param = self._index_opc_foundation_get_serialize( page=page, limit=limit, cursor=cursor, @@ -224431,7 +224431,7 @@ async def index_open_cvdb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -224447,7 +224447,7 @@ async def index_open_cvdb_get( @validate_call - async def index_open_cvdb_get_with_http_info( + async def index_opc_foundation_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -224485,10 +224485,10 @@ async def index_open_cvdb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination]: - """Return vulnerability data stored in index \"open-cvdb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"opc-foundation\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` :param page: set the page number of the response :type page: int @@ -224560,7 +224560,7 @@ async def index_open_cvdb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_open_cvdb_get_serialize( + _param = self._index_opc_foundation_get_serialize( page=page, limit=limit, cursor=cursor, @@ -224592,7 +224592,7 @@ async def index_open_cvdb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -224608,7 +224608,7 @@ async def index_open_cvdb_get_with_http_info( @validate_call - async def index_open_cvdb_get_without_preload_content( + async def index_opc_foundation_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -224647,9 +224647,9 @@ async def index_open_cvdb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"open-cvdb\" + """Return vulnerability data stored in index \"opc-foundation\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` :param page: set the page number of the response :type page: int @@ -224721,7 +224721,7 @@ async def index_open_cvdb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_open_cvdb_get_serialize( + _param = self._index_opc_foundation_get_serialize( page=page, limit=limit, cursor=cursor, @@ -224753,7 +224753,7 @@ async def index_open_cvdb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -224764,7 +224764,7 @@ async def index_open_cvdb_get_without_preload_content( return response_data.response - def _index_open_cvdb_get_serialize( + def _index_opc_foundation_get_serialize( self, page, limit, @@ -224932,7 +224932,7 @@ def _index_open_cvdb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/open-cvdb', + resource_path='/v3/index/opc-foundation', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -224949,7 +224949,7 @@ def _index_open_cvdb_get_serialize( @validate_call - async def index_openbsd_get( + async def index_open_cvdb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -224987,10 +224987,10 @@ async def index_openbsd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination: - """Return vulnerability data stored in index \"openbsd\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination: + """Return vulnerability data stored in index \"open-cvdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` :param page: set the page number of the response :type page: int @@ -225062,7 +225062,7 @@ async def index_openbsd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openbsd_get_serialize( + _param = self._index_open_cvdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225094,7 +225094,7 @@ async def index_openbsd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", '404': "str", '500': "str", } @@ -225110,7 +225110,7 @@ async def index_openbsd_get( @validate_call - async def index_openbsd_get_with_http_info( + async def index_open_cvdb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225148,10 +225148,10 @@ async def index_openbsd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination]: - """Return vulnerability data stored in index \"openbsd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination]: + """Return vulnerability data stored in index \"open-cvdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` :param page: set the page number of the response :type page: int @@ -225223,7 +225223,7 @@ async def index_openbsd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openbsd_get_serialize( + _param = self._index_open_cvdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225255,7 +225255,7 @@ async def index_openbsd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", '404': "str", '500': "str", } @@ -225271,7 +225271,7 @@ async def index_openbsd_get_with_http_info( @validate_call - async def index_openbsd_get_without_preload_content( + async def index_open_cvdb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225310,9 +225310,9 @@ async def index_openbsd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openbsd\" + """Return vulnerability data stored in index \"open-cvdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` :param page: set the page number of the response :type page: int @@ -225384,7 +225384,7 @@ async def index_openbsd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openbsd_get_serialize( + _param = self._index_open_cvdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225416,7 +225416,7 @@ async def index_openbsd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", '404': "str", '500': "str", } @@ -225427,7 +225427,7 @@ async def index_openbsd_get_without_preload_content( return response_data.response - def _index_openbsd_get_serialize( + def _index_open_cvdb_get_serialize( self, page, limit, @@ -225595,7 +225595,7 @@ def _index_openbsd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openbsd', + resource_path='/v3/index/open-cvdb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -225612,7 +225612,7 @@ def _index_openbsd_get_serialize( @validate_call - async def index_opengear_get( + async def index_openbsd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225650,10 +225650,10 @@ async def index_opengear_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination: - """Return vulnerability data stored in index \"opengear\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination: + """Return vulnerability data stored in index \"openbsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` :param page: set the page number of the response :type page: int @@ -225725,7 +225725,7 @@ async def index_opengear_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opengear_get_serialize( + _param = self._index_openbsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225757,7 +225757,7 @@ async def index_opengear_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", '404': "str", '500': "str", } @@ -225773,7 +225773,7 @@ async def index_opengear_get( @validate_call - async def index_opengear_get_with_http_info( + async def index_openbsd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225811,10 +225811,10 @@ async def index_opengear_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination]: - """Return vulnerability data stored in index \"opengear\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination]: + """Return vulnerability data stored in index \"openbsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` :param page: set the page number of the response :type page: int @@ -225886,7 +225886,7 @@ async def index_opengear_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opengear_get_serialize( + _param = self._index_openbsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225918,7 +225918,7 @@ async def index_opengear_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", '404': "str", '500': "str", } @@ -225934,7 +225934,7 @@ async def index_opengear_get_with_http_info( @validate_call - async def index_opengear_get_without_preload_content( + async def index_openbsd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225973,9 +225973,9 @@ async def index_opengear_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"opengear\" + """Return vulnerability data stored in index \"openbsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` :param page: set the page number of the response :type page: int @@ -226047,7 +226047,7 @@ async def index_opengear_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opengear_get_serialize( + _param = self._index_openbsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -226079,7 +226079,7 @@ async def index_opengear_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", '404': "str", '500': "str", } @@ -226090,7 +226090,7 @@ async def index_opengear_get_without_preload_content( return response_data.response - def _index_opengear_get_serialize( + def _index_openbsd_get_serialize( self, page, limit, @@ -226258,7 +226258,7 @@ def _index_opengear_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/opengear', + resource_path='/v3/index/openbsd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -226275,7 +226275,7 @@ def _index_opengear_get_serialize( @validate_call - async def index_openjdk_get( + async def index_opengear_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -226313,10 +226313,10 @@ async def index_openjdk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination: - """Return vulnerability data stored in index \"openjdk\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination: + """Return vulnerability data stored in index \"opengear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` :param page: set the page number of the response :type page: int @@ -226388,7 +226388,7 @@ async def index_openjdk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openjdk_get_serialize( + _param = self._index_opengear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -226420,7 +226420,7 @@ async def index_openjdk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", '404': "str", '500': "str", } @@ -226436,7 +226436,7 @@ async def index_openjdk_get( @validate_call - async def index_openjdk_get_with_http_info( + async def index_opengear_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -226474,10 +226474,10 @@ async def index_openjdk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination]: - """Return vulnerability data stored in index \"openjdk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination]: + """Return vulnerability data stored in index \"opengear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` :param page: set the page number of the response :type page: int @@ -226549,7 +226549,7 @@ async def index_openjdk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openjdk_get_serialize( + _param = self._index_opengear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -226581,7 +226581,7 @@ async def index_openjdk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", '404': "str", '500': "str", } @@ -226597,7 +226597,7 @@ async def index_openjdk_get_with_http_info( @validate_call - async def index_openjdk_get_without_preload_content( + async def index_opengear_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -226636,9 +226636,9 @@ async def index_openjdk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openjdk\" + """Return vulnerability data stored in index \"opengear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` :param page: set the page number of the response :type page: int @@ -226710,7 +226710,7 @@ async def index_openjdk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openjdk_get_serialize( + _param = self._index_opengear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -226742,7 +226742,7 @@ async def index_openjdk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", '404': "str", '500': "str", } @@ -226753,7 +226753,7 @@ async def index_openjdk_get_without_preload_content( return response_data.response - def _index_openjdk_get_serialize( + def _index_opengear_get_serialize( self, page, limit, @@ -226921,7 +226921,7 @@ def _index_openjdk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openjdk', + resource_path='/v3/index/opengear', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -226938,7 +226938,7 @@ def _index_openjdk_get_serialize( @validate_call - async def index_openssh_get( + async def index_openjdk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -226976,10 +226976,10 @@ async def index_openssh_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination: - """Return vulnerability data stored in index \"openssh\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination: + """Return vulnerability data stored in index \"openjdk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` :param page: set the page number of the response :type page: int @@ -227051,7 +227051,7 @@ async def index_openssh_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssh_get_serialize( + _param = self._index_openjdk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227083,7 +227083,7 @@ async def index_openssh_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", '404': "str", '500': "str", } @@ -227099,7 +227099,7 @@ async def index_openssh_get( @validate_call - async def index_openssh_get_with_http_info( + async def index_openjdk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227137,10 +227137,10 @@ async def index_openssh_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination]: - """Return vulnerability data stored in index \"openssh\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination]: + """Return vulnerability data stored in index \"openjdk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` :param page: set the page number of the response :type page: int @@ -227212,7 +227212,7 @@ async def index_openssh_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssh_get_serialize( + _param = self._index_openjdk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227244,7 +227244,7 @@ async def index_openssh_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", '404': "str", '500': "str", } @@ -227260,7 +227260,7 @@ async def index_openssh_get_with_http_info( @validate_call - async def index_openssh_get_without_preload_content( + async def index_openjdk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227299,9 +227299,9 @@ async def index_openssh_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openssh\" + """Return vulnerability data stored in index \"openjdk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` :param page: set the page number of the response :type page: int @@ -227373,7 +227373,7 @@ async def index_openssh_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssh_get_serialize( + _param = self._index_openjdk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227405,7 +227405,7 @@ async def index_openssh_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", '404': "str", '500': "str", } @@ -227416,7 +227416,7 @@ async def index_openssh_get_without_preload_content( return response_data.response - def _index_openssh_get_serialize( + def _index_openjdk_get_serialize( self, page, limit, @@ -227584,7 +227584,7 @@ def _index_openssh_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openssh', + resource_path='/v3/index/openjdk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -227601,7 +227601,7 @@ def _index_openssh_get_serialize( @validate_call - async def index_openssl_secadv_get( + async def index_openssh_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227639,10 +227639,10 @@ async def index_openssl_secadv_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination: - """Return vulnerability data stored in index \"openssl-secadv\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination: + """Return vulnerability data stored in index \"openssh\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` :param page: set the page number of the response :type page: int @@ -227714,7 +227714,7 @@ async def index_openssl_secadv_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssl_secadv_get_serialize( + _param = self._index_openssh_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227746,7 +227746,7 @@ async def index_openssl_secadv_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", '404': "str", '500': "str", } @@ -227762,7 +227762,7 @@ async def index_openssl_secadv_get( @validate_call - async def index_openssl_secadv_get_with_http_info( + async def index_openssh_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227800,10 +227800,10 @@ async def index_openssl_secadv_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination]: - """Return vulnerability data stored in index \"openssl-secadv\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination]: + """Return vulnerability data stored in index \"openssh\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` :param page: set the page number of the response :type page: int @@ -227875,7 +227875,7 @@ async def index_openssl_secadv_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssl_secadv_get_serialize( + _param = self._index_openssh_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227907,7 +227907,7 @@ async def index_openssl_secadv_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", '404': "str", '500': "str", } @@ -227923,7 +227923,7 @@ async def index_openssl_secadv_get_with_http_info( @validate_call - async def index_openssl_secadv_get_without_preload_content( + async def index_openssh_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227962,9 +227962,9 @@ async def index_openssl_secadv_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openssl-secadv\" + """Return vulnerability data stored in index \"openssh\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` :param page: set the page number of the response :type page: int @@ -228036,7 +228036,7 @@ async def index_openssl_secadv_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssl_secadv_get_serialize( + _param = self._index_openssh_get_serialize( page=page, limit=limit, cursor=cursor, @@ -228068,7 +228068,7 @@ async def index_openssl_secadv_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", '404': "str", '500': "str", } @@ -228079,7 +228079,7 @@ async def index_openssl_secadv_get_without_preload_content( return response_data.response - def _index_openssl_secadv_get_serialize( + def _index_openssh_get_serialize( self, page, limit, @@ -228247,7 +228247,7 @@ def _index_openssl_secadv_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openssl-secadv', + resource_path='/v3/index/openssh', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -228264,7 +228264,7 @@ def _index_openssl_secadv_get_serialize( @validate_call - async def index_openstack_get( + async def index_openssl_secadv_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -228302,10 +228302,10 @@ async def index_openstack_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination: - """Return vulnerability data stored in index \"openstack\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination: + """Return vulnerability data stored in index \"openssl-secadv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` :param page: set the page number of the response :type page: int @@ -228377,7 +228377,7 @@ async def index_openstack_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openstack_get_serialize( + _param = self._index_openssl_secadv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -228409,7 +228409,7 @@ async def index_openstack_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", '404': "str", '500': "str", } @@ -228425,7 +228425,7 @@ async def index_openstack_get( @validate_call - async def index_openstack_get_with_http_info( + async def index_openssl_secadv_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -228463,10 +228463,10 @@ async def index_openstack_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination]: - """Return vulnerability data stored in index \"openstack\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination]: + """Return vulnerability data stored in index \"openssl-secadv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` :param page: set the page number of the response :type page: int @@ -228538,7 +228538,7 @@ async def index_openstack_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openstack_get_serialize( + _param = self._index_openssl_secadv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -228570,7 +228570,7 @@ async def index_openstack_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", '404': "str", '500': "str", } @@ -228586,7 +228586,7 @@ async def index_openstack_get_with_http_info( @validate_call - async def index_openstack_get_without_preload_content( + async def index_openssl_secadv_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -228625,9 +228625,9 @@ async def index_openstack_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openstack\" + """Return vulnerability data stored in index \"openssl-secadv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` :param page: set the page number of the response :type page: int @@ -228699,7 +228699,7 @@ async def index_openstack_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openstack_get_serialize( + _param = self._index_openssl_secadv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -228731,7 +228731,7 @@ async def index_openstack_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", '404': "str", '500': "str", } @@ -228742,7 +228742,7 @@ async def index_openstack_get_without_preload_content( return response_data.response - def _index_openstack_get_serialize( + def _index_openssl_secadv_get_serialize( self, page, limit, @@ -228910,7 +228910,7 @@ def _index_openstack_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openstack', + resource_path='/v3/index/openssl-secadv', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -228927,7 +228927,7 @@ def _index_openstack_get_serialize( @validate_call - async def index_openwrt_get( + async def index_openstack_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -228965,10 +228965,10 @@ async def index_openwrt_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination: - """Return vulnerability data stored in index \"openwrt\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination: + """Return vulnerability data stored in index \"openstack\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` :param page: set the page number of the response :type page: int @@ -229040,7 +229040,7 @@ async def index_openwrt_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openwrt_get_serialize( + _param = self._index_openstack_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229072,7 +229072,7 @@ async def index_openwrt_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", '404': "str", '500': "str", } @@ -229088,7 +229088,7 @@ async def index_openwrt_get( @validate_call - async def index_openwrt_get_with_http_info( + async def index_openstack_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229126,10 +229126,10 @@ async def index_openwrt_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination]: - """Return vulnerability data stored in index \"openwrt\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination]: + """Return vulnerability data stored in index \"openstack\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` :param page: set the page number of the response :type page: int @@ -229201,7 +229201,7 @@ async def index_openwrt_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openwrt_get_serialize( + _param = self._index_openstack_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229233,7 +229233,7 @@ async def index_openwrt_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", '404': "str", '500': "str", } @@ -229249,7 +229249,7 @@ async def index_openwrt_get_with_http_info( @validate_call - async def index_openwrt_get_without_preload_content( + async def index_openstack_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229288,9 +229288,9 @@ async def index_openwrt_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openwrt\" + """Return vulnerability data stored in index \"openstack\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` :param page: set the page number of the response :type page: int @@ -229362,7 +229362,7 @@ async def index_openwrt_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openwrt_get_serialize( + _param = self._index_openstack_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229394,7 +229394,7 @@ async def index_openwrt_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", '404': "str", '500': "str", } @@ -229405,7 +229405,7 @@ async def index_openwrt_get_without_preload_content( return response_data.response - def _index_openwrt_get_serialize( + def _index_openstack_get_serialize( self, page, limit, @@ -229573,7 +229573,7 @@ def _index_openwrt_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openwrt', + resource_path='/v3/index/openstack', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -229590,7 +229590,7 @@ def _index_openwrt_get_serialize( @validate_call - async def index_oracle_cpu_csaf_get( + async def index_openwrt_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229628,10 +229628,10 @@ async def index_oracle_cpu_csaf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination: - """Return vulnerability data stored in index \"oracle-cpu-csaf\" + ) -> RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination: + """Return vulnerability data stored in index \"openwrt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` :param page: set the page number of the response :type page: int @@ -229703,7 +229703,7 @@ async def index_oracle_cpu_csaf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_csaf_get_serialize( + _param = self._index_openwrt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229735,7 +229735,7 @@ async def index_oracle_cpu_csaf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", '404': "str", '500': "str", } @@ -229751,7 +229751,7 @@ async def index_oracle_cpu_csaf_get( @validate_call - async def index_oracle_cpu_csaf_get_with_http_info( + async def index_openwrt_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229789,10 +229789,10 @@ async def index_oracle_cpu_csaf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination]: - """Return vulnerability data stored in index \"oracle-cpu-csaf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination]: + """Return vulnerability data stored in index \"openwrt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` :param page: set the page number of the response :type page: int @@ -229864,7 +229864,7 @@ async def index_oracle_cpu_csaf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_csaf_get_serialize( + _param = self._index_openwrt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229896,7 +229896,7 @@ async def index_oracle_cpu_csaf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", '404': "str", '500': "str", } @@ -229912,7 +229912,7 @@ async def index_oracle_cpu_csaf_get_with_http_info( @validate_call - async def index_oracle_cpu_csaf_get_without_preload_content( + async def index_openwrt_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229951,9 +229951,9 @@ async def index_oracle_cpu_csaf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"oracle-cpu-csaf\" + """Return vulnerability data stored in index \"openwrt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` :param page: set the page number of the response :type page: int @@ -230025,7 +230025,7 @@ async def index_oracle_cpu_csaf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_csaf_get_serialize( + _param = self._index_openwrt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -230057,7 +230057,7 @@ async def index_oracle_cpu_csaf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", '404': "str", '500': "str", } @@ -230068,7 +230068,7 @@ async def index_oracle_cpu_csaf_get_without_preload_content( return response_data.response - def _index_oracle_cpu_csaf_get_serialize( + def _index_openwrt_get_serialize( self, page, limit, @@ -230236,7 +230236,7 @@ def _index_oracle_cpu_csaf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/oracle-cpu-csaf', + resource_path='/v3/index/openwrt', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -230253,7 +230253,7 @@ def _index_oracle_cpu_csaf_get_serialize( @validate_call - async def index_oracle_cpu_get( + async def index_oracle_cpu_csaf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -230291,10 +230291,10 @@ async def index_oracle_cpu_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination: - """Return vulnerability data stored in index \"oracle-cpu\" + ) -> RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination: + """Return vulnerability data stored in index \"oracle-cpu-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -230366,7 +230366,7 @@ async def index_oracle_cpu_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_get_serialize( + _param = self._index_oracle_cpu_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -230398,7 +230398,7 @@ async def index_oracle_cpu_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", '404': "str", '500': "str", } @@ -230414,7 +230414,7 @@ async def index_oracle_cpu_get( @validate_call - async def index_oracle_cpu_get_with_http_info( + async def index_oracle_cpu_csaf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -230452,10 +230452,10 @@ async def index_oracle_cpu_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination]: - """Return vulnerability data stored in index \"oracle-cpu\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination]: + """Return vulnerability data stored in index \"oracle-cpu-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -230527,7 +230527,7 @@ async def index_oracle_cpu_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_get_serialize( + _param = self._index_oracle_cpu_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -230559,7 +230559,7 @@ async def index_oracle_cpu_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", '404': "str", '500': "str", } @@ -230575,7 +230575,7 @@ async def index_oracle_cpu_get_with_http_info( @validate_call - async def index_oracle_cpu_get_without_preload_content( + async def index_oracle_cpu_csaf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -230614,9 +230614,9 @@ async def index_oracle_cpu_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"oracle-cpu\" + """Return vulnerability data stored in index \"oracle-cpu-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -230688,7 +230688,7 @@ async def index_oracle_cpu_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_get_serialize( + _param = self._index_oracle_cpu_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -230720,7 +230720,7 @@ async def index_oracle_cpu_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", '404': "str", '500': "str", } @@ -230731,7 +230731,7 @@ async def index_oracle_cpu_get_without_preload_content( return response_data.response - def _index_oracle_cpu_get_serialize( + def _index_oracle_cpu_csaf_get_serialize( self, page, limit, @@ -230899,7 +230899,7 @@ def _index_oracle_cpu_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/oracle-cpu', + resource_path='/v3/index/oracle-cpu-csaf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -230916,7 +230916,7 @@ def _index_oracle_cpu_get_serialize( @validate_call - async def index_oracle_get( + async def index_oracle_cpu_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -230954,10 +230954,10 @@ async def index_oracle_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination: - """Return vulnerability data stored in index \"oracle\" + ) -> RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination: + """Return vulnerability data stored in index \"oracle-cpu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` :param page: set the page number of the response :type page: int @@ -231029,7 +231029,7 @@ async def index_oracle_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_get_serialize( + _param = self._index_oracle_cpu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231061,7 +231061,7 @@ async def index_oracle_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", '404': "str", '500': "str", } @@ -231077,7 +231077,7 @@ async def index_oracle_get( @validate_call - async def index_oracle_get_with_http_info( + async def index_oracle_cpu_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231115,10 +231115,10 @@ async def index_oracle_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination]: - """Return vulnerability data stored in index \"oracle\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination]: + """Return vulnerability data stored in index \"oracle-cpu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` :param page: set the page number of the response :type page: int @@ -231190,7 +231190,7 @@ async def index_oracle_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_get_serialize( + _param = self._index_oracle_cpu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231222,7 +231222,7 @@ async def index_oracle_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", '404': "str", '500': "str", } @@ -231238,7 +231238,7 @@ async def index_oracle_get_with_http_info( @validate_call - async def index_oracle_get_without_preload_content( + async def index_oracle_cpu_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231277,9 +231277,9 @@ async def index_oracle_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"oracle\" + """Return vulnerability data stored in index \"oracle-cpu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` :param page: set the page number of the response :type page: int @@ -231351,7 +231351,7 @@ async def index_oracle_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_get_serialize( + _param = self._index_oracle_cpu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231383,7 +231383,7 @@ async def index_oracle_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", '404': "str", '500': "str", } @@ -231394,7 +231394,7 @@ async def index_oracle_get_without_preload_content( return response_data.response - def _index_oracle_get_serialize( + def _index_oracle_cpu_get_serialize( self, page, limit, @@ -231562,7 +231562,7 @@ def _index_oracle_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/oracle', + resource_path='/v3/index/oracle-cpu', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -231579,7 +231579,7 @@ def _index_oracle_get_serialize( @validate_call - async def index_osv_get( + async def index_oracle_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231617,10 +231617,10 @@ async def index_osv_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination: - """Return vulnerability data stored in index \"osv\" + ) -> RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination: + """Return vulnerability data stored in index \"oracle\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` :param page: set the page number of the response :type page: int @@ -231692,7 +231692,7 @@ async def index_osv_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_osv_get_serialize( + _param = self._index_oracle_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231724,7 +231724,7 @@ async def index_osv_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", '404': "str", '500': "str", } @@ -231740,7 +231740,7 @@ async def index_osv_get( @validate_call - async def index_osv_get_with_http_info( + async def index_oracle_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231778,10 +231778,10 @@ async def index_osv_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination]: - """Return vulnerability data stored in index \"osv\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination]: + """Return vulnerability data stored in index \"oracle\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` :param page: set the page number of the response :type page: int @@ -231853,7 +231853,7 @@ async def index_osv_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_osv_get_serialize( + _param = self._index_oracle_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231885,7 +231885,7 @@ async def index_osv_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", '404': "str", '500': "str", } @@ -231901,7 +231901,7 @@ async def index_osv_get_with_http_info( @validate_call - async def index_osv_get_without_preload_content( + async def index_oracle_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231940,9 +231940,9 @@ async def index_osv_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"osv\" + """Return vulnerability data stored in index \"oracle\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` :param page: set the page number of the response :type page: int @@ -232014,7 +232014,7 @@ async def index_osv_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_osv_get_serialize( + _param = self._index_oracle_get_serialize( page=page, limit=limit, cursor=cursor, @@ -232046,7 +232046,7 @@ async def index_osv_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", '404': "str", '500': "str", } @@ -232057,7 +232057,7 @@ async def index_osv_get_without_preload_content( return response_data.response - def _index_osv_get_serialize( + def _index_oracle_get_serialize( self, page, limit, @@ -232225,7 +232225,7 @@ def _index_osv_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/osv', + resource_path='/v3/index/oracle', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -232242,7 +232242,7 @@ def _index_osv_get_serialize( @validate_call - async def index_otrs_get( + async def index_osv_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -232280,10 +232280,10 @@ async def index_otrs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination: - """Return vulnerability data stored in index \"otrs\" + ) -> RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination: + """Return vulnerability data stored in index \"osv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` :param page: set the page number of the response :type page: int @@ -232355,7 +232355,7 @@ async def index_otrs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_otrs_get_serialize( + _param = self._index_osv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -232387,7 +232387,7 @@ async def index_otrs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", '404': "str", '500': "str", } @@ -232403,7 +232403,7 @@ async def index_otrs_get( @validate_call - async def index_otrs_get_with_http_info( + async def index_osv_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -232441,10 +232441,10 @@ async def index_otrs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination]: - """Return vulnerability data stored in index \"otrs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination]: + """Return vulnerability data stored in index \"osv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` :param page: set the page number of the response :type page: int @@ -232516,7 +232516,7 @@ async def index_otrs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_otrs_get_serialize( + _param = self._index_osv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -232548,7 +232548,7 @@ async def index_otrs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", '404': "str", '500': "str", } @@ -232564,7 +232564,7 @@ async def index_otrs_get_with_http_info( @validate_call - async def index_otrs_get_without_preload_content( + async def index_osv_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -232603,9 +232603,9 @@ async def index_otrs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"otrs\" + """Return vulnerability data stored in index \"osv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` :param page: set the page number of the response :type page: int @@ -232677,7 +232677,7 @@ async def index_otrs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_otrs_get_serialize( + _param = self._index_osv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -232709,7 +232709,7 @@ async def index_otrs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", '404': "str", '500': "str", } @@ -232720,7 +232720,7 @@ async def index_otrs_get_without_preload_content( return response_data.response - def _index_otrs_get_serialize( + def _index_osv_get_serialize( self, page, limit, @@ -232888,7 +232888,7 @@ def _index_otrs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/otrs', + resource_path='/v3/index/osv', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -232905,7 +232905,7 @@ def _index_otrs_get_serialize( @validate_call - async def index_owncloud_get( + async def index_otrs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -232943,10 +232943,10 @@ async def index_owncloud_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination: - """Return vulnerability data stored in index \"owncloud\" + ) -> RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination: + """Return vulnerability data stored in index \"otrs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` :param page: set the page number of the response :type page: int @@ -233018,7 +233018,7 @@ async def index_owncloud_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_owncloud_get_serialize( + _param = self._index_otrs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233050,7 +233050,7 @@ async def index_owncloud_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", '404': "str", '500': "str", } @@ -233066,7 +233066,7 @@ async def index_owncloud_get( @validate_call - async def index_owncloud_get_with_http_info( + async def index_otrs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233104,10 +233104,10 @@ async def index_owncloud_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination]: - """Return vulnerability data stored in index \"owncloud\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination]: + """Return vulnerability data stored in index \"otrs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` :param page: set the page number of the response :type page: int @@ -233179,7 +233179,7 @@ async def index_owncloud_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_owncloud_get_serialize( + _param = self._index_otrs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233211,7 +233211,7 @@ async def index_owncloud_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", '404': "str", '500': "str", } @@ -233227,7 +233227,7 @@ async def index_owncloud_get_with_http_info( @validate_call - async def index_owncloud_get_without_preload_content( + async def index_otrs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233266,9 +233266,9 @@ async def index_owncloud_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"owncloud\" + """Return vulnerability data stored in index \"otrs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` :param page: set the page number of the response :type page: int @@ -233340,7 +233340,7 @@ async def index_owncloud_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_owncloud_get_serialize( + _param = self._index_otrs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233372,7 +233372,7 @@ async def index_owncloud_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", '404': "str", '500': "str", } @@ -233383,7 +233383,7 @@ async def index_owncloud_get_without_preload_content( return response_data.response - def _index_owncloud_get_serialize( + def _index_otrs_get_serialize( self, page, limit, @@ -233551,7 +233551,7 @@ def _index_owncloud_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/owncloud', + resource_path='/v3/index/otrs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -233568,7 +233568,7 @@ def _index_owncloud_get_serialize( @validate_call - async def index_packetstorm_get( + async def index_owncloud_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233606,10 +233606,10 @@ async def index_packetstorm_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination: - """Return vulnerability data stored in index \"packetstorm\" + ) -> RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination: + """Return vulnerability data stored in index \"owncloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` :param page: set the page number of the response :type page: int @@ -233681,7 +233681,7 @@ async def index_packetstorm_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_packetstorm_get_serialize( + _param = self._index_owncloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233713,7 +233713,7 @@ async def index_packetstorm_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", '404': "str", '500': "str", } @@ -233729,7 +233729,7 @@ async def index_packetstorm_get( @validate_call - async def index_packetstorm_get_with_http_info( + async def index_owncloud_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233767,10 +233767,10 @@ async def index_packetstorm_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination]: - """Return vulnerability data stored in index \"packetstorm\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination]: + """Return vulnerability data stored in index \"owncloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` :param page: set the page number of the response :type page: int @@ -233842,7 +233842,7 @@ async def index_packetstorm_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_packetstorm_get_serialize( + _param = self._index_owncloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233874,7 +233874,7 @@ async def index_packetstorm_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", '404': "str", '500': "str", } @@ -233890,7 +233890,7 @@ async def index_packetstorm_get_with_http_info( @validate_call - async def index_packetstorm_get_without_preload_content( + async def index_owncloud_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233929,9 +233929,9 @@ async def index_packetstorm_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"packetstorm\" + """Return vulnerability data stored in index \"owncloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` :param page: set the page number of the response :type page: int @@ -234003,7 +234003,7 @@ async def index_packetstorm_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_packetstorm_get_serialize( + _param = self._index_owncloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -234035,7 +234035,7 @@ async def index_packetstorm_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", '404': "str", '500': "str", } @@ -234046,7 +234046,7 @@ async def index_packetstorm_get_without_preload_content( return response_data.response - def _index_packetstorm_get_serialize( + def _index_owncloud_get_serialize( self, page, limit, @@ -234214,7 +234214,7 @@ def _index_packetstorm_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/packetstorm', + resource_path='/v3/index/owncloud', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -234231,7 +234231,7 @@ def _index_packetstorm_get_serialize( @validate_call - async def index_palantir_get( + async def index_packetstorm_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -234269,10 +234269,10 @@ async def index_palantir_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination: - """Return vulnerability data stored in index \"palantir\" + ) -> RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination: + """Return vulnerability data stored in index \"packetstorm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` :param page: set the page number of the response :type page: int @@ -234344,7 +234344,7 @@ async def index_palantir_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palantir_get_serialize( + _param = self._index_packetstorm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -234376,7 +234376,7 @@ async def index_palantir_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", '404': "str", '500': "str", } @@ -234392,7 +234392,7 @@ async def index_palantir_get( @validate_call - async def index_palantir_get_with_http_info( + async def index_packetstorm_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -234430,10 +234430,10 @@ async def index_palantir_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination]: - """Return vulnerability data stored in index \"palantir\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination]: + """Return vulnerability data stored in index \"packetstorm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` :param page: set the page number of the response :type page: int @@ -234505,7 +234505,7 @@ async def index_palantir_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palantir_get_serialize( + _param = self._index_packetstorm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -234537,7 +234537,7 @@ async def index_palantir_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", '404': "str", '500': "str", } @@ -234553,7 +234553,7 @@ async def index_palantir_get_with_http_info( @validate_call - async def index_palantir_get_without_preload_content( + async def index_packetstorm_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -234592,9 +234592,9 @@ async def index_palantir_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"palantir\" + """Return vulnerability data stored in index \"packetstorm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` :param page: set the page number of the response :type page: int @@ -234666,7 +234666,7 @@ async def index_palantir_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palantir_get_serialize( + _param = self._index_packetstorm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -234698,7 +234698,7 @@ async def index_palantir_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", '404': "str", '500': "str", } @@ -234709,7 +234709,7 @@ async def index_palantir_get_without_preload_content( return response_data.response - def _index_palantir_get_serialize( + def _index_packetstorm_get_serialize( self, page, limit, @@ -234877,7 +234877,7 @@ def _index_palantir_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/palantir', + resource_path='/v3/index/packetstorm', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -234894,7 +234894,7 @@ def _index_palantir_get_serialize( @validate_call - async def index_palo_alto_get( + async def index_palantir_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -234932,10 +234932,10 @@ async def index_palo_alto_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"palo-alto\" + ) -> RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination: + """Return vulnerability data stored in index \"palantir\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` :param page: set the page number of the response :type page: int @@ -235007,7 +235007,7 @@ async def index_palo_alto_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palo_alto_get_serialize( + _param = self._index_palantir_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235039,7 +235039,7 @@ async def index_palo_alto_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", '404': "str", '500': "str", } @@ -235055,7 +235055,7 @@ async def index_palo_alto_get( @validate_call - async def index_palo_alto_get_with_http_info( + async def index_palantir_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235093,10 +235093,10 @@ async def index_palo_alto_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"palo-alto\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination]: + """Return vulnerability data stored in index \"palantir\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` :param page: set the page number of the response :type page: int @@ -235168,7 +235168,7 @@ async def index_palo_alto_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palo_alto_get_serialize( + _param = self._index_palantir_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235200,7 +235200,7 @@ async def index_palo_alto_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", '404': "str", '500': "str", } @@ -235216,7 +235216,7 @@ async def index_palo_alto_get_with_http_info( @validate_call - async def index_palo_alto_get_without_preload_content( + async def index_palantir_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235255,9 +235255,9 @@ async def index_palo_alto_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"palo-alto\" + """Return vulnerability data stored in index \"palantir\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` :param page: set the page number of the response :type page: int @@ -235329,7 +235329,7 @@ async def index_palo_alto_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palo_alto_get_serialize( + _param = self._index_palantir_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235361,7 +235361,7 @@ async def index_palo_alto_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", '404': "str", '500': "str", } @@ -235372,7 +235372,7 @@ async def index_palo_alto_get_without_preload_content( return response_data.response - def _index_palo_alto_get_serialize( + def _index_palantir_get_serialize( self, page, limit, @@ -235540,7 +235540,7 @@ def _index_palo_alto_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/palo-alto', + resource_path='/v3/index/palantir', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -235557,7 +235557,7 @@ def _index_palo_alto_get_serialize( @validate_call - async def index_panasonic_get( + async def index_palo_alto_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235595,10 +235595,10 @@ async def index_panasonic_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination: - """Return vulnerability data stored in index \"panasonic\" + ) -> RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"palo-alto\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` :param page: set the page number of the response :type page: int @@ -235670,7 +235670,7 @@ async def index_panasonic_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_panasonic_get_serialize( + _param = self._index_palo_alto_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235702,7 +235702,7 @@ async def index_panasonic_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -235718,7 +235718,7 @@ async def index_panasonic_get( @validate_call - async def index_panasonic_get_with_http_info( + async def index_palo_alto_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235756,10 +235756,10 @@ async def index_panasonic_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination]: - """Return vulnerability data stored in index \"panasonic\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"palo-alto\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` :param page: set the page number of the response :type page: int @@ -235831,7 +235831,7 @@ async def index_panasonic_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_panasonic_get_serialize( + _param = self._index_palo_alto_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235863,7 +235863,7 @@ async def index_panasonic_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -235879,7 +235879,7 @@ async def index_panasonic_get_with_http_info( @validate_call - async def index_panasonic_get_without_preload_content( + async def index_palo_alto_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235918,9 +235918,9 @@ async def index_panasonic_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"panasonic\" + """Return vulnerability data stored in index \"palo-alto\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` :param page: set the page number of the response :type page: int @@ -235992,7 +235992,7 @@ async def index_panasonic_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_panasonic_get_serialize( + _param = self._index_palo_alto_get_serialize( page=page, limit=limit, cursor=cursor, @@ -236024,7 +236024,7 @@ async def index_panasonic_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -236035,7 +236035,7 @@ async def index_panasonic_get_without_preload_content( return response_data.response - def _index_panasonic_get_serialize( + def _index_palo_alto_get_serialize( self, page, limit, @@ -236203,7 +236203,7 @@ def _index_panasonic_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/panasonic', + resource_path='/v3/index/palo-alto', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -236220,7 +236220,7 @@ def _index_panasonic_get_serialize( @validate_call - async def index_papercut_get( + async def index_panasonic_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -236258,10 +236258,10 @@ async def index_papercut_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination: - """Return vulnerability data stored in index \"papercut\" + ) -> RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination: + """Return vulnerability data stored in index \"panasonic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` :param page: set the page number of the response :type page: int @@ -236333,7 +236333,7 @@ async def index_papercut_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_papercut_get_serialize( + _param = self._index_panasonic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -236365,7 +236365,7 @@ async def index_papercut_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", '404': "str", '500': "str", } @@ -236381,7 +236381,7 @@ async def index_papercut_get( @validate_call - async def index_papercut_get_with_http_info( + async def index_panasonic_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -236419,10 +236419,10 @@ async def index_papercut_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination]: - """Return vulnerability data stored in index \"papercut\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination]: + """Return vulnerability data stored in index \"panasonic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` :param page: set the page number of the response :type page: int @@ -236494,7 +236494,7 @@ async def index_papercut_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_papercut_get_serialize( + _param = self._index_panasonic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -236526,7 +236526,7 @@ async def index_papercut_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", '404': "str", '500': "str", } @@ -236542,7 +236542,7 @@ async def index_papercut_get_with_http_info( @validate_call - async def index_papercut_get_without_preload_content( + async def index_panasonic_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -236581,9 +236581,9 @@ async def index_papercut_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"papercut\" + """Return vulnerability data stored in index \"panasonic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` :param page: set the page number of the response :type page: int @@ -236655,7 +236655,7 @@ async def index_papercut_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_papercut_get_serialize( + _param = self._index_panasonic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -236687,7 +236687,7 @@ async def index_papercut_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", '404': "str", '500': "str", } @@ -236698,7 +236698,7 @@ async def index_papercut_get_without_preload_content( return response_data.response - def _index_papercut_get_serialize( + def _index_panasonic_get_serialize( self, page, limit, @@ -236866,7 +236866,7 @@ def _index_papercut_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/papercut', + resource_path='/v3/index/panasonic', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -236883,7 +236883,7 @@ def _index_papercut_get_serialize( @validate_call - async def index_pega_get( + async def index_papercut_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -236921,10 +236921,10 @@ async def index_pega_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination: - """Return vulnerability data stored in index \"pega\" + ) -> RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination: + """Return vulnerability data stored in index \"papercut\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` :param page: set the page number of the response :type page: int @@ -236996,7 +236996,7 @@ async def index_pega_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pega_get_serialize( + _param = self._index_papercut_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237028,7 +237028,7 @@ async def index_pega_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", '404': "str", '500': "str", } @@ -237044,7 +237044,7 @@ async def index_pega_get( @validate_call - async def index_pega_get_with_http_info( + async def index_papercut_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237082,10 +237082,10 @@ async def index_pega_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination]: - """Return vulnerability data stored in index \"pega\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination]: + """Return vulnerability data stored in index \"papercut\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` :param page: set the page number of the response :type page: int @@ -237157,7 +237157,7 @@ async def index_pega_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pega_get_serialize( + _param = self._index_papercut_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237189,7 +237189,7 @@ async def index_pega_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", '404': "str", '500': "str", } @@ -237205,7 +237205,7 @@ async def index_pega_get_with_http_info( @validate_call - async def index_pega_get_without_preload_content( + async def index_papercut_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237244,9 +237244,9 @@ async def index_pega_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pega\" + """Return vulnerability data stored in index \"papercut\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` :param page: set the page number of the response :type page: int @@ -237318,7 +237318,7 @@ async def index_pega_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pega_get_serialize( + _param = self._index_papercut_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237350,7 +237350,7 @@ async def index_pega_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", '404': "str", '500': "str", } @@ -237361,7 +237361,7 @@ async def index_pega_get_without_preload_content( return response_data.response - def _index_pega_get_serialize( + def _index_papercut_get_serialize( self, page, limit, @@ -237529,7 +237529,7 @@ def _index_pega_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pega', + resource_path='/v3/index/papercut', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -237546,7 +237546,7 @@ def _index_pega_get_serialize( @validate_call - async def index_philips_get( + async def index_pega_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237584,10 +237584,10 @@ async def index_philips_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"philips\" + ) -> RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination: + """Return vulnerability data stored in index \"pega\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` :param page: set the page number of the response :type page: int @@ -237659,7 +237659,7 @@ async def index_philips_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_philips_get_serialize( + _param = self._index_pega_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237691,7 +237691,7 @@ async def index_philips_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", '404': "str", '500': "str", } @@ -237707,7 +237707,7 @@ async def index_philips_get( @validate_call - async def index_philips_get_with_http_info( + async def index_pega_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237745,10 +237745,10 @@ async def index_philips_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"philips\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination]: + """Return vulnerability data stored in index \"pega\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` :param page: set the page number of the response :type page: int @@ -237820,7 +237820,7 @@ async def index_philips_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_philips_get_serialize( + _param = self._index_pega_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237852,7 +237852,7 @@ async def index_philips_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", '404': "str", '500': "str", } @@ -237868,7 +237868,7 @@ async def index_philips_get_with_http_info( @validate_call - async def index_philips_get_without_preload_content( + async def index_pega_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237907,9 +237907,9 @@ async def index_philips_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"philips\" + """Return vulnerability data stored in index \"pega\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` :param page: set the page number of the response :type page: int @@ -237981,7 +237981,7 @@ async def index_philips_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_philips_get_serialize( + _param = self._index_pega_get_serialize( page=page, limit=limit, cursor=cursor, @@ -238013,7 +238013,7 @@ async def index_philips_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", '404': "str", '500': "str", } @@ -238024,7 +238024,7 @@ async def index_philips_get_without_preload_content( return response_data.response - def _index_philips_get_serialize( + def _index_pega_get_serialize( self, page, limit, @@ -238192,7 +238192,7 @@ def _index_philips_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/philips', + resource_path='/v3/index/pega', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -238209,7 +238209,7 @@ def _index_philips_get_serialize( @validate_call - async def index_phoenix_contact_get( + async def index_philips_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -238247,10 +238247,10 @@ async def index_phoenix_contact_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"phoenix-contact\" + ) -> RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"philips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` :param page: set the page number of the response :type page: int @@ -238322,7 +238322,7 @@ async def index_phoenix_contact_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_phoenix_contact_get_serialize( + _param = self._index_philips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -238354,7 +238354,7 @@ async def index_phoenix_contact_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -238370,7 +238370,7 @@ async def index_phoenix_contact_get( @validate_call - async def index_phoenix_contact_get_with_http_info( + async def index_philips_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -238408,10 +238408,10 @@ async def index_phoenix_contact_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"phoenix-contact\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"philips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` :param page: set the page number of the response :type page: int @@ -238483,7 +238483,7 @@ async def index_phoenix_contact_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_phoenix_contact_get_serialize( + _param = self._index_philips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -238515,7 +238515,7 @@ async def index_phoenix_contact_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -238531,7 +238531,7 @@ async def index_phoenix_contact_get_with_http_info( @validate_call - async def index_phoenix_contact_get_without_preload_content( + async def index_philips_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -238570,9 +238570,9 @@ async def index_phoenix_contact_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"phoenix-contact\" + """Return vulnerability data stored in index \"philips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` :param page: set the page number of the response :type page: int @@ -238644,7 +238644,7 @@ async def index_phoenix_contact_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_phoenix_contact_get_serialize( + _param = self._index_philips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -238676,7 +238676,7 @@ async def index_phoenix_contact_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -238687,7 +238687,7 @@ async def index_phoenix_contact_get_without_preload_content( return response_data.response - def _index_phoenix_contact_get_serialize( + def _index_philips_get_serialize( self, page, limit, @@ -238855,7 +238855,7 @@ def _index_phoenix_contact_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/phoenix-contact', + resource_path='/v3/index/philips', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -238872,7 +238872,7 @@ def _index_phoenix_contact_get_serialize( @validate_call - async def index_php_my_admin_get( + async def index_phoenix_contact_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -238910,10 +238910,10 @@ async def index_php_my_admin_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination: - """Return vulnerability data stored in index \"php-my-admin\" + ) -> RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"phoenix-contact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` :param page: set the page number of the response :type page: int @@ -238985,7 +238985,7 @@ async def index_php_my_admin_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_php_my_admin_get_serialize( + _param = self._index_phoenix_contact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239017,7 +239017,7 @@ async def index_php_my_admin_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -239033,7 +239033,7 @@ async def index_php_my_admin_get( @validate_call - async def index_php_my_admin_get_with_http_info( + async def index_phoenix_contact_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239071,10 +239071,10 @@ async def index_php_my_admin_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination]: - """Return vulnerability data stored in index \"php-my-admin\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"phoenix-contact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` :param page: set the page number of the response :type page: int @@ -239146,7 +239146,7 @@ async def index_php_my_admin_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_php_my_admin_get_serialize( + _param = self._index_phoenix_contact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239178,7 +239178,7 @@ async def index_php_my_admin_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -239194,7 +239194,7 @@ async def index_php_my_admin_get_with_http_info( @validate_call - async def index_php_my_admin_get_without_preload_content( + async def index_phoenix_contact_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239233,9 +239233,9 @@ async def index_php_my_admin_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"php-my-admin\" + """Return vulnerability data stored in index \"phoenix-contact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` :param page: set the page number of the response :type page: int @@ -239307,7 +239307,7 @@ async def index_php_my_admin_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_php_my_admin_get_serialize( + _param = self._index_phoenix_contact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239339,7 +239339,7 @@ async def index_php_my_admin_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -239350,7 +239350,7 @@ async def index_php_my_admin_get_without_preload_content( return response_data.response - def _index_php_my_admin_get_serialize( + def _index_phoenix_contact_get_serialize( self, page, limit, @@ -239518,7 +239518,7 @@ def _index_php_my_admin_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/php-my-admin', + resource_path='/v3/index/phoenix-contact', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -239535,7 +239535,7 @@ def _index_php_my_admin_get_serialize( @validate_call - async def index_pkcert_get( + async def index_php_my_admin_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239573,10 +239573,10 @@ async def index_pkcert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination: - """Return vulnerability data stored in index \"pkcert\" + ) -> RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination: + """Return vulnerability data stored in index \"php-my-admin\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` :param page: set the page number of the response :type page: int @@ -239648,7 +239648,7 @@ async def index_pkcert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pkcert_get_serialize( + _param = self._index_php_my_admin_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239680,7 +239680,7 @@ async def index_pkcert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", '404': "str", '500': "str", } @@ -239696,7 +239696,7 @@ async def index_pkcert_get( @validate_call - async def index_pkcert_get_with_http_info( + async def index_php_my_admin_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239734,10 +239734,10 @@ async def index_pkcert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination]: - """Return vulnerability data stored in index \"pkcert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination]: + """Return vulnerability data stored in index \"php-my-admin\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` :param page: set the page number of the response :type page: int @@ -239809,7 +239809,7 @@ async def index_pkcert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pkcert_get_serialize( + _param = self._index_php_my_admin_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239841,7 +239841,7 @@ async def index_pkcert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", '404': "str", '500': "str", } @@ -239857,7 +239857,7 @@ async def index_pkcert_get_with_http_info( @validate_call - async def index_pkcert_get_without_preload_content( + async def index_php_my_admin_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239896,9 +239896,9 @@ async def index_pkcert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pkcert\" + """Return vulnerability data stored in index \"php-my-admin\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` :param page: set the page number of the response :type page: int @@ -239970,7 +239970,7 @@ async def index_pkcert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pkcert_get_serialize( + _param = self._index_php_my_admin_get_serialize( page=page, limit=limit, cursor=cursor, @@ -240002,7 +240002,7 @@ async def index_pkcert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", '404': "str", '500': "str", } @@ -240013,7 +240013,7 @@ async def index_pkcert_get_without_preload_content( return response_data.response - def _index_pkcert_get_serialize( + def _index_php_my_admin_get_serialize( self, page, limit, @@ -240181,7 +240181,7 @@ def _index_pkcert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pkcert', + resource_path='/v3/index/php-my-admin', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -240198,7 +240198,7 @@ def _index_pkcert_get_serialize( @validate_call - async def index_postgressql_get( + async def index_pkcert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -240236,10 +240236,10 @@ async def index_postgressql_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination: - """Return vulnerability data stored in index \"postgressql\" + ) -> RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination: + """Return vulnerability data stored in index \"pkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` :param page: set the page number of the response :type page: int @@ -240311,7 +240311,7 @@ async def index_postgressql_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_postgressql_get_serialize( + _param = self._index_pkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -240343,7 +240343,7 @@ async def index_postgressql_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", '404': "str", '500': "str", } @@ -240359,7 +240359,7 @@ async def index_postgressql_get( @validate_call - async def index_postgressql_get_with_http_info( + async def index_pkcert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -240397,10 +240397,10 @@ async def index_postgressql_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination]: - """Return vulnerability data stored in index \"postgressql\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination]: + """Return vulnerability data stored in index \"pkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` :param page: set the page number of the response :type page: int @@ -240472,7 +240472,7 @@ async def index_postgressql_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_postgressql_get_serialize( + _param = self._index_pkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -240504,7 +240504,7 @@ async def index_postgressql_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", '404': "str", '500': "str", } @@ -240520,7 +240520,7 @@ async def index_postgressql_get_with_http_info( @validate_call - async def index_postgressql_get_without_preload_content( + async def index_pkcert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -240559,9 +240559,9 @@ async def index_postgressql_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"postgressql\" + """Return vulnerability data stored in index \"pkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` :param page: set the page number of the response :type page: int @@ -240633,7 +240633,7 @@ async def index_postgressql_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_postgressql_get_serialize( + _param = self._index_pkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -240665,7 +240665,7 @@ async def index_postgressql_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", '404': "str", '500': "str", } @@ -240676,7 +240676,7 @@ async def index_postgressql_get_without_preload_content( return response_data.response - def _index_postgressql_get_serialize( + def _index_pkcert_get_serialize( self, page, limit, @@ -240844,7 +240844,7 @@ def _index_postgressql_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/postgressql', + resource_path='/v3/index/pkcert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -240861,7 +240861,7 @@ def _index_postgressql_get_serialize( @validate_call - async def index_powerdns_get( + async def index_postgressql_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -240899,10 +240899,10 @@ async def index_powerdns_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination: - """Return vulnerability data stored in index \"powerdns\" + ) -> RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination: + """Return vulnerability data stored in index \"postgressql\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` :param page: set the page number of the response :type page: int @@ -240974,7 +240974,7 @@ async def index_powerdns_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_powerdns_get_serialize( + _param = self._index_postgressql_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241006,7 +241006,7 @@ async def index_powerdns_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", '404': "str", '500': "str", } @@ -241022,7 +241022,7 @@ async def index_powerdns_get( @validate_call - async def index_powerdns_get_with_http_info( + async def index_postgressql_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241060,10 +241060,10 @@ async def index_powerdns_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination]: - """Return vulnerability data stored in index \"powerdns\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination]: + """Return vulnerability data stored in index \"postgressql\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` :param page: set the page number of the response :type page: int @@ -241135,7 +241135,7 @@ async def index_powerdns_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_powerdns_get_serialize( + _param = self._index_postgressql_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241167,7 +241167,7 @@ async def index_powerdns_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", '404': "str", '500': "str", } @@ -241183,7 +241183,7 @@ async def index_powerdns_get_with_http_info( @validate_call - async def index_powerdns_get_without_preload_content( + async def index_postgressql_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241222,9 +241222,9 @@ async def index_powerdns_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"powerdns\" + """Return vulnerability data stored in index \"postgressql\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` :param page: set the page number of the response :type page: int @@ -241296,7 +241296,7 @@ async def index_powerdns_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_powerdns_get_serialize( + _param = self._index_postgressql_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241328,7 +241328,7 @@ async def index_powerdns_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", '404': "str", '500': "str", } @@ -241339,7 +241339,7 @@ async def index_powerdns_get_without_preload_content( return response_data.response - def _index_powerdns_get_serialize( + def _index_postgressql_get_serialize( self, page, limit, @@ -241507,7 +241507,7 @@ def _index_powerdns_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/powerdns', + resource_path='/v3/index/postgressql', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -241524,7 +241524,7 @@ def _index_powerdns_get_serialize( @validate_call - async def index_progress_get( + async def index_powerdns_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241562,10 +241562,10 @@ async def index_progress_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination: - """Return vulnerability data stored in index \"progress\" + ) -> RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination: + """Return vulnerability data stored in index \"powerdns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` :param page: set the page number of the response :type page: int @@ -241637,7 +241637,7 @@ async def index_progress_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_progress_get_serialize( + _param = self._index_powerdns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241669,7 +241669,7 @@ async def index_progress_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", '404': "str", '500': "str", } @@ -241685,7 +241685,7 @@ async def index_progress_get( @validate_call - async def index_progress_get_with_http_info( + async def index_powerdns_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241723,10 +241723,10 @@ async def index_progress_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination]: - """Return vulnerability data stored in index \"progress\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination]: + """Return vulnerability data stored in index \"powerdns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` :param page: set the page number of the response :type page: int @@ -241798,7 +241798,7 @@ async def index_progress_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_progress_get_serialize( + _param = self._index_powerdns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241830,7 +241830,7 @@ async def index_progress_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", '404': "str", '500': "str", } @@ -241846,7 +241846,7 @@ async def index_progress_get_with_http_info( @validate_call - async def index_progress_get_without_preload_content( + async def index_powerdns_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241885,9 +241885,9 @@ async def index_progress_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"progress\" + """Return vulnerability data stored in index \"powerdns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` :param page: set the page number of the response :type page: int @@ -241959,7 +241959,7 @@ async def index_progress_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_progress_get_serialize( + _param = self._index_powerdns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241991,7 +241991,7 @@ async def index_progress_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", '404': "str", '500': "str", } @@ -242002,7 +242002,7 @@ async def index_progress_get_without_preload_content( return response_data.response - def _index_progress_get_serialize( + def _index_powerdns_get_serialize( self, page, limit, @@ -242170,7 +242170,7 @@ def _index_progress_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/progress', + resource_path='/v3/index/powerdns', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -242187,7 +242187,7 @@ def _index_progress_get_serialize( @validate_call - async def index_proofpoint_get( + async def index_progress_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -242225,10 +242225,10 @@ async def index_proofpoint_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination: - """Return vulnerability data stored in index \"proofpoint\" + ) -> RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination: + """Return vulnerability data stored in index \"progress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` :param page: set the page number of the response :type page: int @@ -242300,7 +242300,7 @@ async def index_proofpoint_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_proofpoint_get_serialize( + _param = self._index_progress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -242332,7 +242332,7 @@ async def index_proofpoint_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", '404': "str", '500': "str", } @@ -242348,7 +242348,7 @@ async def index_proofpoint_get( @validate_call - async def index_proofpoint_get_with_http_info( + async def index_progress_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -242386,10 +242386,10 @@ async def index_proofpoint_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination]: - """Return vulnerability data stored in index \"proofpoint\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination]: + """Return vulnerability data stored in index \"progress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` :param page: set the page number of the response :type page: int @@ -242461,7 +242461,7 @@ async def index_proofpoint_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_proofpoint_get_serialize( + _param = self._index_progress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -242493,7 +242493,7 @@ async def index_proofpoint_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", '404': "str", '500': "str", } @@ -242509,7 +242509,7 @@ async def index_proofpoint_get_with_http_info( @validate_call - async def index_proofpoint_get_without_preload_content( + async def index_progress_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -242548,9 +242548,9 @@ async def index_proofpoint_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"proofpoint\" + """Return vulnerability data stored in index \"progress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` :param page: set the page number of the response :type page: int @@ -242622,7 +242622,7 @@ async def index_proofpoint_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_proofpoint_get_serialize( + _param = self._index_progress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -242654,7 +242654,7 @@ async def index_proofpoint_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", '404': "str", '500': "str", } @@ -242665,7 +242665,7 @@ async def index_proofpoint_get_without_preload_content( return response_data.response - def _index_proofpoint_get_serialize( + def _index_progress_get_serialize( self, page, limit, @@ -242833,7 +242833,7 @@ def _index_proofpoint_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/proofpoint', + resource_path='/v3/index/progress', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -242850,7 +242850,7 @@ def _index_proofpoint_get_serialize( @validate_call - async def index_ptc_get( + async def index_proofpoint_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -242888,10 +242888,10 @@ async def index_ptc_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination: - """Return vulnerability data stored in index \"ptc\" + ) -> RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination: + """Return vulnerability data stored in index \"proofpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` :param page: set the page number of the response :type page: int @@ -242963,7 +242963,7 @@ async def index_ptc_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ptc_get_serialize( + _param = self._index_proofpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -242995,7 +242995,7 @@ async def index_ptc_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", '404': "str", '500': "str", } @@ -243011,7 +243011,7 @@ async def index_ptc_get( @validate_call - async def index_ptc_get_with_http_info( + async def index_proofpoint_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243049,10 +243049,10 @@ async def index_ptc_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination]: - """Return vulnerability data stored in index \"ptc\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination]: + """Return vulnerability data stored in index \"proofpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` :param page: set the page number of the response :type page: int @@ -243124,7 +243124,7 @@ async def index_ptc_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ptc_get_serialize( + _param = self._index_proofpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243156,7 +243156,7 @@ async def index_ptc_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", '404': "str", '500': "str", } @@ -243172,7 +243172,7 @@ async def index_ptc_get_with_http_info( @validate_call - async def index_ptc_get_without_preload_content( + async def index_proofpoint_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243211,9 +243211,9 @@ async def index_ptc_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ptc\" + """Return vulnerability data stored in index \"proofpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` :param page: set the page number of the response :type page: int @@ -243285,7 +243285,7 @@ async def index_ptc_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ptc_get_serialize( + _param = self._index_proofpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243317,7 +243317,7 @@ async def index_ptc_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", '404': "str", '500': "str", } @@ -243328,7 +243328,7 @@ async def index_ptc_get_without_preload_content( return response_data.response - def _index_ptc_get_serialize( + def _index_proofpoint_get_serialize( self, page, limit, @@ -243496,7 +243496,7 @@ def _index_ptc_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ptc', + resource_path='/v3/index/proofpoint', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -243513,7 +243513,7 @@ def _index_ptc_get_serialize( @validate_call - async def index_pub_get( + async def index_ptc_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243551,10 +243551,10 @@ async def index_pub_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"pub\" + ) -> RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination: + """Return vulnerability data stored in index \"ptc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` :param page: set the page number of the response :type page: int @@ -243626,7 +243626,7 @@ async def index_pub_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pub_get_serialize( + _param = self._index_ptc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243658,7 +243658,7 @@ async def index_pub_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", '404': "str", '500': "str", } @@ -243674,7 +243674,7 @@ async def index_pub_get( @validate_call - async def index_pub_get_with_http_info( + async def index_ptc_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243712,10 +243712,10 @@ async def index_pub_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"pub\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination]: + """Return vulnerability data stored in index \"ptc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` :param page: set the page number of the response :type page: int @@ -243787,7 +243787,7 @@ async def index_pub_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pub_get_serialize( + _param = self._index_ptc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243819,7 +243819,7 @@ async def index_pub_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", '404': "str", '500': "str", } @@ -243835,7 +243835,7 @@ async def index_pub_get_with_http_info( @validate_call - async def index_pub_get_without_preload_content( + async def index_ptc_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243874,9 +243874,9 @@ async def index_pub_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pub\" + """Return vulnerability data stored in index \"ptc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` :param page: set the page number of the response :type page: int @@ -243948,7 +243948,7 @@ async def index_pub_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pub_get_serialize( + _param = self._index_ptc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243980,7 +243980,7 @@ async def index_pub_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", '404': "str", '500': "str", } @@ -243991,7 +243991,7 @@ async def index_pub_get_without_preload_content( return response_data.response - def _index_pub_get_serialize( + def _index_ptc_get_serialize( self, page, limit, @@ -244159,7 +244159,7 @@ def _index_pub_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pub', + resource_path='/v3/index/ptc', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -244176,7 +244176,7 @@ def _index_pub_get_serialize( @validate_call - async def index_pure_storage_get( + async def index_pub_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -244214,10 +244214,10 @@ async def index_pure_storage_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination: - """Return vulnerability data stored in index \"pure-storage\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"pub\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` :param page: set the page number of the response :type page: int @@ -244289,7 +244289,7 @@ async def index_pure_storage_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pure_storage_get_serialize( + _param = self._index_pub_get_serialize( page=page, limit=limit, cursor=cursor, @@ -244321,7 +244321,7 @@ async def index_pure_storage_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -244337,7 +244337,7 @@ async def index_pure_storage_get( @validate_call - async def index_pure_storage_get_with_http_info( + async def index_pub_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -244375,10 +244375,10 @@ async def index_pure_storage_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination]: - """Return vulnerability data stored in index \"pure-storage\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"pub\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` :param page: set the page number of the response :type page: int @@ -244450,7 +244450,7 @@ async def index_pure_storage_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pure_storage_get_serialize( + _param = self._index_pub_get_serialize( page=page, limit=limit, cursor=cursor, @@ -244482,7 +244482,7 @@ async def index_pure_storage_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -244498,7 +244498,7 @@ async def index_pure_storage_get_with_http_info( @validate_call - async def index_pure_storage_get_without_preload_content( + async def index_pub_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -244537,9 +244537,9 @@ async def index_pure_storage_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pure-storage\" + """Return vulnerability data stored in index \"pub\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` :param page: set the page number of the response :type page: int @@ -244611,7 +244611,7 @@ async def index_pure_storage_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pure_storage_get_serialize( + _param = self._index_pub_get_serialize( page=page, limit=limit, cursor=cursor, @@ -244643,7 +244643,7 @@ async def index_pure_storage_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -244654,7 +244654,7 @@ async def index_pure_storage_get_without_preload_content( return response_data.response - def _index_pure_storage_get_serialize( + def _index_pub_get_serialize( self, page, limit, @@ -244822,7 +244822,7 @@ def _index_pure_storage_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pure-storage', + resource_path='/v3/index/pub', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -244839,7 +244839,7 @@ def _index_pure_storage_get_serialize( @validate_call - async def index_pypa_advisories_get( + async def index_pure_storage_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -244877,10 +244877,10 @@ async def index_pypa_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"pypa-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination: + """Return vulnerability data stored in index \"pure-storage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` :param page: set the page number of the response :type page: int @@ -244952,7 +244952,7 @@ async def index_pypa_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypa_advisories_get_serialize( + _param = self._index_pure_storage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -244984,7 +244984,7 @@ async def index_pypa_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", '404': "str", '500': "str", } @@ -245000,7 +245000,7 @@ async def index_pypa_advisories_get( @validate_call - async def index_pypa_advisories_get_with_http_info( + async def index_pure_storage_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245038,10 +245038,10 @@ async def index_pypa_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"pypa-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination]: + """Return vulnerability data stored in index \"pure-storage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` :param page: set the page number of the response :type page: int @@ -245113,7 +245113,7 @@ async def index_pypa_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypa_advisories_get_serialize( + _param = self._index_pure_storage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245145,7 +245145,7 @@ async def index_pypa_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", '404': "str", '500': "str", } @@ -245161,7 +245161,7 @@ async def index_pypa_advisories_get_with_http_info( @validate_call - async def index_pypa_advisories_get_without_preload_content( + async def index_pure_storage_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245200,9 +245200,9 @@ async def index_pypa_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pypa-advisories\" + """Return vulnerability data stored in index \"pure-storage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` :param page: set the page number of the response :type page: int @@ -245274,7 +245274,7 @@ async def index_pypa_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypa_advisories_get_serialize( + _param = self._index_pure_storage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245306,7 +245306,7 @@ async def index_pypa_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", '404': "str", '500': "str", } @@ -245317,7 +245317,7 @@ async def index_pypa_advisories_get_without_preload_content( return response_data.response - def _index_pypa_advisories_get_serialize( + def _index_pure_storage_get_serialize( self, page, limit, @@ -245485,7 +245485,7 @@ def _index_pypa_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pypa-advisories', + resource_path='/v3/index/pure-storage', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -245502,7 +245502,7 @@ def _index_pypa_advisories_get_serialize( @validate_call - async def index_pypi_get( + async def index_pypa_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245540,10 +245540,10 @@ async def index_pypi_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"pypi\" + ) -> RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"pypa-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -245615,7 +245615,7 @@ async def index_pypi_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypi_get_serialize( + _param = self._index_pypa_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245647,7 +245647,7 @@ async def index_pypi_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -245663,7 +245663,7 @@ async def index_pypi_get( @validate_call - async def index_pypi_get_with_http_info( + async def index_pypa_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245701,10 +245701,10 @@ async def index_pypi_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"pypi\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"pypa-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -245776,7 +245776,7 @@ async def index_pypi_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypi_get_serialize( + _param = self._index_pypa_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245808,7 +245808,7 @@ async def index_pypi_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -245824,7 +245824,7 @@ async def index_pypi_get_with_http_info( @validate_call - async def index_pypi_get_without_preload_content( + async def index_pypa_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245863,9 +245863,9 @@ async def index_pypi_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pypi\" + """Return vulnerability data stored in index \"pypa-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -245937,7 +245937,7 @@ async def index_pypi_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypi_get_serialize( + _param = self._index_pypa_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245969,7 +245969,7 @@ async def index_pypi_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -245980,7 +245980,7 @@ async def index_pypi_get_without_preload_content( return response_data.response - def _index_pypi_get_serialize( + def _index_pypa_advisories_get_serialize( self, page, limit, @@ -246148,7 +246148,7 @@ def _index_pypi_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pypi', + resource_path='/v3/index/pypa-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -246165,7 +246165,7 @@ def _index_pypi_get_serialize( @validate_call - async def index_qnap_get( + async def index_pypi_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -246203,10 +246203,10 @@ async def index_qnap_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"qnap\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"pypi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` :param page: set the page number of the response :type page: int @@ -246278,7 +246278,7 @@ async def index_qnap_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qnap_get_serialize( + _param = self._index_pypi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -246310,7 +246310,7 @@ async def index_qnap_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -246326,7 +246326,7 @@ async def index_qnap_get( @validate_call - async def index_qnap_get_with_http_info( + async def index_pypi_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -246364,10 +246364,10 @@ async def index_qnap_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"qnap\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"pypi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` :param page: set the page number of the response :type page: int @@ -246439,7 +246439,7 @@ async def index_qnap_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qnap_get_serialize( + _param = self._index_pypi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -246471,7 +246471,7 @@ async def index_qnap_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -246487,7 +246487,7 @@ async def index_qnap_get_with_http_info( @validate_call - async def index_qnap_get_without_preload_content( + async def index_pypi_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -246526,9 +246526,9 @@ async def index_qnap_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qnap\" + """Return vulnerability data stored in index \"pypi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` :param page: set the page number of the response :type page: int @@ -246600,7 +246600,7 @@ async def index_qnap_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qnap_get_serialize( + _param = self._index_pypi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -246632,7 +246632,7 @@ async def index_qnap_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -246643,7 +246643,7 @@ async def index_qnap_get_without_preload_content( return response_data.response - def _index_qnap_get_serialize( + def _index_pypi_get_serialize( self, page, limit, @@ -246811,7 +246811,7 @@ def _index_qnap_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qnap', + resource_path='/v3/index/pypi', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -246828,7 +246828,7 @@ def _index_qnap_get_serialize( @validate_call - async def index_qqids_get( + async def index_qnap_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -246866,10 +246866,10 @@ async def index_qqids_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination: - """Return vulnerability data stored in index \"qqids\" + ) -> RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"qnap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` :param page: set the page number of the response :type page: int @@ -246941,7 +246941,7 @@ async def index_qqids_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qqids_get_serialize( + _param = self._index_qnap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -246973,7 +246973,7 @@ async def index_qqids_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -246989,7 +246989,7 @@ async def index_qqids_get( @validate_call - async def index_qqids_get_with_http_info( + async def index_qnap_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247027,10 +247027,10 @@ async def index_qqids_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination]: - """Return vulnerability data stored in index \"qqids\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"qnap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` :param page: set the page number of the response :type page: int @@ -247102,7 +247102,7 @@ async def index_qqids_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qqids_get_serialize( + _param = self._index_qnap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247134,7 +247134,7 @@ async def index_qqids_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -247150,7 +247150,7 @@ async def index_qqids_get_with_http_info( @validate_call - async def index_qqids_get_without_preload_content( + async def index_qnap_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247189,9 +247189,9 @@ async def index_qqids_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qqids\" + """Return vulnerability data stored in index \"qnap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` :param page: set the page number of the response :type page: int @@ -247263,7 +247263,7 @@ async def index_qqids_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qqids_get_serialize( + _param = self._index_qnap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247295,7 +247295,7 @@ async def index_qqids_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -247306,7 +247306,7 @@ async def index_qqids_get_without_preload_content( return response_data.response - def _index_qqids_get_serialize( + def _index_qnap_get_serialize( self, page, limit, @@ -247474,7 +247474,7 @@ def _index_qqids_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qqids', + resource_path='/v3/index/qnap', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -247491,7 +247491,7 @@ def _index_qqids_get_serialize( @validate_call - async def index_qualcomm_get( + async def index_qqids_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247529,10 +247529,10 @@ async def index_qualcomm_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination: - """Return vulnerability data stored in index \"qualcomm\" + ) -> RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination: + """Return vulnerability data stored in index \"qqids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` :param page: set the page number of the response :type page: int @@ -247604,7 +247604,7 @@ async def index_qualcomm_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualcomm_get_serialize( + _param = self._index_qqids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247636,7 +247636,7 @@ async def index_qualcomm_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", '404': "str", '500': "str", } @@ -247652,7 +247652,7 @@ async def index_qualcomm_get( @validate_call - async def index_qualcomm_get_with_http_info( + async def index_qqids_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247690,10 +247690,10 @@ async def index_qualcomm_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination]: - """Return vulnerability data stored in index \"qualcomm\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination]: + """Return vulnerability data stored in index \"qqids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` :param page: set the page number of the response :type page: int @@ -247765,7 +247765,7 @@ async def index_qualcomm_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualcomm_get_serialize( + _param = self._index_qqids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247797,7 +247797,7 @@ async def index_qualcomm_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", '404': "str", '500': "str", } @@ -247813,7 +247813,7 @@ async def index_qualcomm_get_with_http_info( @validate_call - async def index_qualcomm_get_without_preload_content( + async def index_qqids_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247852,9 +247852,9 @@ async def index_qualcomm_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qualcomm\" + """Return vulnerability data stored in index \"qqids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` :param page: set the page number of the response :type page: int @@ -247926,7 +247926,7 @@ async def index_qualcomm_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualcomm_get_serialize( + _param = self._index_qqids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247958,7 +247958,7 @@ async def index_qualcomm_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", '404': "str", '500': "str", } @@ -247969,7 +247969,7 @@ async def index_qualcomm_get_without_preload_content( return response_data.response - def _index_qualcomm_get_serialize( + def _index_qqids_get_serialize( self, page, limit, @@ -248137,7 +248137,7 @@ def _index_qualcomm_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qualcomm', + resource_path='/v3/index/qqids', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -248154,7 +248154,7 @@ def _index_qualcomm_get_serialize( @validate_call - async def index_qualys_get( + async def index_qualcomm_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -248192,10 +248192,10 @@ async def index_qualys_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination: - """Return vulnerability data stored in index \"qualys\" + ) -> RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination: + """Return vulnerability data stored in index \"qualcomm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` :param page: set the page number of the response :type page: int @@ -248267,7 +248267,7 @@ async def index_qualys_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_get_serialize( + _param = self._index_qualcomm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -248299,7 +248299,7 @@ async def index_qualys_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", '404': "str", '500': "str", } @@ -248315,7 +248315,7 @@ async def index_qualys_get( @validate_call - async def index_qualys_get_with_http_info( + async def index_qualcomm_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -248353,10 +248353,10 @@ async def index_qualys_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination]: - """Return vulnerability data stored in index \"qualys\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination]: + """Return vulnerability data stored in index \"qualcomm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` :param page: set the page number of the response :type page: int @@ -248428,7 +248428,7 @@ async def index_qualys_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_get_serialize( + _param = self._index_qualcomm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -248460,7 +248460,7 @@ async def index_qualys_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", '404': "str", '500': "str", } @@ -248476,7 +248476,7 @@ async def index_qualys_get_with_http_info( @validate_call - async def index_qualys_get_without_preload_content( + async def index_qualcomm_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -248515,9 +248515,9 @@ async def index_qualys_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qualys\" + """Return vulnerability data stored in index \"qualcomm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` :param page: set the page number of the response :type page: int @@ -248589,7 +248589,7 @@ async def index_qualys_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_get_serialize( + _param = self._index_qualcomm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -248621,7 +248621,7 @@ async def index_qualys_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", '404': "str", '500': "str", } @@ -248632,7 +248632,7 @@ async def index_qualys_get_without_preload_content( return response_data.response - def _index_qualys_get_serialize( + def _index_qualcomm_get_serialize( self, page, limit, @@ -248800,7 +248800,7 @@ def _index_qualys_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qualys', + resource_path='/v3/index/qualcomm', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -248817,7 +248817,7 @@ def _index_qualys_get_serialize( @validate_call - async def index_qualys_qids_get( + async def index_qualys_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -248855,10 +248855,10 @@ async def index_qualys_qids_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination: - """Return vulnerability data stored in index \"qualys-qids\" + ) -> RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination: + """Return vulnerability data stored in index \"qualys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` :param page: set the page number of the response :type page: int @@ -248930,7 +248930,7 @@ async def index_qualys_qids_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_qids_get_serialize( + _param = self._index_qualys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -248962,7 +248962,7 @@ async def index_qualys_qids_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", '404': "str", '500': "str", } @@ -248978,7 +248978,7 @@ async def index_qualys_qids_get( @validate_call - async def index_qualys_qids_get_with_http_info( + async def index_qualys_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249016,10 +249016,10 @@ async def index_qualys_qids_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination]: - """Return vulnerability data stored in index \"qualys-qids\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination]: + """Return vulnerability data stored in index \"qualys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` :param page: set the page number of the response :type page: int @@ -249091,7 +249091,7 @@ async def index_qualys_qids_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_qids_get_serialize( + _param = self._index_qualys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249123,7 +249123,7 @@ async def index_qualys_qids_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", '404': "str", '500': "str", } @@ -249139,7 +249139,7 @@ async def index_qualys_qids_get_with_http_info( @validate_call - async def index_qualys_qids_get_without_preload_content( + async def index_qualys_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249178,9 +249178,9 @@ async def index_qualys_qids_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qualys-qids\" + """Return vulnerability data stored in index \"qualys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` :param page: set the page number of the response :type page: int @@ -249252,7 +249252,7 @@ async def index_qualys_qids_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_qids_get_serialize( + _param = self._index_qualys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249284,7 +249284,7 @@ async def index_qualys_qids_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", '404': "str", '500': "str", } @@ -249295,7 +249295,7 @@ async def index_qualys_qids_get_without_preload_content( return response_data.response - def _index_qualys_qids_get_serialize( + def _index_qualys_get_serialize( self, page, limit, @@ -249463,7 +249463,7 @@ def _index_qualys_qids_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qualys-qids', + resource_path='/v3/index/qualys', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -249480,7 +249480,7 @@ def _index_qualys_qids_get_serialize( @validate_call - async def index_qubes_qsb_get( + async def index_qualys_qids_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249518,10 +249518,10 @@ async def index_qubes_qsb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination: - """Return vulnerability data stored in index \"qubes-qsb\" + ) -> RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination: + """Return vulnerability data stored in index \"qualys-qids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` :param page: set the page number of the response :type page: int @@ -249593,7 +249593,7 @@ async def index_qubes_qsb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qubes_qsb_get_serialize( + _param = self._index_qualys_qids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249625,7 +249625,7 @@ async def index_qubes_qsb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", '404': "str", '500': "str", } @@ -249641,7 +249641,7 @@ async def index_qubes_qsb_get( @validate_call - async def index_qubes_qsb_get_with_http_info( + async def index_qualys_qids_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249679,10 +249679,10 @@ async def index_qubes_qsb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination]: - """Return vulnerability data stored in index \"qubes-qsb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination]: + """Return vulnerability data stored in index \"qualys-qids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` :param page: set the page number of the response :type page: int @@ -249754,7 +249754,7 @@ async def index_qubes_qsb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qubes_qsb_get_serialize( + _param = self._index_qualys_qids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249786,7 +249786,7 @@ async def index_qubes_qsb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", '404': "str", '500': "str", } @@ -249802,7 +249802,7 @@ async def index_qubes_qsb_get_with_http_info( @validate_call - async def index_qubes_qsb_get_without_preload_content( + async def index_qualys_qids_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249841,9 +249841,9 @@ async def index_qubes_qsb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qubes-qsb\" + """Return vulnerability data stored in index \"qualys-qids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` :param page: set the page number of the response :type page: int @@ -249915,7 +249915,7 @@ async def index_qubes_qsb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qubes_qsb_get_serialize( + _param = self._index_qualys_qids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249947,7 +249947,7 @@ async def index_qubes_qsb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", '404': "str", '500': "str", } @@ -249958,7 +249958,7 @@ async def index_qubes_qsb_get_without_preload_content( return response_data.response - def _index_qubes_qsb_get_serialize( + def _index_qualys_qids_get_serialize( self, page, limit, @@ -250126,7 +250126,7 @@ def _index_qubes_qsb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qubes-qsb', + resource_path='/v3/index/qualys-qids', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -250143,7 +250143,7 @@ def _index_qubes_qsb_get_serialize( @validate_call - async def index_ransomware_get( + async def index_qubes_qsb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -250181,10 +250181,10 @@ async def index_ransomware_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination: - """Return vulnerability data stored in index \"ransomware\" + ) -> RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination: + """Return vulnerability data stored in index \"qubes-qsb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` :param page: set the page number of the response :type page: int @@ -250256,7 +250256,7 @@ async def index_ransomware_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ransomware_get_serialize( + _param = self._index_qubes_qsb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -250288,7 +250288,7 @@ async def index_ransomware_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", '404': "str", '500': "str", } @@ -250304,7 +250304,7 @@ async def index_ransomware_get( @validate_call - async def index_ransomware_get_with_http_info( + async def index_qubes_qsb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -250342,10 +250342,10 @@ async def index_ransomware_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination]: - """Return vulnerability data stored in index \"ransomware\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination]: + """Return vulnerability data stored in index \"qubes-qsb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` :param page: set the page number of the response :type page: int @@ -250417,7 +250417,7 @@ async def index_ransomware_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ransomware_get_serialize( + _param = self._index_qubes_qsb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -250449,7 +250449,7 @@ async def index_ransomware_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", '404': "str", '500': "str", } @@ -250465,7 +250465,7 @@ async def index_ransomware_get_with_http_info( @validate_call - async def index_ransomware_get_without_preload_content( + async def index_qubes_qsb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -250504,9 +250504,9 @@ async def index_ransomware_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ransomware\" + """Return vulnerability data stored in index \"qubes-qsb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` :param page: set the page number of the response :type page: int @@ -250578,7 +250578,7 @@ async def index_ransomware_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ransomware_get_serialize( + _param = self._index_qubes_qsb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -250610,7 +250610,7 @@ async def index_ransomware_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", '404': "str", '500': "str", } @@ -250621,7 +250621,7 @@ async def index_ransomware_get_without_preload_content( return response_data.response - def _index_ransomware_get_serialize( + def _index_qubes_qsb_get_serialize( self, page, limit, @@ -250789,7 +250789,7 @@ def _index_ransomware_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ransomware', + resource_path='/v3/index/qubes-qsb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -250806,7 +250806,7 @@ def _index_ransomware_get_serialize( @validate_call - async def index_red_lion_get( + async def index_ransomware_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -250844,10 +250844,10 @@ async def index_red_lion_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination: - """Return vulnerability data stored in index \"red-lion\" + ) -> RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination: + """Return vulnerability data stored in index \"ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -250919,7 +250919,7 @@ async def index_red_lion_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_red_lion_get_serialize( + _param = self._index_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -250951,7 +250951,7 @@ async def index_red_lion_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", '404': "str", '500': "str", } @@ -250967,7 +250967,7 @@ async def index_red_lion_get( @validate_call - async def index_red_lion_get_with_http_info( + async def index_ransomware_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251005,10 +251005,10 @@ async def index_red_lion_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination]: - """Return vulnerability data stored in index \"red-lion\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination]: + """Return vulnerability data stored in index \"ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -251080,7 +251080,7 @@ async def index_red_lion_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_red_lion_get_serialize( + _param = self._index_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251112,7 +251112,7 @@ async def index_red_lion_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", '404': "str", '500': "str", } @@ -251128,7 +251128,7 @@ async def index_red_lion_get_with_http_info( @validate_call - async def index_red_lion_get_without_preload_content( + async def index_ransomware_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251167,9 +251167,9 @@ async def index_red_lion_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"red-lion\" + """Return vulnerability data stored in index \"ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -251241,7 +251241,7 @@ async def index_red_lion_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_red_lion_get_serialize( + _param = self._index_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251273,7 +251273,7 @@ async def index_red_lion_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", '404': "str", '500': "str", } @@ -251284,7 +251284,7 @@ async def index_red_lion_get_without_preload_content( return response_data.response - def _index_red_lion_get_serialize( + def _index_ransomware_get_serialize( self, page, limit, @@ -251452,7 +251452,7 @@ def _index_red_lion_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/red-lion', + resource_path='/v3/index/ransomware', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -251469,7 +251469,7 @@ def _index_red_lion_get_serialize( @validate_call - async def index_redhat_cves_get( + async def index_red_lion_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251507,10 +251507,10 @@ async def index_redhat_cves_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination: - """Return vulnerability data stored in index \"redhat-cves\" + ) -> RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination: + """Return vulnerability data stored in index \"red-lion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` :param page: set the page number of the response :type page: int @@ -251582,7 +251582,7 @@ async def index_redhat_cves_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_cves_get_serialize( + _param = self._index_red_lion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251614,7 +251614,7 @@ async def index_redhat_cves_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", '404': "str", '500': "str", } @@ -251630,7 +251630,7 @@ async def index_redhat_cves_get( @validate_call - async def index_redhat_cves_get_with_http_info( + async def index_red_lion_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251668,10 +251668,10 @@ async def index_redhat_cves_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination]: - """Return vulnerability data stored in index \"redhat-cves\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination]: + """Return vulnerability data stored in index \"red-lion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` :param page: set the page number of the response :type page: int @@ -251743,7 +251743,7 @@ async def index_redhat_cves_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_cves_get_serialize( + _param = self._index_red_lion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251775,7 +251775,7 @@ async def index_redhat_cves_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", '404': "str", '500': "str", } @@ -251791,7 +251791,7 @@ async def index_redhat_cves_get_with_http_info( @validate_call - async def index_redhat_cves_get_without_preload_content( + async def index_red_lion_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251830,9 +251830,9 @@ async def index_redhat_cves_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"redhat-cves\" + """Return vulnerability data stored in index \"red-lion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` :param page: set the page number of the response :type page: int @@ -251904,7 +251904,7 @@ async def index_redhat_cves_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_cves_get_serialize( + _param = self._index_red_lion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251936,7 +251936,7 @@ async def index_redhat_cves_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", '404': "str", '500': "str", } @@ -251947,7 +251947,7 @@ async def index_redhat_cves_get_without_preload_content( return response_data.response - def _index_redhat_cves_get_serialize( + def _index_red_lion_get_serialize( self, page, limit, @@ -252115,7 +252115,7 @@ def _index_redhat_cves_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/redhat-cves', + resource_path='/v3/index/red-lion', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -252132,7 +252132,7 @@ def _index_redhat_cves_get_serialize( @validate_call - async def index_redhat_get( + async def index_redhat_cves_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252170,10 +252170,10 @@ async def index_redhat_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination: - """Return vulnerability data stored in index \"redhat\" + ) -> RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination: + """Return vulnerability data stored in index \"redhat-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` :param page: set the page number of the response :type page: int @@ -252245,7 +252245,7 @@ async def index_redhat_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_get_serialize( + _param = self._index_redhat_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -252277,7 +252277,7 @@ async def index_redhat_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", '404': "str", '500': "str", } @@ -252293,7 +252293,7 @@ async def index_redhat_get( @validate_call - async def index_redhat_get_with_http_info( + async def index_redhat_cves_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252331,10 +252331,10 @@ async def index_redhat_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination]: - """Return vulnerability data stored in index \"redhat\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination]: + """Return vulnerability data stored in index \"redhat-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` :param page: set the page number of the response :type page: int @@ -252406,7 +252406,7 @@ async def index_redhat_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_get_serialize( + _param = self._index_redhat_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -252438,7 +252438,7 @@ async def index_redhat_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", '404': "str", '500': "str", } @@ -252454,7 +252454,7 @@ async def index_redhat_get_with_http_info( @validate_call - async def index_redhat_get_without_preload_content( + async def index_redhat_cves_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252493,9 +252493,9 @@ async def index_redhat_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"redhat\" + """Return vulnerability data stored in index \"redhat-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` :param page: set the page number of the response :type page: int @@ -252567,7 +252567,7 @@ async def index_redhat_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_get_serialize( + _param = self._index_redhat_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -252599,7 +252599,7 @@ async def index_redhat_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", '404': "str", '500': "str", } @@ -252610,7 +252610,7 @@ async def index_redhat_get_without_preload_content( return response_data.response - def _index_redhat_get_serialize( + def _index_redhat_cves_get_serialize( self, page, limit, @@ -252778,7 +252778,7 @@ def _index_redhat_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/redhat', + resource_path='/v3/index/redhat-cves', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -252795,7 +252795,7 @@ def _index_redhat_get_serialize( @validate_call - async def index_renesas_get( + async def index_redhat_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252833,10 +252833,10 @@ async def index_renesas_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination: - """Return vulnerability data stored in index \"renesas\" + ) -> RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination: + """Return vulnerability data stored in index \"redhat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` :param page: set the page number of the response :type page: int @@ -252908,7 +252908,7 @@ async def index_renesas_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_renesas_get_serialize( + _param = self._index_redhat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -252940,7 +252940,7 @@ async def index_renesas_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", '404': "str", '500': "str", } @@ -252956,7 +252956,7 @@ async def index_renesas_get( @validate_call - async def index_renesas_get_with_http_info( + async def index_redhat_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252994,10 +252994,10 @@ async def index_renesas_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination]: - """Return vulnerability data stored in index \"renesas\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination]: + """Return vulnerability data stored in index \"redhat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` :param page: set the page number of the response :type page: int @@ -253069,7 +253069,7 @@ async def index_renesas_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_renesas_get_serialize( + _param = self._index_redhat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253101,7 +253101,7 @@ async def index_renesas_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", '404': "str", '500': "str", } @@ -253117,7 +253117,7 @@ async def index_renesas_get_with_http_info( @validate_call - async def index_renesas_get_without_preload_content( + async def index_redhat_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -253156,9 +253156,9 @@ async def index_renesas_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"renesas\" + """Return vulnerability data stored in index \"redhat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` :param page: set the page number of the response :type page: int @@ -253230,7 +253230,7 @@ async def index_renesas_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_renesas_get_serialize( + _param = self._index_redhat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253262,7 +253262,7 @@ async def index_renesas_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", '404': "str", '500': "str", } @@ -253273,7 +253273,7 @@ async def index_renesas_get_without_preload_content( return response_data.response - def _index_renesas_get_serialize( + def _index_redhat_get_serialize( self, page, limit, @@ -253441,7 +253441,7 @@ def _index_renesas_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/renesas', + resource_path='/v3/index/redhat', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -253458,7 +253458,7 @@ def _index_renesas_get_serialize( @validate_call - async def index_revive_get( + async def index_renesas_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -253496,10 +253496,10 @@ async def index_revive_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination: - """Return vulnerability data stored in index \"revive\" + ) -> RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination: + """Return vulnerability data stored in index \"renesas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` :param page: set the page number of the response :type page: int @@ -253571,7 +253571,7 @@ async def index_revive_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_revive_get_serialize( + _param = self._index_renesas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253603,7 +253603,7 @@ async def index_revive_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", '404': "str", '500': "str", } @@ -253619,7 +253619,7 @@ async def index_revive_get( @validate_call - async def index_revive_get_with_http_info( + async def index_renesas_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -253657,10 +253657,10 @@ async def index_revive_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination]: - """Return vulnerability data stored in index \"revive\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination]: + """Return vulnerability data stored in index \"renesas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` :param page: set the page number of the response :type page: int @@ -253732,7 +253732,7 @@ async def index_revive_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_revive_get_serialize( + _param = self._index_renesas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253764,7 +253764,7 @@ async def index_revive_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", '404': "str", '500': "str", } @@ -253780,7 +253780,7 @@ async def index_revive_get_with_http_info( @validate_call - async def index_revive_get_without_preload_content( + async def index_renesas_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -253819,9 +253819,9 @@ async def index_revive_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"revive\" + """Return vulnerability data stored in index \"renesas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` :param page: set the page number of the response :type page: int @@ -253893,7 +253893,7 @@ async def index_revive_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_revive_get_serialize( + _param = self._index_renesas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253925,7 +253925,7 @@ async def index_revive_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", '404': "str", '500': "str", } @@ -253936,7 +253936,7 @@ async def index_revive_get_without_preload_content( return response_data.response - def _index_revive_get_serialize( + def _index_renesas_get_serialize( self, page, limit, @@ -254104,7 +254104,7 @@ def _index_revive_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/revive', + resource_path='/v3/index/renesas', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -254121,7 +254121,7 @@ def _index_revive_get_serialize( @validate_call - async def index_roche_get( + async def index_revive_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254159,10 +254159,10 @@ async def index_roche_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination: - """Return vulnerability data stored in index \"roche\" + ) -> RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination: + """Return vulnerability data stored in index \"revive\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` :param page: set the page number of the response :type page: int @@ -254234,7 +254234,7 @@ async def index_roche_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_roche_get_serialize( + _param = self._index_revive_get_serialize( page=page, limit=limit, cursor=cursor, @@ -254266,7 +254266,7 @@ async def index_roche_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", '404': "str", '500': "str", } @@ -254282,7 +254282,7 @@ async def index_roche_get( @validate_call - async def index_roche_get_with_http_info( + async def index_revive_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254320,10 +254320,10 @@ async def index_roche_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination]: - """Return vulnerability data stored in index \"roche\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination]: + """Return vulnerability data stored in index \"revive\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` :param page: set the page number of the response :type page: int @@ -254395,7 +254395,7 @@ async def index_roche_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_roche_get_serialize( + _param = self._index_revive_get_serialize( page=page, limit=limit, cursor=cursor, @@ -254427,7 +254427,7 @@ async def index_roche_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", '404': "str", '500': "str", } @@ -254443,7 +254443,7 @@ async def index_roche_get_with_http_info( @validate_call - async def index_roche_get_without_preload_content( + async def index_revive_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254482,9 +254482,9 @@ async def index_roche_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"roche\" + """Return vulnerability data stored in index \"revive\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` :param page: set the page number of the response :type page: int @@ -254556,7 +254556,7 @@ async def index_roche_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_roche_get_serialize( + _param = self._index_revive_get_serialize( page=page, limit=limit, cursor=cursor, @@ -254588,7 +254588,7 @@ async def index_roche_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", '404': "str", '500': "str", } @@ -254599,7 +254599,7 @@ async def index_roche_get_without_preload_content( return response_data.response - def _index_roche_get_serialize( + def _index_revive_get_serialize( self, page, limit, @@ -254767,7 +254767,7 @@ def _index_roche_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/roche', + resource_path='/v3/index/revive', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -254784,7 +254784,7 @@ def _index_roche_get_serialize( @validate_call - async def index_rockwell_get( + async def index_roche_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254822,10 +254822,10 @@ async def index_rockwell_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination: - """Return vulnerability data stored in index \"rockwell\" + ) -> RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination: + """Return vulnerability data stored in index \"roche\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` :param page: set the page number of the response :type page: int @@ -254897,7 +254897,7 @@ async def index_rockwell_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rockwell_get_serialize( + _param = self._index_roche_get_serialize( page=page, limit=limit, cursor=cursor, @@ -254929,7 +254929,7 @@ async def index_rockwell_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", '404': "str", '500': "str", } @@ -254945,7 +254945,7 @@ async def index_rockwell_get( @validate_call - async def index_rockwell_get_with_http_info( + async def index_roche_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254983,10 +254983,10 @@ async def index_rockwell_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination]: - """Return vulnerability data stored in index \"rockwell\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination]: + """Return vulnerability data stored in index \"roche\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` :param page: set the page number of the response :type page: int @@ -255058,7 +255058,7 @@ async def index_rockwell_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rockwell_get_serialize( + _param = self._index_roche_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255090,7 +255090,7 @@ async def index_rockwell_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", '404': "str", '500': "str", } @@ -255106,7 +255106,7 @@ async def index_rockwell_get_with_http_info( @validate_call - async def index_rockwell_get_without_preload_content( + async def index_roche_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -255145,9 +255145,9 @@ async def index_rockwell_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rockwell\" + """Return vulnerability data stored in index \"roche\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` :param page: set the page number of the response :type page: int @@ -255219,7 +255219,7 @@ async def index_rockwell_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rockwell_get_serialize( + _param = self._index_roche_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255251,7 +255251,7 @@ async def index_rockwell_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", '404': "str", '500': "str", } @@ -255262,7 +255262,7 @@ async def index_rockwell_get_without_preload_content( return response_data.response - def _index_rockwell_get_serialize( + def _index_roche_get_serialize( self, page, limit, @@ -255430,7 +255430,7 @@ def _index_rockwell_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rockwell', + resource_path='/v3/index/roche', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -255447,7 +255447,7 @@ def _index_rockwell_get_serialize( @validate_call - async def index_rocky_errata_get( + async def index_rockwell_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -255485,10 +255485,10 @@ async def index_rocky_errata_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination: - """Return vulnerability data stored in index \"rocky-errata\" + ) -> RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination: + """Return vulnerability data stored in index \"rockwell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` :param page: set the page number of the response :type page: int @@ -255560,7 +255560,7 @@ async def index_rocky_errata_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_errata_get_serialize( + _param = self._index_rockwell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255592,7 +255592,7 @@ async def index_rocky_errata_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", '404': "str", '500': "str", } @@ -255608,7 +255608,7 @@ async def index_rocky_errata_get( @validate_call - async def index_rocky_errata_get_with_http_info( + async def index_rockwell_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -255646,10 +255646,10 @@ async def index_rocky_errata_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination]: - """Return vulnerability data stored in index \"rocky-errata\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination]: + """Return vulnerability data stored in index \"rockwell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` :param page: set the page number of the response :type page: int @@ -255721,7 +255721,7 @@ async def index_rocky_errata_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_errata_get_serialize( + _param = self._index_rockwell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255753,7 +255753,7 @@ async def index_rocky_errata_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", '404': "str", '500': "str", } @@ -255769,7 +255769,7 @@ async def index_rocky_errata_get_with_http_info( @validate_call - async def index_rocky_errata_get_without_preload_content( + async def index_rockwell_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -255808,9 +255808,9 @@ async def index_rocky_errata_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rocky-errata\" + """Return vulnerability data stored in index \"rockwell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` :param page: set the page number of the response :type page: int @@ -255882,7 +255882,7 @@ async def index_rocky_errata_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_errata_get_serialize( + _param = self._index_rockwell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255914,7 +255914,7 @@ async def index_rocky_errata_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", '404': "str", '500': "str", } @@ -255925,7 +255925,7 @@ async def index_rocky_errata_get_without_preload_content( return response_data.response - def _index_rocky_errata_get_serialize( + def _index_rockwell_get_serialize( self, page, limit, @@ -256093,7 +256093,7 @@ def _index_rocky_errata_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rocky-errata', + resource_path='/v3/index/rockwell', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -256110,7 +256110,7 @@ def _index_rocky_errata_get_serialize( @validate_call - async def index_rocky_get( + async def index_rocky_errata_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256148,10 +256148,10 @@ async def index_rocky_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiUpdatePaginatePagination: - """Return vulnerability data stored in index \"rocky\" + ) -> RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination: + """Return vulnerability data stored in index \"rocky-errata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` :param page: set the page number of the response :type page: int @@ -256223,7 +256223,7 @@ async def index_rocky_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_get_serialize( + _param = self._index_rocky_errata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -256255,7 +256255,7 @@ async def index_rocky_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", '404': "str", '500': "str", } @@ -256271,7 +256271,7 @@ async def index_rocky_get( @validate_call - async def index_rocky_get_with_http_info( + async def index_rocky_errata_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256309,10 +256309,10 @@ async def index_rocky_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiUpdatePaginatePagination]: - """Return vulnerability data stored in index \"rocky\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination]: + """Return vulnerability data stored in index \"rocky-errata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` :param page: set the page number of the response :type page: int @@ -256384,7 +256384,7 @@ async def index_rocky_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_get_serialize( + _param = self._index_rocky_errata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -256416,7 +256416,7 @@ async def index_rocky_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", '404': "str", '500': "str", } @@ -256432,7 +256432,7 @@ async def index_rocky_get_with_http_info( @validate_call - async def index_rocky_get_without_preload_content( + async def index_rocky_errata_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256471,9 +256471,9 @@ async def index_rocky_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rocky\" + """Return vulnerability data stored in index \"rocky-errata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` :param page: set the page number of the response :type page: int @@ -256545,7 +256545,7 @@ async def index_rocky_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_get_serialize( + _param = self._index_rocky_errata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -256577,7 +256577,7 @@ async def index_rocky_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", '404': "str", '500': "str", } @@ -256588,7 +256588,7 @@ async def index_rocky_get_without_preload_content( return response_data.response - def _index_rocky_get_serialize( + def _index_rocky_errata_get_serialize( self, page, limit, @@ -256756,7 +256756,7 @@ def _index_rocky_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rocky', + resource_path='/v3/index/rocky-errata', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -256773,7 +256773,7 @@ def _index_rocky_get_serialize( @validate_call - async def index_rocky_purls_get( + async def index_rocky_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256811,10 +256811,10 @@ async def index_rocky_purls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination: - """Return vulnerability data stored in index \"rocky-purls\" + ) -> RenderResponseWithMetadataArrayApiUpdatePaginatePagination: + """Return vulnerability data stored in index \"rocky\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` :param page: set the page number of the response :type page: int @@ -256886,7 +256886,7 @@ async def index_rocky_purls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_purls_get_serialize( + _param = self._index_rocky_get_serialize( page=page, limit=limit, cursor=cursor, @@ -256918,7 +256918,7 @@ async def index_rocky_purls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", '404': "str", '500': "str", } @@ -256934,7 +256934,7 @@ async def index_rocky_purls_get( @validate_call - async def index_rocky_purls_get_with_http_info( + async def index_rocky_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256972,10 +256972,10 @@ async def index_rocky_purls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination]: - """Return vulnerability data stored in index \"rocky-purls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiUpdatePaginatePagination]: + """Return vulnerability data stored in index \"rocky\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` :param page: set the page number of the response :type page: int @@ -257047,7 +257047,7 @@ async def index_rocky_purls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_purls_get_serialize( + _param = self._index_rocky_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257079,7 +257079,7 @@ async def index_rocky_purls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", '404': "str", '500': "str", } @@ -257095,7 +257095,7 @@ async def index_rocky_purls_get_with_http_info( @validate_call - async def index_rocky_purls_get_without_preload_content( + async def index_rocky_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -257134,9 +257134,9 @@ async def index_rocky_purls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rocky-purls\" + """Return vulnerability data stored in index \"rocky\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` :param page: set the page number of the response :type page: int @@ -257208,7 +257208,7 @@ async def index_rocky_purls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_purls_get_serialize( + _param = self._index_rocky_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257240,7 +257240,7 @@ async def index_rocky_purls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", '404': "str", '500': "str", } @@ -257251,7 +257251,7 @@ async def index_rocky_purls_get_without_preload_content( return response_data.response - def _index_rocky_purls_get_serialize( + def _index_rocky_get_serialize( self, page, limit, @@ -257419,7 +257419,7 @@ def _index_rocky_purls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rocky-purls', + resource_path='/v3/index/rocky', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -257436,7 +257436,7 @@ def _index_rocky_purls_get_serialize( @validate_call - async def index_rsync_get( + async def index_rocky_purls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -257474,10 +257474,10 @@ async def index_rsync_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination: - """Return vulnerability data stored in index \"rsync\" + ) -> RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination: + """Return vulnerability data stored in index \"rocky-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` :param page: set the page number of the response :type page: int @@ -257549,7 +257549,7 @@ async def index_rsync_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rsync_get_serialize( + _param = self._index_rocky_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257581,7 +257581,7 @@ async def index_rsync_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -257597,7 +257597,7 @@ async def index_rsync_get( @validate_call - async def index_rsync_get_with_http_info( + async def index_rocky_purls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -257635,10 +257635,10 @@ async def index_rsync_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination]: - """Return vulnerability data stored in index \"rsync\" + ) -> ApiResponse[RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination]: + """Return vulnerability data stored in index \"rocky-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` :param page: set the page number of the response :type page: int @@ -257710,7 +257710,7 @@ async def index_rsync_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rsync_get_serialize( + _param = self._index_rocky_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257742,7 +257742,7 @@ async def index_rsync_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -257758,7 +257758,7 @@ async def index_rsync_get_with_http_info( @validate_call - async def index_rsync_get_without_preload_content( + async def index_rocky_purls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -257797,9 +257797,9 @@ async def index_rsync_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rsync\" + """Return vulnerability data stored in index \"rocky-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` :param page: set the page number of the response :type page: int @@ -257871,7 +257871,7 @@ async def index_rsync_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rsync_get_serialize( + _param = self._index_rocky_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257903,7 +257903,7 @@ async def index_rsync_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -257914,7 +257914,7 @@ async def index_rsync_get_without_preload_content( return response_data.response - def _index_rsync_get_serialize( + def _index_rocky_purls_get_serialize( self, page, limit, @@ -258082,7 +258082,7 @@ def _index_rsync_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rsync', + resource_path='/v3/index/rocky-purls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -258099,7 +258099,7 @@ def _index_rsync_get_serialize( @validate_call - async def index_ruckus_get( + async def index_rsync_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258137,10 +258137,10 @@ async def index_ruckus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination: - """Return vulnerability data stored in index \"ruckus\" + ) -> RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination: + """Return vulnerability data stored in index \"rsync\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` :param page: set the page number of the response :type page: int @@ -258212,7 +258212,7 @@ async def index_ruckus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ruckus_get_serialize( + _param = self._index_rsync_get_serialize( page=page, limit=limit, cursor=cursor, @@ -258244,7 +258244,7 @@ async def index_ruckus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", '404': "str", '500': "str", } @@ -258260,7 +258260,7 @@ async def index_ruckus_get( @validate_call - async def index_ruckus_get_with_http_info( + async def index_rsync_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258298,10 +258298,10 @@ async def index_ruckus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination]: - """Return vulnerability data stored in index \"ruckus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination]: + """Return vulnerability data stored in index \"rsync\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` :param page: set the page number of the response :type page: int @@ -258373,7 +258373,7 @@ async def index_ruckus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ruckus_get_serialize( + _param = self._index_rsync_get_serialize( page=page, limit=limit, cursor=cursor, @@ -258405,7 +258405,7 @@ async def index_ruckus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", '404': "str", '500': "str", } @@ -258421,7 +258421,7 @@ async def index_ruckus_get_with_http_info( @validate_call - async def index_ruckus_get_without_preload_content( + async def index_rsync_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258460,9 +258460,9 @@ async def index_ruckus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ruckus\" + """Return vulnerability data stored in index \"rsync\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` :param page: set the page number of the response :type page: int @@ -258534,7 +258534,7 @@ async def index_ruckus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ruckus_get_serialize( + _param = self._index_rsync_get_serialize( page=page, limit=limit, cursor=cursor, @@ -258566,7 +258566,7 @@ async def index_ruckus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", '404': "str", '500': "str", } @@ -258577,7 +258577,7 @@ async def index_ruckus_get_without_preload_content( return response_data.response - def _index_ruckus_get_serialize( + def _index_rsync_get_serialize( self, page, limit, @@ -258745,7 +258745,7 @@ def _index_ruckus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ruckus', + resource_path='/v3/index/rsync', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -258762,7 +258762,7 @@ def _index_ruckus_get_serialize( @validate_call - async def index_rustsec_advisories_get( + async def index_ruckus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258800,10 +258800,10 @@ async def index_rustsec_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"rustsec-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination: + """Return vulnerability data stored in index \"ruckus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` :param page: set the page number of the response :type page: int @@ -258875,7 +258875,7 @@ async def index_rustsec_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rustsec_advisories_get_serialize( + _param = self._index_ruckus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -258907,7 +258907,7 @@ async def index_rustsec_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", '404': "str", '500': "str", } @@ -258923,7 +258923,7 @@ async def index_rustsec_advisories_get( @validate_call - async def index_rustsec_advisories_get_with_http_info( + async def index_ruckus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258961,10 +258961,10 @@ async def index_rustsec_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"rustsec-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination]: + """Return vulnerability data stored in index \"ruckus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` :param page: set the page number of the response :type page: int @@ -259036,7 +259036,7 @@ async def index_rustsec_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rustsec_advisories_get_serialize( + _param = self._index_ruckus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259068,7 +259068,7 @@ async def index_rustsec_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", '404': "str", '500': "str", } @@ -259084,7 +259084,7 @@ async def index_rustsec_advisories_get_with_http_info( @validate_call - async def index_rustsec_advisories_get_without_preload_content( + async def index_ruckus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -259123,9 +259123,9 @@ async def index_rustsec_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rustsec-advisories\" + """Return vulnerability data stored in index \"ruckus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` :param page: set the page number of the response :type page: int @@ -259197,7 +259197,7 @@ async def index_rustsec_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rustsec_advisories_get_serialize( + _param = self._index_ruckus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259229,7 +259229,7 @@ async def index_rustsec_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", '404': "str", '500': "str", } @@ -259240,7 +259240,7 @@ async def index_rustsec_advisories_get_without_preload_content( return response_data.response - def _index_rustsec_advisories_get_serialize( + def _index_ruckus_get_serialize( self, page, limit, @@ -259408,7 +259408,7 @@ def _index_rustsec_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rustsec-advisories', + resource_path='/v3/index/ruckus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -259425,7 +259425,7 @@ def _index_rustsec_advisories_get_serialize( @validate_call - async def index_sacert_get( + async def index_rustsec_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -259463,10 +259463,10 @@ async def index_sacert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"sacert\" + ) -> RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"rustsec-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -259538,7 +259538,7 @@ async def index_sacert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sacert_get_serialize( + _param = self._index_rustsec_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259570,7 +259570,7 @@ async def index_sacert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -259586,7 +259586,7 @@ async def index_sacert_get( @validate_call - async def index_sacert_get_with_http_info( + async def index_rustsec_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -259624,10 +259624,10 @@ async def index_sacert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"sacert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"rustsec-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -259699,7 +259699,7 @@ async def index_sacert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sacert_get_serialize( + _param = self._index_rustsec_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259731,7 +259731,7 @@ async def index_sacert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -259747,7 +259747,7 @@ async def index_sacert_get_with_http_info( @validate_call - async def index_sacert_get_without_preload_content( + async def index_rustsec_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -259786,9 +259786,9 @@ async def index_sacert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sacert\" + """Return vulnerability data stored in index \"rustsec-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -259860,7 +259860,7 @@ async def index_sacert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sacert_get_serialize( + _param = self._index_rustsec_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259892,7 +259892,7 @@ async def index_sacert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -259903,7 +259903,7 @@ async def index_sacert_get_without_preload_content( return response_data.response - def _index_sacert_get_serialize( + def _index_rustsec_advisories_get_serialize( self, page, limit, @@ -260071,7 +260071,7 @@ def _index_sacert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sacert', + resource_path='/v3/index/rustsec-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -260088,7 +260088,7 @@ def _index_sacert_get_serialize( @validate_call - async def index_safran_get( + async def index_sacert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260126,10 +260126,10 @@ async def index_safran_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination: - """Return vulnerability data stored in index \"safran\" + ) -> RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"sacert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` :param page: set the page number of the response :type page: int @@ -260201,7 +260201,7 @@ async def index_safran_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_safran_get_serialize( + _param = self._index_sacert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -260233,7 +260233,7 @@ async def index_safran_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -260249,7 +260249,7 @@ async def index_safran_get( @validate_call - async def index_safran_get_with_http_info( + async def index_sacert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260287,10 +260287,10 @@ async def index_safran_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination]: - """Return vulnerability data stored in index \"safran\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"sacert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` :param page: set the page number of the response :type page: int @@ -260362,7 +260362,7 @@ async def index_safran_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_safran_get_serialize( + _param = self._index_sacert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -260394,7 +260394,7 @@ async def index_safran_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -260410,7 +260410,7 @@ async def index_safran_get_with_http_info( @validate_call - async def index_safran_get_without_preload_content( + async def index_sacert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260449,9 +260449,9 @@ async def index_safran_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"safran\" + """Return vulnerability data stored in index \"sacert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` :param page: set the page number of the response :type page: int @@ -260523,7 +260523,7 @@ async def index_safran_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_safran_get_serialize( + _param = self._index_sacert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -260555,7 +260555,7 @@ async def index_safran_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -260566,7 +260566,7 @@ async def index_safran_get_without_preload_content( return response_data.response - def _index_safran_get_serialize( + def _index_sacert_get_serialize( self, page, limit, @@ -260734,7 +260734,7 @@ def _index_safran_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/safran', + resource_path='/v3/index/sacert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -260751,7 +260751,7 @@ def _index_safran_get_serialize( @validate_call - async def index_saint_get( + async def index_safran_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260789,10 +260789,10 @@ async def index_saint_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination: - """Return vulnerability data stored in index \"saint\" + ) -> RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination: + """Return vulnerability data stored in index \"safran\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` :param page: set the page number of the response :type page: int @@ -260864,7 +260864,7 @@ async def index_saint_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_saint_get_serialize( + _param = self._index_safran_get_serialize( page=page, limit=limit, cursor=cursor, @@ -260896,7 +260896,7 @@ async def index_saint_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", '404': "str", '500': "str", } @@ -260912,7 +260912,7 @@ async def index_saint_get( @validate_call - async def index_saint_get_with_http_info( + async def index_safran_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260950,10 +260950,10 @@ async def index_saint_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination]: - """Return vulnerability data stored in index \"saint\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination]: + """Return vulnerability data stored in index \"safran\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` :param page: set the page number of the response :type page: int @@ -261025,7 +261025,7 @@ async def index_saint_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_saint_get_serialize( + _param = self._index_safran_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261057,7 +261057,7 @@ async def index_saint_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", '404': "str", '500': "str", } @@ -261073,7 +261073,7 @@ async def index_saint_get_with_http_info( @validate_call - async def index_saint_get_without_preload_content( + async def index_safran_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -261112,9 +261112,9 @@ async def index_saint_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"saint\" + """Return vulnerability data stored in index \"safran\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` :param page: set the page number of the response :type page: int @@ -261186,7 +261186,7 @@ async def index_saint_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_saint_get_serialize( + _param = self._index_safran_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261218,7 +261218,7 @@ async def index_saint_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", '404': "str", '500': "str", } @@ -261229,7 +261229,7 @@ async def index_saint_get_without_preload_content( return response_data.response - def _index_saint_get_serialize( + def _index_safran_get_serialize( self, page, limit, @@ -261397,7 +261397,7 @@ def _index_saint_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/saint', + resource_path='/v3/index/safran', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -261414,7 +261414,7 @@ def _index_saint_get_serialize( @validate_call - async def index_salesforce_get( + async def index_saint_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -261452,10 +261452,10 @@ async def index_salesforce_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination: - """Return vulnerability data stored in index \"salesforce\" + ) -> RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination: + """Return vulnerability data stored in index \"saint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` :param page: set the page number of the response :type page: int @@ -261527,7 +261527,7 @@ async def index_salesforce_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_salesforce_get_serialize( + _param = self._index_saint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261559,7 +261559,7 @@ async def index_salesforce_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", '404': "str", '500': "str", } @@ -261575,7 +261575,7 @@ async def index_salesforce_get( @validate_call - async def index_salesforce_get_with_http_info( + async def index_saint_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -261613,10 +261613,10 @@ async def index_salesforce_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination]: - """Return vulnerability data stored in index \"salesforce\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination]: + """Return vulnerability data stored in index \"saint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` :param page: set the page number of the response :type page: int @@ -261688,7 +261688,7 @@ async def index_salesforce_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_salesforce_get_serialize( + _param = self._index_saint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261720,7 +261720,7 @@ async def index_salesforce_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", '404': "str", '500': "str", } @@ -261736,7 +261736,7 @@ async def index_salesforce_get_with_http_info( @validate_call - async def index_salesforce_get_without_preload_content( + async def index_saint_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -261775,9 +261775,9 @@ async def index_salesforce_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"salesforce\" + """Return vulnerability data stored in index \"saint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` :param page: set the page number of the response :type page: int @@ -261849,7 +261849,7 @@ async def index_salesforce_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_salesforce_get_serialize( + _param = self._index_saint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261881,7 +261881,7 @@ async def index_salesforce_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", '404': "str", '500': "str", } @@ -261892,7 +261892,7 @@ async def index_salesforce_get_without_preload_content( return response_data.response - def _index_salesforce_get_serialize( + def _index_saint_get_serialize( self, page, limit, @@ -262060,7 +262060,7 @@ def _index_salesforce_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/salesforce', + resource_path='/v3/index/saint', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -262077,7 +262077,7 @@ def _index_salesforce_get_serialize( @validate_call - async def index_samba_get( + async def index_salesforce_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262115,10 +262115,10 @@ async def index_samba_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination: - """Return vulnerability data stored in index \"samba\" + ) -> RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination: + """Return vulnerability data stored in index \"salesforce\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` :param page: set the page number of the response :type page: int @@ -262190,7 +262190,7 @@ async def index_samba_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_samba_get_serialize( + _param = self._index_salesforce_get_serialize( page=page, limit=limit, cursor=cursor, @@ -262222,7 +262222,7 @@ async def index_samba_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", '404': "str", '500': "str", } @@ -262238,7 +262238,7 @@ async def index_samba_get( @validate_call - async def index_samba_get_with_http_info( + async def index_salesforce_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262276,10 +262276,10 @@ async def index_samba_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination]: - """Return vulnerability data stored in index \"samba\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination]: + """Return vulnerability data stored in index \"salesforce\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` :param page: set the page number of the response :type page: int @@ -262351,7 +262351,7 @@ async def index_samba_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_samba_get_serialize( + _param = self._index_salesforce_get_serialize( page=page, limit=limit, cursor=cursor, @@ -262383,7 +262383,7 @@ async def index_samba_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", '404': "str", '500': "str", } @@ -262399,7 +262399,7 @@ async def index_samba_get_with_http_info( @validate_call - async def index_samba_get_without_preload_content( + async def index_salesforce_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262438,9 +262438,9 @@ async def index_samba_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"samba\" + """Return vulnerability data stored in index \"salesforce\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` :param page: set the page number of the response :type page: int @@ -262512,7 +262512,7 @@ async def index_samba_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_samba_get_serialize( + _param = self._index_salesforce_get_serialize( page=page, limit=limit, cursor=cursor, @@ -262544,7 +262544,7 @@ async def index_samba_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", '404': "str", '500': "str", } @@ -262555,7 +262555,7 @@ async def index_samba_get_without_preload_content( return response_data.response - def _index_samba_get_serialize( + def _index_salesforce_get_serialize( self, page, limit, @@ -262723,7 +262723,7 @@ def _index_samba_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/samba', + resource_path='/v3/index/salesforce', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -262740,7 +262740,7 @@ def _index_samba_get_serialize( @validate_call - async def index_sandisk_get( + async def index_samba_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262778,10 +262778,10 @@ async def index_sandisk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination: - """Return vulnerability data stored in index \"sandisk\" + ) -> RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination: + """Return vulnerability data stored in index \"samba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` :param page: set the page number of the response :type page: int @@ -262853,7 +262853,7 @@ async def index_sandisk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sandisk_get_serialize( + _param = self._index_samba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -262885,7 +262885,7 @@ async def index_sandisk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", '404': "str", '500': "str", } @@ -262901,7 +262901,7 @@ async def index_sandisk_get( @validate_call - async def index_sandisk_get_with_http_info( + async def index_samba_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262939,10 +262939,10 @@ async def index_sandisk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination]: - """Return vulnerability data stored in index \"sandisk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination]: + """Return vulnerability data stored in index \"samba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` :param page: set the page number of the response :type page: int @@ -263014,7 +263014,7 @@ async def index_sandisk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sandisk_get_serialize( + _param = self._index_samba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263046,7 +263046,7 @@ async def index_sandisk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", '404': "str", '500': "str", } @@ -263062,7 +263062,7 @@ async def index_sandisk_get_with_http_info( @validate_call - async def index_sandisk_get_without_preload_content( + async def index_samba_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -263101,9 +263101,9 @@ async def index_sandisk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sandisk\" + """Return vulnerability data stored in index \"samba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` :param page: set the page number of the response :type page: int @@ -263175,7 +263175,7 @@ async def index_sandisk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sandisk_get_serialize( + _param = self._index_samba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263207,7 +263207,7 @@ async def index_sandisk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", '404': "str", '500': "str", } @@ -263218,7 +263218,7 @@ async def index_sandisk_get_without_preload_content( return response_data.response - def _index_sandisk_get_serialize( + def _index_samba_get_serialize( self, page, limit, @@ -263386,7 +263386,7 @@ def _index_sandisk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sandisk', + resource_path='/v3/index/samba', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -263403,7 +263403,7 @@ def _index_sandisk_get_serialize( @validate_call - async def index_sans_dshield_get( + async def index_sandisk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -263441,10 +263441,10 @@ async def index_sans_dshield_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination: - """Return vulnerability data stored in index \"sans-dshield\" + ) -> RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination: + """Return vulnerability data stored in index \"sandisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` :param page: set the page number of the response :type page: int @@ -263516,7 +263516,7 @@ async def index_sans_dshield_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sans_dshield_get_serialize( + _param = self._index_sandisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263548,7 +263548,7 @@ async def index_sans_dshield_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", '404': "str", '500': "str", } @@ -263564,7 +263564,7 @@ async def index_sans_dshield_get( @validate_call - async def index_sans_dshield_get_with_http_info( + async def index_sandisk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -263602,10 +263602,10 @@ async def index_sans_dshield_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination]: - """Return vulnerability data stored in index \"sans-dshield\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination]: + """Return vulnerability data stored in index \"sandisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` :param page: set the page number of the response :type page: int @@ -263677,7 +263677,7 @@ async def index_sans_dshield_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sans_dshield_get_serialize( + _param = self._index_sandisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263709,7 +263709,7 @@ async def index_sans_dshield_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", '404': "str", '500': "str", } @@ -263725,7 +263725,7 @@ async def index_sans_dshield_get_with_http_info( @validate_call - async def index_sans_dshield_get_without_preload_content( + async def index_sandisk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -263764,9 +263764,9 @@ async def index_sans_dshield_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sans-dshield\" + """Return vulnerability data stored in index \"sandisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` :param page: set the page number of the response :type page: int @@ -263838,7 +263838,7 @@ async def index_sans_dshield_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sans_dshield_get_serialize( + _param = self._index_sandisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263870,7 +263870,7 @@ async def index_sans_dshield_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", '404': "str", '500': "str", } @@ -263881,7 +263881,7 @@ async def index_sans_dshield_get_without_preload_content( return response_data.response - def _index_sans_dshield_get_serialize( + def _index_sandisk_get_serialize( self, page, limit, @@ -264049,7 +264049,7 @@ def _index_sans_dshield_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sans-dshield', + resource_path='/v3/index/sandisk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -264066,7 +264066,7 @@ def _index_sans_dshield_get_serialize( @validate_call - async def index_sap_get( + async def index_sans_dshield_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264104,10 +264104,10 @@ async def index_sap_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination: - """Return vulnerability data stored in index \"sap\" + ) -> RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination: + """Return vulnerability data stored in index \"sans-dshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` :param page: set the page number of the response :type page: int @@ -264179,7 +264179,7 @@ async def index_sap_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sap_get_serialize( + _param = self._index_sans_dshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -264211,7 +264211,7 @@ async def index_sap_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", '404': "str", '500': "str", } @@ -264227,7 +264227,7 @@ async def index_sap_get( @validate_call - async def index_sap_get_with_http_info( + async def index_sans_dshield_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264265,10 +264265,10 @@ async def index_sap_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination]: - """Return vulnerability data stored in index \"sap\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination]: + """Return vulnerability data stored in index \"sans-dshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` :param page: set the page number of the response :type page: int @@ -264340,7 +264340,7 @@ async def index_sap_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sap_get_serialize( + _param = self._index_sans_dshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -264372,7 +264372,7 @@ async def index_sap_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", '404': "str", '500': "str", } @@ -264388,7 +264388,7 @@ async def index_sap_get_with_http_info( @validate_call - async def index_sap_get_without_preload_content( + async def index_sans_dshield_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264427,9 +264427,9 @@ async def index_sap_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sap\" + """Return vulnerability data stored in index \"sans-dshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` :param page: set the page number of the response :type page: int @@ -264501,7 +264501,7 @@ async def index_sap_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sap_get_serialize( + _param = self._index_sans_dshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -264533,7 +264533,7 @@ async def index_sap_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", '404': "str", '500': "str", } @@ -264544,7 +264544,7 @@ async def index_sap_get_without_preload_content( return response_data.response - def _index_sap_get_serialize( + def _index_sans_dshield_get_serialize( self, page, limit, @@ -264712,7 +264712,7 @@ def _index_sap_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sap', + resource_path='/v3/index/sans-dshield', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -264729,7 +264729,7 @@ def _index_sap_get_serialize( @validate_call - async def index_schneider_electric_get( + async def index_sap_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264767,10 +264767,10 @@ async def index_schneider_electric_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"schneider-electric\" + ) -> RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination: + """Return vulnerability data stored in index \"sap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` :param page: set the page number of the response :type page: int @@ -264842,7 +264842,7 @@ async def index_schneider_electric_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schneider_electric_get_serialize( + _param = self._index_sap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -264874,7 +264874,7 @@ async def index_schneider_electric_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", '404': "str", '500': "str", } @@ -264890,7 +264890,7 @@ async def index_schneider_electric_get( @validate_call - async def index_schneider_electric_get_with_http_info( + async def index_sap_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264928,10 +264928,10 @@ async def index_schneider_electric_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"schneider-electric\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination]: + """Return vulnerability data stored in index \"sap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` :param page: set the page number of the response :type page: int @@ -265003,7 +265003,7 @@ async def index_schneider_electric_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schneider_electric_get_serialize( + _param = self._index_sap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265035,7 +265035,7 @@ async def index_schneider_electric_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", '404': "str", '500': "str", } @@ -265051,7 +265051,7 @@ async def index_schneider_electric_get_with_http_info( @validate_call - async def index_schneider_electric_get_without_preload_content( + async def index_sap_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -265090,9 +265090,9 @@ async def index_schneider_electric_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"schneider-electric\" + """Return vulnerability data stored in index \"sap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` :param page: set the page number of the response :type page: int @@ -265164,7 +265164,7 @@ async def index_schneider_electric_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schneider_electric_get_serialize( + _param = self._index_sap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265196,7 +265196,7 @@ async def index_schneider_electric_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", '404': "str", '500': "str", } @@ -265207,7 +265207,7 @@ async def index_schneider_electric_get_without_preload_content( return response_data.response - def _index_schneider_electric_get_serialize( + def _index_sap_get_serialize( self, page, limit, @@ -265375,7 +265375,7 @@ def _index_schneider_electric_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/schneider-electric', + resource_path='/v3/index/sap', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -265392,7 +265392,7 @@ def _index_schneider_electric_get_serialize( @validate_call - async def index_schutzwerk_get( + async def index_schneider_electric_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -265430,10 +265430,10 @@ async def index_schutzwerk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination: - """Return vulnerability data stored in index \"schutzwerk\" + ) -> RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"schneider-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` :param page: set the page number of the response :type page: int @@ -265505,7 +265505,7 @@ async def index_schutzwerk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schutzwerk_get_serialize( + _param = self._index_schneider_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265537,7 +265537,7 @@ async def index_schutzwerk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -265553,7 +265553,7 @@ async def index_schutzwerk_get( @validate_call - async def index_schutzwerk_get_with_http_info( + async def index_schneider_electric_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -265591,10 +265591,10 @@ async def index_schutzwerk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination]: - """Return vulnerability data stored in index \"schutzwerk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"schneider-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` :param page: set the page number of the response :type page: int @@ -265666,7 +265666,7 @@ async def index_schutzwerk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schutzwerk_get_serialize( + _param = self._index_schneider_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265698,7 +265698,7 @@ async def index_schutzwerk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -265714,7 +265714,7 @@ async def index_schutzwerk_get_with_http_info( @validate_call - async def index_schutzwerk_get_without_preload_content( + async def index_schneider_electric_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -265753,9 +265753,9 @@ async def index_schutzwerk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"schutzwerk\" + """Return vulnerability data stored in index \"schneider-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` :param page: set the page number of the response :type page: int @@ -265827,7 +265827,7 @@ async def index_schutzwerk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schutzwerk_get_serialize( + _param = self._index_schneider_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265859,7 +265859,7 @@ async def index_schutzwerk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -265870,7 +265870,7 @@ async def index_schutzwerk_get_without_preload_content( return response_data.response - def _index_schutzwerk_get_serialize( + def _index_schneider_electric_get_serialize( self, page, limit, @@ -266038,7 +266038,7 @@ def _index_schutzwerk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/schutzwerk', + resource_path='/v3/index/schneider-electric', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -266055,7 +266055,7 @@ def _index_schutzwerk_get_serialize( @validate_call - async def index_sec_consult_get( + async def index_schutzwerk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266093,10 +266093,10 @@ async def index_sec_consult_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination: - """Return vulnerability data stored in index \"sec-consult\" + ) -> RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination: + """Return vulnerability data stored in index \"schutzwerk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` :param page: set the page number of the response :type page: int @@ -266168,7 +266168,7 @@ async def index_sec_consult_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sec_consult_get_serialize( + _param = self._index_schutzwerk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -266200,7 +266200,7 @@ async def index_sec_consult_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", '404': "str", '500': "str", } @@ -266216,7 +266216,7 @@ async def index_sec_consult_get( @validate_call - async def index_sec_consult_get_with_http_info( + async def index_schutzwerk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266254,10 +266254,10 @@ async def index_sec_consult_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination]: - """Return vulnerability data stored in index \"sec-consult\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination]: + """Return vulnerability data stored in index \"schutzwerk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` :param page: set the page number of the response :type page: int @@ -266329,7 +266329,7 @@ async def index_sec_consult_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sec_consult_get_serialize( + _param = self._index_schutzwerk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -266361,7 +266361,7 @@ async def index_sec_consult_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", '404': "str", '500': "str", } @@ -266377,7 +266377,7 @@ async def index_sec_consult_get_with_http_info( @validate_call - async def index_sec_consult_get_without_preload_content( + async def index_schutzwerk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266416,9 +266416,9 @@ async def index_sec_consult_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sec-consult\" + """Return vulnerability data stored in index \"schutzwerk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` :param page: set the page number of the response :type page: int @@ -266490,7 +266490,7 @@ async def index_sec_consult_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sec_consult_get_serialize( + _param = self._index_schutzwerk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -266522,7 +266522,7 @@ async def index_sec_consult_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", '404': "str", '500': "str", } @@ -266533,7 +266533,7 @@ async def index_sec_consult_get_without_preload_content( return response_data.response - def _index_sec_consult_get_serialize( + def _index_schutzwerk_get_serialize( self, page, limit, @@ -266701,7 +266701,7 @@ def _index_sec_consult_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sec-consult', + resource_path='/v3/index/schutzwerk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -266718,7 +266718,7 @@ def _index_sec_consult_get_serialize( @validate_call - async def index_securitylab_get( + async def index_sec_consult_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266756,10 +266756,10 @@ async def index_securitylab_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination: - """Return vulnerability data stored in index \"securitylab\" + ) -> RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination: + """Return vulnerability data stored in index \"sec-consult\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` :param page: set the page number of the response :type page: int @@ -266831,7 +266831,7 @@ async def index_securitylab_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_securitylab_get_serialize( + _param = self._index_sec_consult_get_serialize( page=page, limit=limit, cursor=cursor, @@ -266863,7 +266863,7 @@ async def index_securitylab_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", '404': "str", '500': "str", } @@ -266879,7 +266879,7 @@ async def index_securitylab_get( @validate_call - async def index_securitylab_get_with_http_info( + async def index_sec_consult_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266917,10 +266917,10 @@ async def index_securitylab_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination]: - """Return vulnerability data stored in index \"securitylab\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination]: + """Return vulnerability data stored in index \"sec-consult\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` :param page: set the page number of the response :type page: int @@ -266992,7 +266992,7 @@ async def index_securitylab_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_securitylab_get_serialize( + _param = self._index_sec_consult_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267024,7 +267024,7 @@ async def index_securitylab_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", '404': "str", '500': "str", } @@ -267040,7 +267040,7 @@ async def index_securitylab_get_with_http_info( @validate_call - async def index_securitylab_get_without_preload_content( + async def index_sec_consult_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -267079,9 +267079,9 @@ async def index_securitylab_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"securitylab\" + """Return vulnerability data stored in index \"sec-consult\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` :param page: set the page number of the response :type page: int @@ -267153,7 +267153,7 @@ async def index_securitylab_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_securitylab_get_serialize( + _param = self._index_sec_consult_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267185,7 +267185,7 @@ async def index_securitylab_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", '404': "str", '500': "str", } @@ -267196,7 +267196,7 @@ async def index_securitylab_get_without_preload_content( return response_data.response - def _index_securitylab_get_serialize( + def _index_sec_consult_get_serialize( self, page, limit, @@ -267364,7 +267364,7 @@ def _index_securitylab_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/securitylab', + resource_path='/v3/index/sec-consult', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -267381,7 +267381,7 @@ def _index_securitylab_get_serialize( @validate_call - async def index_seebug_get( + async def index_securitylab_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -267419,10 +267419,10 @@ async def index_seebug_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination: - """Return vulnerability data stored in index \"seebug\" + ) -> RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination: + """Return vulnerability data stored in index \"securitylab\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` :param page: set the page number of the response :type page: int @@ -267494,7 +267494,7 @@ async def index_seebug_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_seebug_get_serialize( + _param = self._index_securitylab_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267526,7 +267526,7 @@ async def index_seebug_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", '404': "str", '500': "str", } @@ -267542,7 +267542,7 @@ async def index_seebug_get( @validate_call - async def index_seebug_get_with_http_info( + async def index_securitylab_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -267580,10 +267580,10 @@ async def index_seebug_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination]: - """Return vulnerability data stored in index \"seebug\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination]: + """Return vulnerability data stored in index \"securitylab\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` :param page: set the page number of the response :type page: int @@ -267655,7 +267655,7 @@ async def index_seebug_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_seebug_get_serialize( + _param = self._index_securitylab_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267687,7 +267687,7 @@ async def index_seebug_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", '404': "str", '500': "str", } @@ -267703,7 +267703,7 @@ async def index_seebug_get_with_http_info( @validate_call - async def index_seebug_get_without_preload_content( + async def index_securitylab_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -267742,9 +267742,9 @@ async def index_seebug_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"seebug\" + """Return vulnerability data stored in index \"securitylab\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` :param page: set the page number of the response :type page: int @@ -267816,7 +267816,7 @@ async def index_seebug_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_seebug_get_serialize( + _param = self._index_securitylab_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267848,7 +267848,7 @@ async def index_seebug_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", '404': "str", '500': "str", } @@ -267859,7 +267859,7 @@ async def index_seebug_get_without_preload_content( return response_data.response - def _index_seebug_get_serialize( + def _index_securitylab_get_serialize( self, page, limit, @@ -268027,7 +268027,7 @@ def _index_seebug_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/seebug', + resource_path='/v3/index/securitylab', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -268044,7 +268044,7 @@ def _index_seebug_get_serialize( @validate_call - async def index_sel_get( + async def index_seebug_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268082,10 +268082,10 @@ async def index_sel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySelPaginatePagination: - """Return vulnerability data stored in index \"sel\" + ) -> RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination: + """Return vulnerability data stored in index \"seebug\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` :param page: set the page number of the response :type page: int @@ -268157,7 +268157,7 @@ async def index_sel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sel_get_serialize( + _param = self._index_seebug_get_serialize( page=page, limit=limit, cursor=cursor, @@ -268189,7 +268189,7 @@ async def index_sel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", '404': "str", '500': "str", } @@ -268205,7 +268205,7 @@ async def index_sel_get( @validate_call - async def index_sel_get_with_http_info( + async def index_seebug_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268243,10 +268243,10 @@ async def index_sel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySelPaginatePagination]: - """Return vulnerability data stored in index \"sel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination]: + """Return vulnerability data stored in index \"seebug\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` :param page: set the page number of the response :type page: int @@ -268318,7 +268318,7 @@ async def index_sel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sel_get_serialize( + _param = self._index_seebug_get_serialize( page=page, limit=limit, cursor=cursor, @@ -268350,7 +268350,7 @@ async def index_sel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", '404': "str", '500': "str", } @@ -268366,7 +268366,7 @@ async def index_sel_get_with_http_info( @validate_call - async def index_sel_get_without_preload_content( + async def index_seebug_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268405,9 +268405,9 @@ async def index_sel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sel\" + """Return vulnerability data stored in index \"seebug\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` :param page: set the page number of the response :type page: int @@ -268479,7 +268479,7 @@ async def index_sel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sel_get_serialize( + _param = self._index_seebug_get_serialize( page=page, limit=limit, cursor=cursor, @@ -268511,7 +268511,7 @@ async def index_sel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", '404': "str", '500': "str", } @@ -268522,7 +268522,7 @@ async def index_sel_get_without_preload_content( return response_data.response - def _index_sel_get_serialize( + def _index_seebug_get_serialize( self, page, limit, @@ -268690,7 +268690,7 @@ def _index_sel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sel', + resource_path='/v3/index/seebug', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -268707,7 +268707,7 @@ def _index_sel_get_serialize( @validate_call - async def index_sentinelone_get( + async def index_sel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268745,10 +268745,10 @@ async def index_sentinelone_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination: - """Return vulnerability data stored in index \"sentinelone\" + ) -> RenderResponseWithMetadataArrayAdvisorySelPaginatePagination: + """Return vulnerability data stored in index \"sel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` :param page: set the page number of the response :type page: int @@ -268820,7 +268820,7 @@ async def index_sentinelone_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sentinelone_get_serialize( + _param = self._index_sel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -268852,7 +268852,7 @@ async def index_sentinelone_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", '404': "str", '500': "str", } @@ -268868,7 +268868,7 @@ async def index_sentinelone_get( @validate_call - async def index_sentinelone_get_with_http_info( + async def index_sel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268906,10 +268906,10 @@ async def index_sentinelone_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination]: - """Return vulnerability data stored in index \"sentinelone\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySelPaginatePagination]: + """Return vulnerability data stored in index \"sel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` :param page: set the page number of the response :type page: int @@ -268981,7 +268981,7 @@ async def index_sentinelone_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sentinelone_get_serialize( + _param = self._index_sel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269013,7 +269013,7 @@ async def index_sentinelone_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", '404': "str", '500': "str", } @@ -269029,7 +269029,7 @@ async def index_sentinelone_get_with_http_info( @validate_call - async def index_sentinelone_get_without_preload_content( + async def index_sel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -269068,9 +269068,9 @@ async def index_sentinelone_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sentinelone\" + """Return vulnerability data stored in index \"sel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` :param page: set the page number of the response :type page: int @@ -269142,7 +269142,7 @@ async def index_sentinelone_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sentinelone_get_serialize( + _param = self._index_sel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269174,7 +269174,7 @@ async def index_sentinelone_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", '404': "str", '500': "str", } @@ -269185,7 +269185,7 @@ async def index_sentinelone_get_without_preload_content( return response_data.response - def _index_sentinelone_get_serialize( + def _index_sel_get_serialize( self, page, limit, @@ -269353,7 +269353,7 @@ def _index_sentinelone_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sentinelone', + resource_path='/v3/index/sel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -269370,7 +269370,7 @@ def _index_sentinelone_get_serialize( @validate_call - async def index_servicenow_get( + async def index_sentinelone_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -269408,10 +269408,10 @@ async def index_servicenow_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination: - """Return vulnerability data stored in index \"servicenow\" + ) -> RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination: + """Return vulnerability data stored in index \"sentinelone\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` :param page: set the page number of the response :type page: int @@ -269483,7 +269483,7 @@ async def index_servicenow_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_servicenow_get_serialize( + _param = self._index_sentinelone_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269515,7 +269515,7 @@ async def index_servicenow_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", '404': "str", '500': "str", } @@ -269531,7 +269531,7 @@ async def index_servicenow_get( @validate_call - async def index_servicenow_get_with_http_info( + async def index_sentinelone_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -269569,10 +269569,10 @@ async def index_servicenow_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination]: - """Return vulnerability data stored in index \"servicenow\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination]: + """Return vulnerability data stored in index \"sentinelone\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` :param page: set the page number of the response :type page: int @@ -269644,7 +269644,7 @@ async def index_servicenow_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_servicenow_get_serialize( + _param = self._index_sentinelone_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269676,7 +269676,7 @@ async def index_servicenow_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", '404': "str", '500': "str", } @@ -269692,7 +269692,7 @@ async def index_servicenow_get_with_http_info( @validate_call - async def index_servicenow_get_without_preload_content( + async def index_sentinelone_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -269731,9 +269731,9 @@ async def index_servicenow_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"servicenow\" + """Return vulnerability data stored in index \"sentinelone\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` :param page: set the page number of the response :type page: int @@ -269805,7 +269805,7 @@ async def index_servicenow_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_servicenow_get_serialize( + _param = self._index_sentinelone_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269837,7 +269837,7 @@ async def index_servicenow_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", '404': "str", '500': "str", } @@ -269848,7 +269848,7 @@ async def index_servicenow_get_without_preload_content( return response_data.response - def _index_servicenow_get_serialize( + def _index_sentinelone_get_serialize( self, page, limit, @@ -270016,7 +270016,7 @@ def _index_servicenow_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/servicenow', + resource_path='/v3/index/sentinelone', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -270033,7 +270033,7 @@ def _index_servicenow_get_serialize( @validate_call - async def index_shadowserver_exploited_get( + async def index_servicenow_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270071,10 +270071,10 @@ async def index_shadowserver_exploited_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination: - """Return vulnerability data stored in index \"shadowserver-exploited\" + ) -> RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination: + """Return vulnerability data stored in index \"servicenow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` :param page: set the page number of the response :type page: int @@ -270146,7 +270146,7 @@ async def index_shadowserver_exploited_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shadowserver_exploited_get_serialize( + _param = self._index_servicenow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -270178,7 +270178,7 @@ async def index_shadowserver_exploited_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", '404': "str", '500': "str", } @@ -270194,7 +270194,7 @@ async def index_shadowserver_exploited_get( @validate_call - async def index_shadowserver_exploited_get_with_http_info( + async def index_servicenow_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270232,10 +270232,10 @@ async def index_shadowserver_exploited_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination]: - """Return vulnerability data stored in index \"shadowserver-exploited\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination]: + """Return vulnerability data stored in index \"servicenow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` :param page: set the page number of the response :type page: int @@ -270307,7 +270307,7 @@ async def index_shadowserver_exploited_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shadowserver_exploited_get_serialize( + _param = self._index_servicenow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -270339,7 +270339,7 @@ async def index_shadowserver_exploited_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", '404': "str", '500': "str", } @@ -270355,7 +270355,7 @@ async def index_shadowserver_exploited_get_with_http_info( @validate_call - async def index_shadowserver_exploited_get_without_preload_content( + async def index_servicenow_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270394,9 +270394,9 @@ async def index_shadowserver_exploited_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"shadowserver-exploited\" + """Return vulnerability data stored in index \"servicenow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` :param page: set the page number of the response :type page: int @@ -270468,7 +270468,7 @@ async def index_shadowserver_exploited_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shadowserver_exploited_get_serialize( + _param = self._index_servicenow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -270500,7 +270500,7 @@ async def index_shadowserver_exploited_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", '404': "str", '500': "str", } @@ -270511,7 +270511,7 @@ async def index_shadowserver_exploited_get_without_preload_content( return response_data.response - def _index_shadowserver_exploited_get_serialize( + def _index_servicenow_get_serialize( self, page, limit, @@ -270679,7 +270679,7 @@ def _index_shadowserver_exploited_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/shadowserver-exploited', + resource_path='/v3/index/servicenow', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -270696,7 +270696,7 @@ def _index_shadowserver_exploited_get_serialize( @validate_call - async def index_shielder_get( + async def index_shadowserver_exploited_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270734,10 +270734,10 @@ async def index_shielder_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination: - """Return vulnerability data stored in index \"shielder\" + ) -> RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination: + """Return vulnerability data stored in index \"shadowserver-exploited\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` :param page: set the page number of the response :type page: int @@ -270809,7 +270809,7 @@ async def index_shielder_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shielder_get_serialize( + _param = self._index_shadowserver_exploited_get_serialize( page=page, limit=limit, cursor=cursor, @@ -270841,7 +270841,7 @@ async def index_shielder_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -270857,7 +270857,7 @@ async def index_shielder_get( @validate_call - async def index_shielder_get_with_http_info( + async def index_shadowserver_exploited_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270895,10 +270895,10 @@ async def index_shielder_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination]: - """Return vulnerability data stored in index \"shielder\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination]: + """Return vulnerability data stored in index \"shadowserver-exploited\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` :param page: set the page number of the response :type page: int @@ -270970,7 +270970,7 @@ async def index_shielder_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shielder_get_serialize( + _param = self._index_shadowserver_exploited_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271002,7 +271002,7 @@ async def index_shielder_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -271018,7 +271018,7 @@ async def index_shielder_get_with_http_info( @validate_call - async def index_shielder_get_without_preload_content( + async def index_shadowserver_exploited_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -271057,9 +271057,9 @@ async def index_shielder_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"shielder\" + """Return vulnerability data stored in index \"shadowserver-exploited\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` :param page: set the page number of the response :type page: int @@ -271131,7 +271131,7 @@ async def index_shielder_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shielder_get_serialize( + _param = self._index_shadowserver_exploited_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271163,7 +271163,7 @@ async def index_shielder_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -271174,7 +271174,7 @@ async def index_shielder_get_without_preload_content( return response_data.response - def _index_shielder_get_serialize( + def _index_shadowserver_exploited_get_serialize( self, page, limit, @@ -271342,7 +271342,7 @@ def _index_shielder_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/shielder', + resource_path='/v3/index/shadowserver-exploited', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -271359,7 +271359,7 @@ def _index_shielder_get_serialize( @validate_call - async def index_sick_get( + async def index_shielder_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -271397,10 +271397,10 @@ async def index_sick_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySickPaginatePagination: - """Return vulnerability data stored in index \"sick\" + ) -> RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination: + """Return vulnerability data stored in index \"shielder\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` :param page: set the page number of the response :type page: int @@ -271472,7 +271472,7 @@ async def index_sick_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sick_get_serialize( + _param = self._index_shielder_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271504,7 +271504,7 @@ async def index_sick_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", '404': "str", '500': "str", } @@ -271520,7 +271520,7 @@ async def index_sick_get( @validate_call - async def index_sick_get_with_http_info( + async def index_shielder_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -271558,10 +271558,10 @@ async def index_sick_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySickPaginatePagination]: - """Return vulnerability data stored in index \"sick\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination]: + """Return vulnerability data stored in index \"shielder\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` :param page: set the page number of the response :type page: int @@ -271633,7 +271633,7 @@ async def index_sick_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sick_get_serialize( + _param = self._index_shielder_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271665,7 +271665,7 @@ async def index_sick_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", '404': "str", '500': "str", } @@ -271681,7 +271681,7 @@ async def index_sick_get_with_http_info( @validate_call - async def index_sick_get_without_preload_content( + async def index_shielder_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -271720,9 +271720,9 @@ async def index_sick_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sick\" + """Return vulnerability data stored in index \"shielder\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` :param page: set the page number of the response :type page: int @@ -271794,7 +271794,7 @@ async def index_sick_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sick_get_serialize( + _param = self._index_shielder_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271826,7 +271826,7 @@ async def index_sick_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", '404': "str", '500': "str", } @@ -271837,7 +271837,7 @@ async def index_sick_get_without_preload_content( return response_data.response - def _index_sick_get_serialize( + def _index_shielder_get_serialize( self, page, limit, @@ -272005,7 +272005,7 @@ def _index_sick_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sick', + resource_path='/v3/index/shielder', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -272022,7 +272022,7 @@ def _index_sick_get_serialize( @validate_call - async def index_siemens_get( + async def index_sick_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272060,10 +272060,10 @@ async def index_siemens_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"siemens\" + ) -> RenderResponseWithMetadataArrayAdvisorySickPaginatePagination: + """Return vulnerability data stored in index \"sick\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` :param page: set the page number of the response :type page: int @@ -272135,7 +272135,7 @@ async def index_siemens_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_siemens_get_serialize( + _param = self._index_sick_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272167,7 +272167,7 @@ async def index_siemens_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", '404': "str", '500': "str", } @@ -272183,7 +272183,7 @@ async def index_siemens_get( @validate_call - async def index_siemens_get_with_http_info( + async def index_sick_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272221,10 +272221,10 @@ async def index_siemens_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"siemens\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySickPaginatePagination]: + """Return vulnerability data stored in index \"sick\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` :param page: set the page number of the response :type page: int @@ -272296,7 +272296,7 @@ async def index_siemens_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_siemens_get_serialize( + _param = self._index_sick_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272328,7 +272328,7 @@ async def index_siemens_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", '404': "str", '500': "str", } @@ -272344,7 +272344,7 @@ async def index_siemens_get_with_http_info( @validate_call - async def index_siemens_get_without_preload_content( + async def index_sick_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272383,9 +272383,9 @@ async def index_siemens_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"siemens\" + """Return vulnerability data stored in index \"sick\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` :param page: set the page number of the response :type page: int @@ -272457,7 +272457,7 @@ async def index_siemens_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_siemens_get_serialize( + _param = self._index_sick_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272489,7 +272489,7 @@ async def index_siemens_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", '404': "str", '500': "str", } @@ -272500,7 +272500,7 @@ async def index_siemens_get_without_preload_content( return response_data.response - def _index_siemens_get_serialize( + def _index_sick_get_serialize( self, page, limit, @@ -272668,7 +272668,7 @@ def _index_siemens_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/siemens', + resource_path='/v3/index/sick', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -272685,7 +272685,7 @@ def _index_siemens_get_serialize( @validate_call - async def index_sierra_wireless_get( + async def index_siemens_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272723,10 +272723,10 @@ async def index_sierra_wireless_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination: - """Return vulnerability data stored in index \"sierra-wireless\" + ) -> RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"siemens\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` :param page: set the page number of the response :type page: int @@ -272798,7 +272798,7 @@ async def index_sierra_wireless_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sierra_wireless_get_serialize( + _param = self._index_siemens_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272830,7 +272830,7 @@ async def index_sierra_wireless_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -272846,7 +272846,7 @@ async def index_sierra_wireless_get( @validate_call - async def index_sierra_wireless_get_with_http_info( + async def index_siemens_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272884,10 +272884,10 @@ async def index_sierra_wireless_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination]: - """Return vulnerability data stored in index \"sierra-wireless\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"siemens\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` :param page: set the page number of the response :type page: int @@ -272959,7 +272959,7 @@ async def index_sierra_wireless_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sierra_wireless_get_serialize( + _param = self._index_siemens_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272991,7 +272991,7 @@ async def index_sierra_wireless_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -273007,7 +273007,7 @@ async def index_sierra_wireless_get_with_http_info( @validate_call - async def index_sierra_wireless_get_without_preload_content( + async def index_siemens_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -273046,9 +273046,9 @@ async def index_sierra_wireless_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sierra-wireless\" + """Return vulnerability data stored in index \"siemens\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` :param page: set the page number of the response :type page: int @@ -273120,7 +273120,7 @@ async def index_sierra_wireless_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sierra_wireless_get_serialize( + _param = self._index_siemens_get_serialize( page=page, limit=limit, cursor=cursor, @@ -273152,7 +273152,7 @@ async def index_sierra_wireless_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -273163,7 +273163,7 @@ async def index_sierra_wireless_get_without_preload_content( return response_data.response - def _index_sierra_wireless_get_serialize( + def _index_siemens_get_serialize( self, page, limit, @@ -273331,7 +273331,7 @@ def _index_sierra_wireless_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sierra-wireless', + resource_path='/v3/index/siemens', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -273348,7 +273348,7 @@ def _index_sierra_wireless_get_serialize( @validate_call - async def index_sigmahq_sigma_rules_get( + async def index_sierra_wireless_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -273386,10 +273386,10 @@ async def index_sigmahq_sigma_rules_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination: - """Return vulnerability data stored in index \"sigmahq-sigma-rules\" + ) -> RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination: + """Return vulnerability data stored in index \"sierra-wireless\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` :param page: set the page number of the response :type page: int @@ -273461,7 +273461,7 @@ async def index_sigmahq_sigma_rules_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sigmahq_sigma_rules_get_serialize( + _param = self._index_sierra_wireless_get_serialize( page=page, limit=limit, cursor=cursor, @@ -273493,7 +273493,7 @@ async def index_sigmahq_sigma_rules_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", '404': "str", '500': "str", } @@ -273509,7 +273509,7 @@ async def index_sigmahq_sigma_rules_get( @validate_call - async def index_sigmahq_sigma_rules_get_with_http_info( + async def index_sierra_wireless_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -273547,10 +273547,10 @@ async def index_sigmahq_sigma_rules_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination]: - """Return vulnerability data stored in index \"sigmahq-sigma-rules\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination]: + """Return vulnerability data stored in index \"sierra-wireless\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` :param page: set the page number of the response :type page: int @@ -273622,7 +273622,7 @@ async def index_sigmahq_sigma_rules_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sigmahq_sigma_rules_get_serialize( + _param = self._index_sierra_wireless_get_serialize( page=page, limit=limit, cursor=cursor, @@ -273654,7 +273654,7 @@ async def index_sigmahq_sigma_rules_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", '404': "str", '500': "str", } @@ -273670,7 +273670,7 @@ async def index_sigmahq_sigma_rules_get_with_http_info( @validate_call - async def index_sigmahq_sigma_rules_get_without_preload_content( + async def index_sierra_wireless_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -273709,9 +273709,9 @@ async def index_sigmahq_sigma_rules_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sigmahq-sigma-rules\" + """Return vulnerability data stored in index \"sierra-wireless\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` :param page: set the page number of the response :type page: int @@ -273783,7 +273783,7 @@ async def index_sigmahq_sigma_rules_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sigmahq_sigma_rules_get_serialize( + _param = self._index_sierra_wireless_get_serialize( page=page, limit=limit, cursor=cursor, @@ -273815,7 +273815,7 @@ async def index_sigmahq_sigma_rules_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", '404': "str", '500': "str", } @@ -273826,7 +273826,7 @@ async def index_sigmahq_sigma_rules_get_without_preload_content( return response_data.response - def _index_sigmahq_sigma_rules_get_serialize( + def _index_sierra_wireless_get_serialize( self, page, limit, @@ -273994,7 +273994,7 @@ def _index_sigmahq_sigma_rules_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sigmahq-sigma-rules', + resource_path='/v3/index/sierra-wireless', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -274011,7 +274011,7 @@ def _index_sigmahq_sigma_rules_get_serialize( @validate_call - async def index_singcert_get( + async def index_sigmahq_sigma_rules_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274049,10 +274049,10 @@ async def index_singcert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination: - """Return vulnerability data stored in index \"singcert\" + ) -> RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination: + """Return vulnerability data stored in index \"sigmahq-sigma-rules\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` :param page: set the page number of the response :type page: int @@ -274124,7 +274124,7 @@ async def index_singcert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_singcert_get_serialize( + _param = self._index_sigmahq_sigma_rules_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274156,7 +274156,7 @@ async def index_singcert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", '404': "str", '500': "str", } @@ -274172,7 +274172,7 @@ async def index_singcert_get( @validate_call - async def index_singcert_get_with_http_info( + async def index_sigmahq_sigma_rules_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274210,10 +274210,10 @@ async def index_singcert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination]: - """Return vulnerability data stored in index \"singcert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination]: + """Return vulnerability data stored in index \"sigmahq-sigma-rules\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` :param page: set the page number of the response :type page: int @@ -274285,7 +274285,7 @@ async def index_singcert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_singcert_get_serialize( + _param = self._index_sigmahq_sigma_rules_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274317,7 +274317,7 @@ async def index_singcert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", '404': "str", '500': "str", } @@ -274333,7 +274333,7 @@ async def index_singcert_get_with_http_info( @validate_call - async def index_singcert_get_without_preload_content( + async def index_sigmahq_sigma_rules_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274372,9 +274372,9 @@ async def index_singcert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"singcert\" + """Return vulnerability data stored in index \"sigmahq-sigma-rules\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` :param page: set the page number of the response :type page: int @@ -274446,7 +274446,7 @@ async def index_singcert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_singcert_get_serialize( + _param = self._index_sigmahq_sigma_rules_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274478,7 +274478,7 @@ async def index_singcert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", '404': "str", '500': "str", } @@ -274489,7 +274489,7 @@ async def index_singcert_get_without_preload_content( return response_data.response - def _index_singcert_get_serialize( + def _index_sigmahq_sigma_rules_get_serialize( self, page, limit, @@ -274657,7 +274657,7 @@ def _index_singcert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/singcert', + resource_path='/v3/index/sigmahq-sigma-rules', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -274674,7 +274674,7 @@ def _index_singcert_get_serialize( @validate_call - async def index_sitecore_get( + async def index_singcert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274712,10 +274712,10 @@ async def index_sitecore_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination: - """Return vulnerability data stored in index \"sitecore\" + ) -> RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination: + """Return vulnerability data stored in index \"singcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` :param page: set the page number of the response :type page: int @@ -274787,7 +274787,7 @@ async def index_sitecore_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sitecore_get_serialize( + _param = self._index_singcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274819,7 +274819,7 @@ async def index_sitecore_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", '404': "str", '500': "str", } @@ -274835,7 +274835,7 @@ async def index_sitecore_get( @validate_call - async def index_sitecore_get_with_http_info( + async def index_singcert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274873,10 +274873,10 @@ async def index_sitecore_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination]: - """Return vulnerability data stored in index \"sitecore\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination]: + """Return vulnerability data stored in index \"singcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` :param page: set the page number of the response :type page: int @@ -274948,7 +274948,7 @@ async def index_sitecore_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sitecore_get_serialize( + _param = self._index_singcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274980,7 +274980,7 @@ async def index_sitecore_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", '404': "str", '500': "str", } @@ -274996,7 +274996,7 @@ async def index_sitecore_get_with_http_info( @validate_call - async def index_sitecore_get_without_preload_content( + async def index_singcert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -275035,9 +275035,9 @@ async def index_sitecore_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sitecore\" + """Return vulnerability data stored in index \"singcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` :param page: set the page number of the response :type page: int @@ -275109,7 +275109,7 @@ async def index_sitecore_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sitecore_get_serialize( + _param = self._index_singcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -275141,7 +275141,7 @@ async def index_sitecore_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", '404': "str", '500': "str", } @@ -275152,7 +275152,7 @@ async def index_sitecore_get_without_preload_content( return response_data.response - def _index_sitecore_get_serialize( + def _index_singcert_get_serialize( self, page, limit, @@ -275320,7 +275320,7 @@ def _index_sitecore_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sitecore', + resource_path='/v3/index/singcert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -275337,7 +275337,7 @@ def _index_sitecore_get_serialize( @validate_call - async def index_slackware_get( + async def index_sitecore_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -275375,10 +275375,10 @@ async def index_slackware_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination: - """Return vulnerability data stored in index \"slackware\" + ) -> RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination: + """Return vulnerability data stored in index \"sitecore\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` :param page: set the page number of the response :type page: int @@ -275450,7 +275450,7 @@ async def index_slackware_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_slackware_get_serialize( + _param = self._index_sitecore_get_serialize( page=page, limit=limit, cursor=cursor, @@ -275482,7 +275482,7 @@ async def index_slackware_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", '404': "str", '500': "str", } @@ -275498,7 +275498,7 @@ async def index_slackware_get( @validate_call - async def index_slackware_get_with_http_info( + async def index_sitecore_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -275536,10 +275536,10 @@ async def index_slackware_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination]: - """Return vulnerability data stored in index \"slackware\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination]: + """Return vulnerability data stored in index \"sitecore\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` :param page: set the page number of the response :type page: int @@ -275611,7 +275611,7 @@ async def index_slackware_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_slackware_get_serialize( + _param = self._index_sitecore_get_serialize( page=page, limit=limit, cursor=cursor, @@ -275643,7 +275643,7 @@ async def index_slackware_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", '404': "str", '500': "str", } @@ -275659,7 +275659,7 @@ async def index_slackware_get_with_http_info( @validate_call - async def index_slackware_get_without_preload_content( + async def index_sitecore_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -275698,9 +275698,9 @@ async def index_slackware_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"slackware\" + """Return vulnerability data stored in index \"sitecore\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` :param page: set the page number of the response :type page: int @@ -275772,7 +275772,7 @@ async def index_slackware_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_slackware_get_serialize( + _param = self._index_sitecore_get_serialize( page=page, limit=limit, cursor=cursor, @@ -275804,7 +275804,7 @@ async def index_slackware_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", '404': "str", '500': "str", } @@ -275815,7 +275815,7 @@ async def index_slackware_get_without_preload_content( return response_data.response - def _index_slackware_get_serialize( + def _index_sitecore_get_serialize( self, page, limit, @@ -275983,7 +275983,7 @@ def _index_slackware_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/slackware', + resource_path='/v3/index/sitecore', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -276000,7 +276000,7 @@ def _index_slackware_get_serialize( @validate_call - async def index_solarwinds_get( + async def index_slackware_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276038,10 +276038,10 @@ async def index_solarwinds_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"solarwinds\" + ) -> RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination: + """Return vulnerability data stored in index \"slackware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` :param page: set the page number of the response :type page: int @@ -276113,7 +276113,7 @@ async def index_solarwinds_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solarwinds_get_serialize( + _param = self._index_slackware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276145,7 +276145,7 @@ async def index_solarwinds_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", '404': "str", '500': "str", } @@ -276161,7 +276161,7 @@ async def index_solarwinds_get( @validate_call - async def index_solarwinds_get_with_http_info( + async def index_slackware_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276199,10 +276199,10 @@ async def index_solarwinds_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"solarwinds\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination]: + """Return vulnerability data stored in index \"slackware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` :param page: set the page number of the response :type page: int @@ -276274,7 +276274,7 @@ async def index_solarwinds_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solarwinds_get_serialize( + _param = self._index_slackware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276306,7 +276306,7 @@ async def index_solarwinds_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", '404': "str", '500': "str", } @@ -276322,7 +276322,7 @@ async def index_solarwinds_get_with_http_info( @validate_call - async def index_solarwinds_get_without_preload_content( + async def index_slackware_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276361,9 +276361,9 @@ async def index_solarwinds_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"solarwinds\" + """Return vulnerability data stored in index \"slackware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` :param page: set the page number of the response :type page: int @@ -276435,7 +276435,7 @@ async def index_solarwinds_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solarwinds_get_serialize( + _param = self._index_slackware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276467,7 +276467,7 @@ async def index_solarwinds_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", '404': "str", '500': "str", } @@ -276478,7 +276478,7 @@ async def index_solarwinds_get_without_preload_content( return response_data.response - def _index_solarwinds_get_serialize( + def _index_slackware_get_serialize( self, page, limit, @@ -276646,7 +276646,7 @@ def _index_solarwinds_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/solarwinds', + resource_path='/v3/index/slackware', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -276663,7 +276663,7 @@ def _index_solarwinds_get_serialize( @validate_call - async def index_solr_get( + async def index_solarwinds_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276701,10 +276701,10 @@ async def index_solr_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination: - """Return vulnerability data stored in index \"solr\" + ) -> RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"solarwinds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` :param page: set the page number of the response :type page: int @@ -276776,7 +276776,7 @@ async def index_solr_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solr_get_serialize( + _param = self._index_solarwinds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276808,7 +276808,7 @@ async def index_solr_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -276824,7 +276824,7 @@ async def index_solr_get( @validate_call - async def index_solr_get_with_http_info( + async def index_solarwinds_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276862,10 +276862,10 @@ async def index_solr_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination]: - """Return vulnerability data stored in index \"solr\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"solarwinds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` :param page: set the page number of the response :type page: int @@ -276937,7 +276937,7 @@ async def index_solr_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solr_get_serialize( + _param = self._index_solarwinds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276969,7 +276969,7 @@ async def index_solr_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -276985,7 +276985,7 @@ async def index_solr_get_with_http_info( @validate_call - async def index_solr_get_without_preload_content( + async def index_solarwinds_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -277024,9 +277024,9 @@ async def index_solr_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"solr\" + """Return vulnerability data stored in index \"solarwinds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` :param page: set the page number of the response :type page: int @@ -277098,7 +277098,7 @@ async def index_solr_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solr_get_serialize( + _param = self._index_solarwinds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -277130,7 +277130,7 @@ async def index_solr_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -277141,7 +277141,7 @@ async def index_solr_get_without_preload_content( return response_data.response - def _index_solr_get_serialize( + def _index_solarwinds_get_serialize( self, page, limit, @@ -277309,7 +277309,7 @@ def _index_solr_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/solr', + resource_path='/v3/index/solarwinds', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -277326,7 +277326,7 @@ def _index_solr_get_serialize( @validate_call - async def index_sonatype_get( + async def index_solr_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -277364,10 +277364,10 @@ async def index_sonatype_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination: - """Return vulnerability data stored in index \"sonatype\" + ) -> RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination: + """Return vulnerability data stored in index \"solr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` :param page: set the page number of the response :type page: int @@ -277439,7 +277439,7 @@ async def index_sonatype_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonatype_get_serialize( + _param = self._index_solr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -277471,7 +277471,7 @@ async def index_sonatype_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", '404': "str", '500': "str", } @@ -277487,7 +277487,7 @@ async def index_sonatype_get( @validate_call - async def index_sonatype_get_with_http_info( + async def index_solr_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -277525,10 +277525,10 @@ async def index_sonatype_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination]: - """Return vulnerability data stored in index \"sonatype\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination]: + """Return vulnerability data stored in index \"solr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` :param page: set the page number of the response :type page: int @@ -277600,7 +277600,7 @@ async def index_sonatype_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonatype_get_serialize( + _param = self._index_solr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -277632,7 +277632,7 @@ async def index_sonatype_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", '404': "str", '500': "str", } @@ -277648,7 +277648,7 @@ async def index_sonatype_get_with_http_info( @validate_call - async def index_sonatype_get_without_preload_content( + async def index_solr_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -277687,9 +277687,9 @@ async def index_sonatype_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sonatype\" + """Return vulnerability data stored in index \"solr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` :param page: set the page number of the response :type page: int @@ -277761,7 +277761,7 @@ async def index_sonatype_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonatype_get_serialize( + _param = self._index_solr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -277793,7 +277793,7 @@ async def index_sonatype_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", '404': "str", '500': "str", } @@ -277804,7 +277804,7 @@ async def index_sonatype_get_without_preload_content( return response_data.response - def _index_sonatype_get_serialize( + def _index_solr_get_serialize( self, page, limit, @@ -277972,7 +277972,7 @@ def _index_sonatype_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sonatype', + resource_path='/v3/index/solr', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -277989,7 +277989,7 @@ def _index_sonatype_get_serialize( @validate_call - async def index_sonicwall_get( + async def index_sonatype_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278027,10 +278027,10 @@ async def index_sonicwall_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"sonicwall\" + ) -> RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination: + """Return vulnerability data stored in index \"sonatype\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` :param page: set the page number of the response :type page: int @@ -278102,7 +278102,7 @@ async def index_sonicwall_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonicwall_get_serialize( + _param = self._index_sonatype_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278134,7 +278134,7 @@ async def index_sonicwall_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", '404': "str", '500': "str", } @@ -278150,7 +278150,7 @@ async def index_sonicwall_get( @validate_call - async def index_sonicwall_get_with_http_info( + async def index_sonatype_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278188,10 +278188,10 @@ async def index_sonicwall_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"sonicwall\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination]: + """Return vulnerability data stored in index \"sonatype\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` :param page: set the page number of the response :type page: int @@ -278263,7 +278263,7 @@ async def index_sonicwall_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonicwall_get_serialize( + _param = self._index_sonatype_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278295,7 +278295,7 @@ async def index_sonicwall_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", '404': "str", '500': "str", } @@ -278311,7 +278311,7 @@ async def index_sonicwall_get_with_http_info( @validate_call - async def index_sonicwall_get_without_preload_content( + async def index_sonatype_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278350,9 +278350,9 @@ async def index_sonicwall_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sonicwall\" + """Return vulnerability data stored in index \"sonatype\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` :param page: set the page number of the response :type page: int @@ -278424,7 +278424,7 @@ async def index_sonicwall_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonicwall_get_serialize( + _param = self._index_sonatype_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278456,7 +278456,7 @@ async def index_sonicwall_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", '404': "str", '500': "str", } @@ -278467,7 +278467,7 @@ async def index_sonicwall_get_without_preload_content( return response_data.response - def _index_sonicwall_get_serialize( + def _index_sonatype_get_serialize( self, page, limit, @@ -278635,7 +278635,7 @@ def _index_sonicwall_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sonicwall', + resource_path='/v3/index/sonatype', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -278652,7 +278652,7 @@ def _index_sonicwall_get_serialize( @validate_call - async def index_spacelabs_healthcare_get( + async def index_sonicwall_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278690,10 +278690,10 @@ async def index_spacelabs_healthcare_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"spacelabs-healthcare\" + ) -> RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"sonicwall\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` :param page: set the page number of the response :type page: int @@ -278765,7 +278765,7 @@ async def index_spacelabs_healthcare_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spacelabs_healthcare_get_serialize( + _param = self._index_sonicwall_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278797,7 +278797,7 @@ async def index_spacelabs_healthcare_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -278813,7 +278813,7 @@ async def index_spacelabs_healthcare_get( @validate_call - async def index_spacelabs_healthcare_get_with_http_info( + async def index_sonicwall_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278851,10 +278851,10 @@ async def index_spacelabs_healthcare_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"spacelabs-healthcare\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"sonicwall\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` :param page: set the page number of the response :type page: int @@ -278926,7 +278926,7 @@ async def index_spacelabs_healthcare_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spacelabs_healthcare_get_serialize( + _param = self._index_sonicwall_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278958,7 +278958,7 @@ async def index_spacelabs_healthcare_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -278974,7 +278974,7 @@ async def index_spacelabs_healthcare_get_with_http_info( @validate_call - async def index_spacelabs_healthcare_get_without_preload_content( + async def index_sonicwall_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -279013,9 +279013,9 @@ async def index_spacelabs_healthcare_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"spacelabs-healthcare\" + """Return vulnerability data stored in index \"sonicwall\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` :param page: set the page number of the response :type page: int @@ -279087,7 +279087,7 @@ async def index_spacelabs_healthcare_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spacelabs_healthcare_get_serialize( + _param = self._index_sonicwall_get_serialize( page=page, limit=limit, cursor=cursor, @@ -279119,7 +279119,7 @@ async def index_spacelabs_healthcare_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -279130,7 +279130,7 @@ async def index_spacelabs_healthcare_get_without_preload_content( return response_data.response - def _index_spacelabs_healthcare_get_serialize( + def _index_sonicwall_get_serialize( self, page, limit, @@ -279298,7 +279298,7 @@ def _index_spacelabs_healthcare_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/spacelabs-healthcare', + resource_path='/v3/index/sonicwall', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -279315,7 +279315,7 @@ def _index_spacelabs_healthcare_get_serialize( @validate_call - async def index_splunk_get( + async def index_spacelabs_healthcare_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -279353,10 +279353,10 @@ async def index_splunk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination: - """Return vulnerability data stored in index \"splunk\" + ) -> RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"spacelabs-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -279428,7 +279428,7 @@ async def index_splunk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_splunk_get_serialize( + _param = self._index_spacelabs_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -279460,7 +279460,7 @@ async def index_splunk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -279476,7 +279476,7 @@ async def index_splunk_get( @validate_call - async def index_splunk_get_with_http_info( + async def index_spacelabs_healthcare_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -279514,10 +279514,10 @@ async def index_splunk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination]: - """Return vulnerability data stored in index \"splunk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"spacelabs-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -279589,7 +279589,7 @@ async def index_splunk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_splunk_get_serialize( + _param = self._index_spacelabs_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -279621,7 +279621,7 @@ async def index_splunk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -279637,7 +279637,7 @@ async def index_splunk_get_with_http_info( @validate_call - async def index_splunk_get_without_preload_content( + async def index_spacelabs_healthcare_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -279676,9 +279676,9 @@ async def index_splunk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"splunk\" + """Return vulnerability data stored in index \"spacelabs-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -279750,7 +279750,7 @@ async def index_splunk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_splunk_get_serialize( + _param = self._index_spacelabs_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -279782,7 +279782,7 @@ async def index_splunk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -279793,7 +279793,7 @@ async def index_splunk_get_without_preload_content( return response_data.response - def _index_splunk_get_serialize( + def _index_spacelabs_healthcare_get_serialize( self, page, limit, @@ -279961,7 +279961,7 @@ def _index_splunk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/splunk', + resource_path='/v3/index/spacelabs-healthcare', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -279978,7 +279978,7 @@ def _index_splunk_get_serialize( @validate_call - async def index_spring_get( + async def index_splunk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280016,10 +280016,10 @@ async def index_spring_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination: - """Return vulnerability data stored in index \"spring\" + ) -> RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination: + """Return vulnerability data stored in index \"splunk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` :param page: set the page number of the response :type page: int @@ -280091,7 +280091,7 @@ async def index_spring_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spring_get_serialize( + _param = self._index_splunk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280123,7 +280123,7 @@ async def index_spring_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", '404': "str", '500': "str", } @@ -280139,7 +280139,7 @@ async def index_spring_get( @validate_call - async def index_spring_get_with_http_info( + async def index_splunk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280177,10 +280177,10 @@ async def index_spring_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination]: - """Return vulnerability data stored in index \"spring\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination]: + """Return vulnerability data stored in index \"splunk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` :param page: set the page number of the response :type page: int @@ -280252,7 +280252,7 @@ async def index_spring_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spring_get_serialize( + _param = self._index_splunk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280284,7 +280284,7 @@ async def index_spring_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", '404': "str", '500': "str", } @@ -280300,7 +280300,7 @@ async def index_spring_get_with_http_info( @validate_call - async def index_spring_get_without_preload_content( + async def index_splunk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280339,9 +280339,9 @@ async def index_spring_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"spring\" + """Return vulnerability data stored in index \"splunk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` :param page: set the page number of the response :type page: int @@ -280413,7 +280413,7 @@ async def index_spring_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spring_get_serialize( + _param = self._index_splunk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280445,7 +280445,7 @@ async def index_spring_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", '404': "str", '500': "str", } @@ -280456,7 +280456,7 @@ async def index_spring_get_without_preload_content( return response_data.response - def _index_spring_get_serialize( + def _index_splunk_get_serialize( self, page, limit, @@ -280624,7 +280624,7 @@ def _index_spring_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/spring', + resource_path='/v3/index/splunk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -280641,7 +280641,7 @@ def _index_spring_get_serialize( @validate_call - async def index_ssd_get( + async def index_spring_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280679,10 +280679,10 @@ async def index_ssd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ssd\" + ) -> RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination: + """Return vulnerability data stored in index \"spring\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` :param page: set the page number of the response :type page: int @@ -280754,7 +280754,7 @@ async def index_ssd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ssd_get_serialize( + _param = self._index_spring_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280786,7 +280786,7 @@ async def index_ssd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", '404': "str", '500': "str", } @@ -280802,7 +280802,7 @@ async def index_ssd_get( @validate_call - async def index_ssd_get_with_http_info( + async def index_spring_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280840,10 +280840,10 @@ async def index_ssd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ssd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination]: + """Return vulnerability data stored in index \"spring\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` :param page: set the page number of the response :type page: int @@ -280915,7 +280915,7 @@ async def index_ssd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ssd_get_serialize( + _param = self._index_spring_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280947,7 +280947,7 @@ async def index_ssd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", '404': "str", '500': "str", } @@ -280963,7 +280963,7 @@ async def index_ssd_get_with_http_info( @validate_call - async def index_ssd_get_without_preload_content( + async def index_spring_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -281002,9 +281002,9 @@ async def index_ssd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ssd\" + """Return vulnerability data stored in index \"spring\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` :param page: set the page number of the response :type page: int @@ -281076,7 +281076,7 @@ async def index_ssd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ssd_get_serialize( + _param = self._index_spring_get_serialize( page=page, limit=limit, cursor=cursor, @@ -281108,7 +281108,7 @@ async def index_ssd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", '404': "str", '500': "str", } @@ -281119,7 +281119,7 @@ async def index_ssd_get_without_preload_content( return response_data.response - def _index_ssd_get_serialize( + def _index_spring_get_serialize( self, page, limit, @@ -281287,7 +281287,7 @@ def _index_ssd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ssd', + resource_path='/v3/index/spring', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -281304,7 +281304,7 @@ def _index_ssd_get_serialize( @validate_call - async def index_stormshield_get( + async def index_ssd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -281342,10 +281342,10 @@ async def index_stormshield_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination: - """Return vulnerability data stored in index \"stormshield\" + ) -> RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ssd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` :param page: set the page number of the response :type page: int @@ -281417,7 +281417,7 @@ async def index_stormshield_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stormshield_get_serialize( + _param = self._index_ssd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -281449,7 +281449,7 @@ async def index_stormshield_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -281465,7 +281465,7 @@ async def index_stormshield_get( @validate_call - async def index_stormshield_get_with_http_info( + async def index_ssd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -281503,10 +281503,10 @@ async def index_stormshield_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination]: - """Return vulnerability data stored in index \"stormshield\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ssd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` :param page: set the page number of the response :type page: int @@ -281578,7 +281578,7 @@ async def index_stormshield_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stormshield_get_serialize( + _param = self._index_ssd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -281610,7 +281610,7 @@ async def index_stormshield_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -281626,7 +281626,7 @@ async def index_stormshield_get_with_http_info( @validate_call - async def index_stormshield_get_without_preload_content( + async def index_ssd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -281665,9 +281665,9 @@ async def index_stormshield_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"stormshield\" + """Return vulnerability data stored in index \"ssd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` :param page: set the page number of the response :type page: int @@ -281739,7 +281739,7 @@ async def index_stormshield_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stormshield_get_serialize( + _param = self._index_ssd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -281771,7 +281771,7 @@ async def index_stormshield_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -281782,7 +281782,7 @@ async def index_stormshield_get_without_preload_content( return response_data.response - def _index_stormshield_get_serialize( + def _index_ssd_get_serialize( self, page, limit, @@ -281950,7 +281950,7 @@ def _index_stormshield_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/stormshield', + resource_path='/v3/index/ssd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -281967,7 +281967,7 @@ def _index_stormshield_get_serialize( @validate_call - async def index_stryker_get( + async def index_stormshield_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282005,10 +282005,10 @@ async def index_stryker_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"stryker\" + ) -> RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination: + """Return vulnerability data stored in index \"stormshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` :param page: set the page number of the response :type page: int @@ -282080,7 +282080,7 @@ async def index_stryker_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stryker_get_serialize( + _param = self._index_stormshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282112,7 +282112,7 @@ async def index_stryker_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", '404': "str", '500': "str", } @@ -282128,7 +282128,7 @@ async def index_stryker_get( @validate_call - async def index_stryker_get_with_http_info( + async def index_stormshield_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282166,10 +282166,10 @@ async def index_stryker_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"stryker\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination]: + """Return vulnerability data stored in index \"stormshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` :param page: set the page number of the response :type page: int @@ -282241,7 +282241,7 @@ async def index_stryker_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stryker_get_serialize( + _param = self._index_stormshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282273,7 +282273,7 @@ async def index_stryker_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", '404': "str", '500': "str", } @@ -282289,7 +282289,7 @@ async def index_stryker_get_with_http_info( @validate_call - async def index_stryker_get_without_preload_content( + async def index_stormshield_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282328,9 +282328,9 @@ async def index_stryker_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"stryker\" + """Return vulnerability data stored in index \"stormshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` :param page: set the page number of the response :type page: int @@ -282402,7 +282402,7 @@ async def index_stryker_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stryker_get_serialize( + _param = self._index_stormshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282434,7 +282434,7 @@ async def index_stryker_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", '404': "str", '500': "str", } @@ -282445,7 +282445,7 @@ async def index_stryker_get_without_preload_content( return response_data.response - def _index_stryker_get_serialize( + def _index_stormshield_get_serialize( self, page, limit, @@ -282613,7 +282613,7 @@ def _index_stryker_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/stryker', + resource_path='/v3/index/stormshield', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -282630,7 +282630,7 @@ def _index_stryker_get_serialize( @validate_call - async def index_sudo_get( + async def index_stryker_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282668,10 +282668,10 @@ async def index_sudo_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination: - """Return vulnerability data stored in index \"sudo\" + ) -> RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"stryker\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` :param page: set the page number of the response :type page: int @@ -282743,7 +282743,7 @@ async def index_sudo_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sudo_get_serialize( + _param = self._index_stryker_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282775,7 +282775,7 @@ async def index_sudo_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -282791,7 +282791,7 @@ async def index_sudo_get( @validate_call - async def index_sudo_get_with_http_info( + async def index_stryker_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282829,10 +282829,10 @@ async def index_sudo_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination]: - """Return vulnerability data stored in index \"sudo\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"stryker\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` :param page: set the page number of the response :type page: int @@ -282904,7 +282904,7 @@ async def index_sudo_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sudo_get_serialize( + _param = self._index_stryker_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282936,7 +282936,7 @@ async def index_sudo_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -282952,7 +282952,7 @@ async def index_sudo_get_with_http_info( @validate_call - async def index_sudo_get_without_preload_content( + async def index_stryker_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282991,9 +282991,9 @@ async def index_sudo_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sudo\" + """Return vulnerability data stored in index \"stryker\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` :param page: set the page number of the response :type page: int @@ -283065,7 +283065,7 @@ async def index_sudo_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sudo_get_serialize( + _param = self._index_stryker_get_serialize( page=page, limit=limit, cursor=cursor, @@ -283097,7 +283097,7 @@ async def index_sudo_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -283108,7 +283108,7 @@ async def index_sudo_get_without_preload_content( return response_data.response - def _index_sudo_get_serialize( + def _index_stryker_get_serialize( self, page, limit, @@ -283276,7 +283276,7 @@ def _index_sudo_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sudo', + resource_path='/v3/index/stryker', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -283293,7 +283293,7 @@ def _index_sudo_get_serialize( @validate_call - async def index_suse_get( + async def index_sudo_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -283331,10 +283331,10 @@ async def index_suse_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination: - """Return vulnerability data stored in index \"suse\" + ) -> RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination: + """Return vulnerability data stored in index \"sudo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` :param page: set the page number of the response :type page: int @@ -283406,7 +283406,7 @@ async def index_suse_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_get_serialize( + _param = self._index_sudo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -283438,7 +283438,7 @@ async def index_suse_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", '404': "str", '500': "str", } @@ -283454,7 +283454,7 @@ async def index_suse_get( @validate_call - async def index_suse_get_with_http_info( + async def index_sudo_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -283492,10 +283492,10 @@ async def index_suse_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination]: - """Return vulnerability data stored in index \"suse\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination]: + """Return vulnerability data stored in index \"sudo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` :param page: set the page number of the response :type page: int @@ -283567,7 +283567,7 @@ async def index_suse_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_get_serialize( + _param = self._index_sudo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -283599,7 +283599,7 @@ async def index_suse_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", '404': "str", '500': "str", } @@ -283615,7 +283615,7 @@ async def index_suse_get_with_http_info( @validate_call - async def index_suse_get_without_preload_content( + async def index_sudo_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -283654,9 +283654,9 @@ async def index_suse_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"suse\" + """Return vulnerability data stored in index \"sudo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` :param page: set the page number of the response :type page: int @@ -283728,7 +283728,7 @@ async def index_suse_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_get_serialize( + _param = self._index_sudo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -283760,7 +283760,7 @@ async def index_suse_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", '404': "str", '500': "str", } @@ -283771,7 +283771,7 @@ async def index_suse_get_without_preload_content( return response_data.response - def _index_suse_get_serialize( + def _index_sudo_get_serialize( self, page, limit, @@ -283939,7 +283939,7 @@ def _index_suse_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/suse', + resource_path='/v3/index/sudo', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -283956,7 +283956,7 @@ def _index_suse_get_serialize( @validate_call - async def index_suse_security_get( + async def index_suse_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -283994,10 +283994,10 @@ async def index_suse_security_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination: - """Return vulnerability data stored in index \"suse-security\" + ) -> RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination: + """Return vulnerability data stored in index \"suse\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` :param page: set the page number of the response :type page: int @@ -284069,7 +284069,7 @@ async def index_suse_security_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_security_get_serialize( + _param = self._index_suse_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284101,7 +284101,7 @@ async def index_suse_security_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", '404': "str", '500': "str", } @@ -284117,7 +284117,7 @@ async def index_suse_security_get( @validate_call - async def index_suse_security_get_with_http_info( + async def index_suse_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284155,10 +284155,10 @@ async def index_suse_security_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination]: - """Return vulnerability data stored in index \"suse-security\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination]: + """Return vulnerability data stored in index \"suse\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` :param page: set the page number of the response :type page: int @@ -284230,7 +284230,7 @@ async def index_suse_security_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_security_get_serialize( + _param = self._index_suse_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284262,7 +284262,7 @@ async def index_suse_security_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", '404': "str", '500': "str", } @@ -284278,7 +284278,7 @@ async def index_suse_security_get_with_http_info( @validate_call - async def index_suse_security_get_without_preload_content( + async def index_suse_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284317,9 +284317,9 @@ async def index_suse_security_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"suse-security\" + """Return vulnerability data stored in index \"suse\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` :param page: set the page number of the response :type page: int @@ -284391,7 +284391,7 @@ async def index_suse_security_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_security_get_serialize( + _param = self._index_suse_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284423,7 +284423,7 @@ async def index_suse_security_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", '404': "str", '500': "str", } @@ -284434,7 +284434,7 @@ async def index_suse_security_get_without_preload_content( return response_data.response - def _index_suse_security_get_serialize( + def _index_suse_get_serialize( self, page, limit, @@ -284602,7 +284602,7 @@ def _index_suse_security_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/suse-security', + resource_path='/v3/index/suse', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -284619,7 +284619,7 @@ def _index_suse_security_get_serialize( @validate_call - async def index_swift_get( + async def index_suse_security_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284657,10 +284657,10 @@ async def index_swift_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"swift\" + ) -> RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination: + """Return vulnerability data stored in index \"suse-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` :param page: set the page number of the response :type page: int @@ -284732,7 +284732,7 @@ async def index_swift_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swift_get_serialize( + _param = self._index_suse_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284764,7 +284764,7 @@ async def index_swift_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", '404': "str", '500': "str", } @@ -284780,7 +284780,7 @@ async def index_swift_get( @validate_call - async def index_swift_get_with_http_info( + async def index_suse_security_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284818,10 +284818,10 @@ async def index_swift_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"swift\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination]: + """Return vulnerability data stored in index \"suse-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` :param page: set the page number of the response :type page: int @@ -284893,7 +284893,7 @@ async def index_swift_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swift_get_serialize( + _param = self._index_suse_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284925,7 +284925,7 @@ async def index_swift_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", '404': "str", '500': "str", } @@ -284941,7 +284941,7 @@ async def index_swift_get_with_http_info( @validate_call - async def index_swift_get_without_preload_content( + async def index_suse_security_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284980,9 +284980,9 @@ async def index_swift_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"swift\" + """Return vulnerability data stored in index \"suse-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` :param page: set the page number of the response :type page: int @@ -285054,7 +285054,7 @@ async def index_swift_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swift_get_serialize( + _param = self._index_suse_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -285086,7 +285086,7 @@ async def index_swift_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", '404': "str", '500': "str", } @@ -285097,7 +285097,7 @@ async def index_swift_get_without_preload_content( return response_data.response - def _index_swift_get_serialize( + def _index_suse_security_get_serialize( self, page, limit, @@ -285265,7 +285265,7 @@ def _index_swift_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/swift', + resource_path='/v3/index/suse-security', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -285282,7 +285282,7 @@ def _index_swift_get_serialize( @validate_call - async def index_swisslog_healthcare_get( + async def index_swift_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -285320,10 +285320,10 @@ async def index_swisslog_healthcare_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"swisslog-healthcare\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"swift\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` :param page: set the page number of the response :type page: int @@ -285395,7 +285395,7 @@ async def index_swisslog_healthcare_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swisslog_healthcare_get_serialize( + _param = self._index_swift_get_serialize( page=page, limit=limit, cursor=cursor, @@ -285427,7 +285427,7 @@ async def index_swisslog_healthcare_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -285443,7 +285443,7 @@ async def index_swisslog_healthcare_get( @validate_call - async def index_swisslog_healthcare_get_with_http_info( + async def index_swift_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -285481,10 +285481,10 @@ async def index_swisslog_healthcare_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"swisslog-healthcare\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"swift\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` :param page: set the page number of the response :type page: int @@ -285556,7 +285556,7 @@ async def index_swisslog_healthcare_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swisslog_healthcare_get_serialize( + _param = self._index_swift_get_serialize( page=page, limit=limit, cursor=cursor, @@ -285588,7 +285588,7 @@ async def index_swisslog_healthcare_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -285604,7 +285604,7 @@ async def index_swisslog_healthcare_get_with_http_info( @validate_call - async def index_swisslog_healthcare_get_without_preload_content( + async def index_swift_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -285643,9 +285643,9 @@ async def index_swisslog_healthcare_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"swisslog-healthcare\" + """Return vulnerability data stored in index \"swift\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` :param page: set the page number of the response :type page: int @@ -285717,7 +285717,7 @@ async def index_swisslog_healthcare_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swisslog_healthcare_get_serialize( + _param = self._index_swift_get_serialize( page=page, limit=limit, cursor=cursor, @@ -285749,7 +285749,7 @@ async def index_swisslog_healthcare_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -285760,7 +285760,7 @@ async def index_swisslog_healthcare_get_without_preload_content( return response_data.response - def _index_swisslog_healthcare_get_serialize( + def _index_swift_get_serialize( self, page, limit, @@ -285928,7 +285928,7 @@ def _index_swisslog_healthcare_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/swisslog-healthcare', + resource_path='/v3/index/swift', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -285945,7 +285945,7 @@ def _index_swisslog_healthcare_get_serialize( @validate_call - async def index_symfony_get( + async def index_swisslog_healthcare_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -285983,10 +285983,10 @@ async def index_symfony_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination: - """Return vulnerability data stored in index \"symfony\" + ) -> RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"swisslog-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -286058,7 +286058,7 @@ async def index_symfony_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_symfony_get_serialize( + _param = self._index_swisslog_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286090,7 +286090,7 @@ async def index_symfony_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -286106,7 +286106,7 @@ async def index_symfony_get( @validate_call - async def index_symfony_get_with_http_info( + async def index_swisslog_healthcare_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286144,10 +286144,10 @@ async def index_symfony_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination]: - """Return vulnerability data stored in index \"symfony\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"swisslog-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -286219,7 +286219,7 @@ async def index_symfony_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_symfony_get_serialize( + _param = self._index_swisslog_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286251,7 +286251,7 @@ async def index_symfony_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -286267,7 +286267,7 @@ async def index_symfony_get_with_http_info( @validate_call - async def index_symfony_get_without_preload_content( + async def index_swisslog_healthcare_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286306,9 +286306,9 @@ async def index_symfony_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"symfony\" + """Return vulnerability data stored in index \"swisslog-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -286380,7 +286380,7 @@ async def index_symfony_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_symfony_get_serialize( + _param = self._index_swisslog_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286412,7 +286412,7 @@ async def index_symfony_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -286423,7 +286423,7 @@ async def index_symfony_get_without_preload_content( return response_data.response - def _index_symfony_get_serialize( + def _index_swisslog_healthcare_get_serialize( self, page, limit, @@ -286591,7 +286591,7 @@ def _index_symfony_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/symfony', + resource_path='/v3/index/swisslog-healthcare', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -286608,7 +286608,7 @@ def _index_symfony_get_serialize( @validate_call - async def index_synacktiv_get( + async def index_symfony_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286646,10 +286646,10 @@ async def index_synacktiv_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination: - """Return vulnerability data stored in index \"synacktiv\" + ) -> RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination: + """Return vulnerability data stored in index \"symfony\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` :param page: set the page number of the response :type page: int @@ -286721,7 +286721,7 @@ async def index_synacktiv_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synacktiv_get_serialize( + _param = self._index_symfony_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286753,7 +286753,7 @@ async def index_synacktiv_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", '404': "str", '500': "str", } @@ -286769,7 +286769,7 @@ async def index_synacktiv_get( @validate_call - async def index_synacktiv_get_with_http_info( + async def index_symfony_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286807,10 +286807,10 @@ async def index_synacktiv_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination]: - """Return vulnerability data stored in index \"synacktiv\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination]: + """Return vulnerability data stored in index \"symfony\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` :param page: set the page number of the response :type page: int @@ -286882,7 +286882,7 @@ async def index_synacktiv_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synacktiv_get_serialize( + _param = self._index_symfony_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286914,7 +286914,7 @@ async def index_synacktiv_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", '404': "str", '500': "str", } @@ -286930,7 +286930,7 @@ async def index_synacktiv_get_with_http_info( @validate_call - async def index_synacktiv_get_without_preload_content( + async def index_symfony_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286969,9 +286969,9 @@ async def index_synacktiv_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"synacktiv\" + """Return vulnerability data stored in index \"symfony\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` :param page: set the page number of the response :type page: int @@ -287043,7 +287043,7 @@ async def index_synacktiv_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synacktiv_get_serialize( + _param = self._index_symfony_get_serialize( page=page, limit=limit, cursor=cursor, @@ -287075,7 +287075,7 @@ async def index_synacktiv_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", '404': "str", '500': "str", } @@ -287086,7 +287086,7 @@ async def index_synacktiv_get_without_preload_content( return response_data.response - def _index_synacktiv_get_serialize( + def _index_symfony_get_serialize( self, page, limit, @@ -287254,7 +287254,7 @@ def _index_synacktiv_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/synacktiv', + resource_path='/v3/index/symfony', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -287271,7 +287271,7 @@ def _index_synacktiv_get_serialize( @validate_call - async def index_syncrosoft_get( + async def index_synacktiv_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -287309,10 +287309,10 @@ async def index_syncrosoft_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination: - """Return vulnerability data stored in index \"syncrosoft\" + ) -> RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination: + """Return vulnerability data stored in index \"synacktiv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` :param page: set the page number of the response :type page: int @@ -287384,7 +287384,7 @@ async def index_syncrosoft_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syncrosoft_get_serialize( + _param = self._index_synacktiv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -287416,7 +287416,7 @@ async def index_syncrosoft_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", '404': "str", '500': "str", } @@ -287432,7 +287432,7 @@ async def index_syncrosoft_get( @validate_call - async def index_syncrosoft_get_with_http_info( + async def index_synacktiv_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -287470,10 +287470,10 @@ async def index_syncrosoft_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination]: - """Return vulnerability data stored in index \"syncrosoft\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination]: + """Return vulnerability data stored in index \"synacktiv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` :param page: set the page number of the response :type page: int @@ -287545,7 +287545,7 @@ async def index_syncrosoft_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syncrosoft_get_serialize( + _param = self._index_synacktiv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -287577,7 +287577,7 @@ async def index_syncrosoft_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", '404': "str", '500': "str", } @@ -287593,7 +287593,7 @@ async def index_syncrosoft_get_with_http_info( @validate_call - async def index_syncrosoft_get_without_preload_content( + async def index_synacktiv_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -287632,9 +287632,9 @@ async def index_syncrosoft_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"syncrosoft\" + """Return vulnerability data stored in index \"synacktiv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` :param page: set the page number of the response :type page: int @@ -287706,7 +287706,7 @@ async def index_syncrosoft_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syncrosoft_get_serialize( + _param = self._index_synacktiv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -287738,7 +287738,7 @@ async def index_syncrosoft_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", '404': "str", '500': "str", } @@ -287749,7 +287749,7 @@ async def index_syncrosoft_get_without_preload_content( return response_data.response - def _index_syncrosoft_get_serialize( + def _index_synacktiv_get_serialize( self, page, limit, @@ -287917,7 +287917,7 @@ def _index_syncrosoft_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/syncrosoft', + resource_path='/v3/index/synacktiv', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -287934,7 +287934,7 @@ def _index_syncrosoft_get_serialize( @validate_call - async def index_synology_get( + async def index_syncrosoft_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -287972,10 +287972,10 @@ async def index_synology_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination: - """Return vulnerability data stored in index \"synology\" + ) -> RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination: + """Return vulnerability data stored in index \"syncrosoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` :param page: set the page number of the response :type page: int @@ -288047,7 +288047,7 @@ async def index_synology_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synology_get_serialize( + _param = self._index_syncrosoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288079,7 +288079,7 @@ async def index_synology_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", '404': "str", '500': "str", } @@ -288095,7 +288095,7 @@ async def index_synology_get( @validate_call - async def index_synology_get_with_http_info( + async def index_syncrosoft_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288133,10 +288133,10 @@ async def index_synology_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination]: - """Return vulnerability data stored in index \"synology\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination]: + """Return vulnerability data stored in index \"syncrosoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` :param page: set the page number of the response :type page: int @@ -288208,7 +288208,7 @@ async def index_synology_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synology_get_serialize( + _param = self._index_syncrosoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288240,7 +288240,7 @@ async def index_synology_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", '404': "str", '500': "str", } @@ -288256,7 +288256,7 @@ async def index_synology_get_with_http_info( @validate_call - async def index_synology_get_without_preload_content( + async def index_syncrosoft_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288295,9 +288295,9 @@ async def index_synology_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"synology\" + """Return vulnerability data stored in index \"syncrosoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` :param page: set the page number of the response :type page: int @@ -288369,7 +288369,7 @@ async def index_synology_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synology_get_serialize( + _param = self._index_syncrosoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288401,7 +288401,7 @@ async def index_synology_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", '404': "str", '500': "str", } @@ -288412,7 +288412,7 @@ async def index_synology_get_without_preload_content( return response_data.response - def _index_synology_get_serialize( + def _index_syncrosoft_get_serialize( self, page, limit, @@ -288580,7 +288580,7 @@ def _index_synology_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/synology', + resource_path='/v3/index/syncrosoft', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -288597,7 +288597,7 @@ def _index_synology_get_serialize( @validate_call - async def index_syss_get( + async def index_synology_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288635,10 +288635,10 @@ async def index_syss_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination: - """Return vulnerability data stored in index \"syss\" + ) -> RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination: + """Return vulnerability data stored in index \"synology\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` :param page: set the page number of the response :type page: int @@ -288710,7 +288710,7 @@ async def index_syss_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syss_get_serialize( + _param = self._index_synology_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288742,7 +288742,7 @@ async def index_syss_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", '404': "str", '500': "str", } @@ -288758,7 +288758,7 @@ async def index_syss_get( @validate_call - async def index_syss_get_with_http_info( + async def index_synology_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288796,10 +288796,10 @@ async def index_syss_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination]: - """Return vulnerability data stored in index \"syss\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination]: + """Return vulnerability data stored in index \"synology\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` :param page: set the page number of the response :type page: int @@ -288871,7 +288871,7 @@ async def index_syss_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syss_get_serialize( + _param = self._index_synology_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288903,7 +288903,7 @@ async def index_syss_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", '404': "str", '500': "str", } @@ -288919,7 +288919,7 @@ async def index_syss_get_with_http_info( @validate_call - async def index_syss_get_without_preload_content( + async def index_synology_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288958,9 +288958,9 @@ async def index_syss_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"syss\" + """Return vulnerability data stored in index \"synology\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` :param page: set the page number of the response :type page: int @@ -289032,7 +289032,7 @@ async def index_syss_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syss_get_serialize( + _param = self._index_synology_get_serialize( page=page, limit=limit, cursor=cursor, @@ -289064,7 +289064,7 @@ async def index_syss_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", '404': "str", '500': "str", } @@ -289075,7 +289075,7 @@ async def index_syss_get_without_preload_content( return response_data.response - def _index_syss_get_serialize( + def _index_synology_get_serialize( self, page, limit, @@ -289243,7 +289243,7 @@ def _index_syss_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/syss', + resource_path='/v3/index/synology', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -289260,7 +289260,7 @@ def _index_syss_get_serialize( @validate_call - async def index_tailscale_get( + async def index_syss_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -289298,10 +289298,10 @@ async def index_tailscale_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination: - """Return vulnerability data stored in index \"tailscale\" + ) -> RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination: + """Return vulnerability data stored in index \"syss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` :param page: set the page number of the response :type page: int @@ -289373,7 +289373,7 @@ async def index_tailscale_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_tailscale_get_serialize( + _param = self._index_syss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -289405,7 +289405,7 @@ async def index_tailscale_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", '404': "str", '500': "str", } @@ -289421,7 +289421,7 @@ async def index_tailscale_get( @validate_call - async def index_tailscale_get_with_http_info( + async def index_syss_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -289459,10 +289459,10 @@ async def index_tailscale_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination]: - """Return vulnerability data stored in index \"tailscale\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination]: + """Return vulnerability data stored in index \"syss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` :param page: set the page number of the response :type page: int @@ -289534,7 +289534,7 @@ async def index_tailscale_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_tailscale_get_serialize( + _param = self._index_syss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -289566,7 +289566,7 @@ async def index_tailscale_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", '404': "str", '500': "str", } @@ -289582,7 +289582,7 @@ async def index_tailscale_get_with_http_info( @validate_call - async def index_tailscale_get_without_preload_content( + async def index_syss_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -289621,9 +289621,9 @@ async def index_tailscale_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"tailscale\" + """Return vulnerability data stored in index \"syss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` :param page: set the page number of the response :type page: int @@ -289695,7 +289695,7 @@ async def index_tailscale_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_tailscale_get_serialize( + _param = self._index_syss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -289727,7 +289727,7 @@ async def index_tailscale_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", '404': "str", '500': "str", } @@ -289738,7 +289738,7 @@ async def index_tailscale_get_without_preload_content( return response_data.response - def _index_tailscale_get_serialize( + def _index_syss_get_serialize( self, page, limit, @@ -289906,7 +289906,7 @@ def _index_tailscale_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/tailscale', + resource_path='/v3/index/syss', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -289923,7 +289923,7 @@ def _index_tailscale_get_serialize( @validate_call - async def index_target_intel_cve_summary_get( + async def index_tailscale_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -289961,10 +289961,10 @@ async def index_target_intel_cve_summary_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination: - """Return vulnerability data stored in index \"target-intel-cve-summary\" + ) -> RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination: + """Return vulnerability data stored in index \"tailscale\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the target-intel-cve-summary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Target Intelligence CVE Summary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel-cve-summary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/target-intel-cve-summary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` :param page: set the page number of the response :type page: int @@ -290036,7 +290036,7 @@ async def index_target_intel_cve_summary_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_target_intel_cve_summary_get_serialize( + _param = self._index_tailscale_get_serialize( page=page, limit=limit, cursor=cursor, @@ -290068,7 +290068,7 @@ async def index_target_intel_cve_summary_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", '404': "str", '500': "str", } @@ -290084,7 +290084,7 @@ async def index_target_intel_cve_summary_get( @validate_call - async def index_target_intel_cve_summary_get_with_http_info( + async def index_tailscale_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -290122,10 +290122,10 @@ async def index_target_intel_cve_summary_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination]: - """Return vulnerability data stored in index \"target-intel-cve-summary\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination]: + """Return vulnerability data stored in index \"tailscale\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the target-intel-cve-summary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Target Intelligence CVE Summary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel-cve-summary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/target-intel-cve-summary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` :param page: set the page number of the response :type page: int @@ -290197,7 +290197,7 @@ async def index_target_intel_cve_summary_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_target_intel_cve_summary_get_serialize( + _param = self._index_tailscale_get_serialize( page=page, limit=limit, cursor=cursor, @@ -290229,7 +290229,7 @@ async def index_target_intel_cve_summary_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", '404': "str", '500': "str", } @@ -290245,7 +290245,7 @@ async def index_target_intel_cve_summary_get_with_http_info( @validate_call - async def index_target_intel_cve_summary_get_without_preload_content( + async def index_tailscale_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -290284,9 +290284,9 @@ async def index_target_intel_cve_summary_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"target-intel-cve-summary\" + """Return vulnerability data stored in index \"tailscale\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the target-intel-cve-summary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Target Intelligence CVE Summary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel-cve-summary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/target-intel-cve-summary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` :param page: set the page number of the response :type page: int @@ -290358,7 +290358,7 @@ async def index_target_intel_cve_summary_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_target_intel_cve_summary_get_serialize( + _param = self._index_tailscale_get_serialize( page=page, limit=limit, cursor=cursor, @@ -290390,7 +290390,7 @@ async def index_target_intel_cve_summary_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", '404': "str", '500': "str", } @@ -290401,7 +290401,7 @@ async def index_target_intel_cve_summary_get_without_preload_content( return response_data.response - def _index_target_intel_cve_summary_get_serialize( + def _index_tailscale_get_serialize( self, page, limit, @@ -290569,7 +290569,7 @@ def _index_target_intel_cve_summary_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/target-intel-cve-summary', + resource_path='/v3/index/tailscale', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -290599,16 +290599,18 @@ async def index_target_intel_get( country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, cpe: Annotated[Optional[StrictStr], Field(description="CPE string")] = None, vendor: Annotated[Optional[StrictStr], Field(description="Vendor name")] = None, product: Annotated[Optional[StrictStr], Field(description="Product name")] = None, version: Annotated[Optional[StrictStr], Field(description="Product version")] = None, protocol: Annotated[Optional[StrictStr], Field(description="Protocol")] = None, + transport: Annotated[Optional[StrictStr], Field(description="Transport (tcp/udp)")] = None, port: Annotated[Optional[StrictStr], Field(description="Port number")] = None, contains_cve: Annotated[Optional[StrictBool], Field(description="Filter to records that have (true) or do not have (false) an associated CVE")] = None, + confirmed: Annotated[Optional[StrictBool], Field(description="Filter to records with at least one CVE match that is (true) or is not (false) confirmed")] = None, classifications: Annotated[Optional[StrictStr], Field(description="Match one or more classification values")] = None, hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the hostname")] = None, + domain: Annotated[Optional[StrictStr], Field(description="Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix)")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -290655,8 +290657,6 @@ async def index_target_intel_get( :type country_code: str :param asn: Autonomous system number :type asn: str - :param id: Record type - :type id: str :param cpe: CPE string :type cpe: str :param vendor: Vendor name @@ -290667,14 +290667,20 @@ async def index_target_intel_get( :type version: str :param protocol: Protocol :type protocol: str + :param transport: Transport (tcp/udp) + :type transport: str :param port: Port number :type port: str :param contains_cve: Filter to records that have (true) or do not have (false) an associated CVE :type contains_cve: bool + :param confirmed: Filter to records with at least one CVE match that is (true) or is not (false) confirmed + :type confirmed: bool :param classifications: Match one or more classification values :type classifications: str :param hostname: Match a string in the hostname :type hostname: str + :param domain: Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix) + :type domain: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -290723,16 +290729,18 @@ async def index_target_intel_get( country=country, country_code=country_code, asn=asn, - id=id, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, + transport=transport, port=port, contains_cve=contains_cve, + confirmed=confirmed, classifications=classifications, hostname=hostname, + domain=domain, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -290776,16 +290784,18 @@ async def index_target_intel_get_with_http_info( country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, cpe: Annotated[Optional[StrictStr], Field(description="CPE string")] = None, vendor: Annotated[Optional[StrictStr], Field(description="Vendor name")] = None, product: Annotated[Optional[StrictStr], Field(description="Product name")] = None, version: Annotated[Optional[StrictStr], Field(description="Product version")] = None, protocol: Annotated[Optional[StrictStr], Field(description="Protocol")] = None, + transport: Annotated[Optional[StrictStr], Field(description="Transport (tcp/udp)")] = None, port: Annotated[Optional[StrictStr], Field(description="Port number")] = None, contains_cve: Annotated[Optional[StrictBool], Field(description="Filter to records that have (true) or do not have (false) an associated CVE")] = None, + confirmed: Annotated[Optional[StrictBool], Field(description="Filter to records with at least one CVE match that is (true) or is not (false) confirmed")] = None, classifications: Annotated[Optional[StrictStr], Field(description="Match one or more classification values")] = None, hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the hostname")] = None, + domain: Annotated[Optional[StrictStr], Field(description="Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix)")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -290832,8 +290842,6 @@ async def index_target_intel_get_with_http_info( :type country_code: str :param asn: Autonomous system number :type asn: str - :param id: Record type - :type id: str :param cpe: CPE string :type cpe: str :param vendor: Vendor name @@ -290844,14 +290852,20 @@ async def index_target_intel_get_with_http_info( :type version: str :param protocol: Protocol :type protocol: str + :param transport: Transport (tcp/udp) + :type transport: str :param port: Port number :type port: str :param contains_cve: Filter to records that have (true) or do not have (false) an associated CVE :type contains_cve: bool + :param confirmed: Filter to records with at least one CVE match that is (true) or is not (false) confirmed + :type confirmed: bool :param classifications: Match one or more classification values :type classifications: str :param hostname: Match a string in the hostname :type hostname: str + :param domain: Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix) + :type domain: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -290900,16 +290914,18 @@ async def index_target_intel_get_with_http_info( country=country, country_code=country_code, asn=asn, - id=id, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, + transport=transport, port=port, contains_cve=contains_cve, + confirmed=confirmed, classifications=classifications, hostname=hostname, + domain=domain, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -290953,16 +290969,18 @@ async def index_target_intel_get_without_preload_content( country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, cpe: Annotated[Optional[StrictStr], Field(description="CPE string")] = None, vendor: Annotated[Optional[StrictStr], Field(description="Vendor name")] = None, product: Annotated[Optional[StrictStr], Field(description="Product name")] = None, version: Annotated[Optional[StrictStr], Field(description="Product version")] = None, protocol: Annotated[Optional[StrictStr], Field(description="Protocol")] = None, + transport: Annotated[Optional[StrictStr], Field(description="Transport (tcp/udp)")] = None, port: Annotated[Optional[StrictStr], Field(description="Port number")] = None, contains_cve: Annotated[Optional[StrictBool], Field(description="Filter to records that have (true) or do not have (false) an associated CVE")] = None, + confirmed: Annotated[Optional[StrictBool], Field(description="Filter to records with at least one CVE match that is (true) or is not (false) confirmed")] = None, classifications: Annotated[Optional[StrictStr], Field(description="Match one or more classification values")] = None, hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the hostname")] = None, + domain: Annotated[Optional[StrictStr], Field(description="Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix)")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -291009,8 +291027,6 @@ async def index_target_intel_get_without_preload_content( :type country_code: str :param asn: Autonomous system number :type asn: str - :param id: Record type - :type id: str :param cpe: CPE string :type cpe: str :param vendor: Vendor name @@ -291021,14 +291037,20 @@ async def index_target_intel_get_without_preload_content( :type version: str :param protocol: Protocol :type protocol: str + :param transport: Transport (tcp/udp) + :type transport: str :param port: Port number :type port: str :param contains_cve: Filter to records that have (true) or do not have (false) an associated CVE :type contains_cve: bool + :param confirmed: Filter to records with at least one CVE match that is (true) or is not (false) confirmed + :type confirmed: bool :param classifications: Match one or more classification values :type classifications: str :param hostname: Match a string in the hostname :type hostname: str + :param domain: Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix) + :type domain: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -291077,16 +291099,18 @@ async def index_target_intel_get_without_preload_content( country=country, country_code=country_code, asn=asn, - id=id, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, + transport=transport, port=port, contains_cve=contains_cve, + confirmed=confirmed, classifications=classifications, hostname=hostname, + domain=domain, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -291125,16 +291149,18 @@ def _index_target_intel_get_serialize( country, country_code, asn, - id, cpe, vendor, product, version, protocol, + transport, port, contains_cve, + confirmed, classifications, hostname, + domain, date, updated_at_start_date, updated_at_end_date, @@ -291211,10 +291237,6 @@ def _index_target_intel_get_serialize( _query_params.append(('asn', asn)) - if id is not None: - - _query_params.append(('id', id)) - if cpe is not None: _query_params.append(('cpe', cpe)) @@ -291235,6 +291257,10 @@ def _index_target_intel_get_serialize( _query_params.append(('protocol', protocol)) + if transport is not None: + + _query_params.append(('transport', transport)) + if port is not None: _query_params.append(('port', port)) @@ -291243,6 +291269,10 @@ def _index_target_intel_get_serialize( _query_params.append(('contains_cve', contains_cve)) + if confirmed is not None: + + _query_params.append(('confirmed', confirmed)) + if classifications is not None: _query_params.append(('classifications', classifications)) @@ -291251,6 +291281,10 @@ def _index_target_intel_get_serialize( _query_params.append(('hostname', hostname)) + if domain is not None: + + _query_params.append(('domain', domain)) + if date is not None: _query_params.append(('date', date)) diff --git a/vulncheck_sdk/aio/api_client.py b/vulncheck_sdk/aio/api_client.py index f87b181f..d708c2bd 100644 --- a/vulncheck_sdk/aio/api_client.py +++ b/vulncheck_sdk/aio/api_client.py @@ -92,7 +92,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.0.51/python' + self.user_agent = 'OpenAPI-Generator/0.0.52/python' self.client_side_validation = configuration.client_side_validation async def __aenter__(self): diff --git a/vulncheck_sdk/aio/configuration.py b/vulncheck_sdk/aio/configuration.py index ef9ede5e..5b669a92 100644 --- a/vulncheck_sdk/aio/configuration.py +++ b/vulncheck_sdk/aio/configuration.py @@ -532,7 +532,7 @@ def to_debug_report(self) -> str: "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: latest\n"\ - "SDK Package Version: 0.0.51".\ + "SDK Package Version: 0.0.52".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self) -> List[HostSetting]: diff --git a/vulncheck_sdk/aio/models/__init__.py b/vulncheck_sdk/aio/models/__init__.py index 9d63510f..b8b51bde 100644 --- a/vulncheck_sdk/aio/models/__init__.py +++ b/vulncheck_sdk/aio/models/__init__.py @@ -66,6 +66,7 @@ from vulncheck_sdk.aio.models.advisory_android_package import AdvisoryAndroidPackage from vulncheck_sdk.aio.models.advisory_android_range import AdvisoryAndroidRange from vulncheck_sdk.aio.models.advisory_android_reference import AdvisoryAndroidReference +from vulncheck_sdk.aio.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD from vulncheck_sdk.aio.models.advisory_apache_active_mq import AdvisoryApacheActiveMQ from vulncheck_sdk.aio.models.advisory_apache_archiva import AdvisoryApacheArchiva from vulncheck_sdk.aio.models.advisory_apache_arrow import AdvisoryApacheArrow @@ -158,6 +159,8 @@ from vulncheck_sdk.aio.models.advisory_csaf_relationship import AdvisoryCSAFRelationship from vulncheck_sdk.aio.models.advisory_csaf_score import AdvisoryCSAFScore from vulncheck_sdk.aio.models.advisory_csaf_vulnerability import AdvisoryCSAFVulnerability +from vulncheck_sdk.aio.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare +from vulncheck_sdk.aio.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot from vulncheck_sdk.aio.models.advisory_cve_detail import AdvisoryCVEDetail from vulncheck_sdk.aio.models.advisory_cve_details_link import AdvisoryCVEDetailsLink from vulncheck_sdk.aio.models.advisory_cve_identity_mappings import AdvisoryCVEIdentityMappings @@ -792,10 +795,12 @@ from vulncheck_sdk.aio.models.advisory_zyxel import AdvisoryZyxel from vulncheck_sdk.aio.models.api_base_metric_v2 import ApiBaseMetricV2 from vulncheck_sdk.aio.models.api_base_metric_v3 import ApiBaseMetricV3 +from vulncheck_sdk.aio.models.api_c2_frequency import ApiC2Frequency from vulncheck_sdk.aio.models.api_cpe import ApiCPE from vulncheck_sdk.aio.models.api_cpe_match import ApiCPEMatch from vulncheck_sdk.aio.models.api_cpe_name import ApiCPEName from vulncheck_sdk.aio.models.api_cve import ApiCVE +from vulncheck_sdk.aio.models.api_cve_confirmed import ApiCVEConfirmed from vulncheck_sdk.aio.models.api_cve_data_meta import ApiCVEDataMeta from vulncheck_sdk.aio.models.api_cve_data_meta_extended import ApiCVEDataMetaExtended from vulncheck_sdk.aio.models.api_cve_extended import ApiCVEExtended @@ -826,6 +831,8 @@ from vulncheck_sdk.aio.models.api_impact_extended import ApiImpactExtended from vulncheck_sdk.aio.models.api_initial_access import ApiInitialAccess from vulncheck_sdk.aio.models.api_initial_access_artifact import ApiInitialAccessArtifact +from vulncheck_sdk.aio.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit +from vulncheck_sdk.aio.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag from vulncheck_sdk.aio.models.api_mitre_attack_tech import ApiMitreAttackTech from vulncheck_sdk.aio.models.api_mitre_attack_to_cve import ApiMitreAttackToCVE from vulncheck_sdk.aio.models.api_mitre_d3fend_technique import ApiMitreD3fendTechnique @@ -879,9 +886,6 @@ from vulncheck_sdk.aio.models.api_related_attack_pattern import ApiRelatedAttackPattern from vulncheck_sdk.aio.models.api_ssvc import ApiSSVC from vulncheck_sdk.aio.models.api_target_intel import ApiTargetIntel -from vulncheck_sdk.aio.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary -from vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner -from vulncheck_sdk.aio.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner from vulncheck_sdk.aio.models.api_temporal_cvssv2 import ApiTemporalCVSSV2 from vulncheck_sdk.aio.models.api_temporal_cvssv3 import ApiTemporalCVSSV3 from vulncheck_sdk.aio.models.api_temporal_metric_v2 import ApiTemporalMetricV2 @@ -932,6 +936,7 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_amazon_cve_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_anchore_nvd_override_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_android_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination +from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_active_mq_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_archiva_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination @@ -1378,7 +1383,6 @@ from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_nvd20_cve_extended_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_nvd20_cve_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_oss_package_paginate_pagination import RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination -from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_target_intel_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_update_paginate_pagination import RenderResponseWithMetadataArrayApiUpdatePaginatePagination from vulncheck_sdk.aio.models.render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination import RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination diff --git a/vulncheck_sdk/aio/models/advisory_anthropic_cvd.py b/vulncheck_sdk/aio/models/advisory_anthropic_cvd.py new file mode 100644 index 00000000..4025146f --- /dev/null +++ b/vulncheck_sdk/aio/models/advisory_anthropic_cvd.py @@ -0,0 +1,138 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.aio.models.advisory_credit import AdvisoryCredit +from vulncheck_sdk.aio.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare +from vulncheck_sdk.aio.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot +from vulncheck_sdk.aio.models.advisory_timeline import AdvisoryTimeline +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryAnthropicCVD(BaseModel): + """ + advisory.AnthropicCVD + """ # noqa: E501 + attribution: Optional[AdvisoryCredit] = None + bug_class: Optional[StrictStr] = None + cve: Optional[List[StrictStr]] = None + date_added: Optional[StrictStr] = None + date_committed: Optional[StrictStr] = None + entry: Optional[List[StrictInt]] = None + ghsa: Optional[List[StrictStr]] = None + hash: Optional[StrictStr] = None + project: Optional[StrictStr] = None + raw_preimage: Optional[List[StrictInt]] = None + severities: Optional[AdvisoryCVDSeverityCompare] = None + snapshot: Optional[AdvisoryCVDSnapshot] = None + status: Optional[StrictStr] = None + timeline: Optional[List[AdvisoryTimeline]] = Field(default=None, description="Timeline / Attribution / Severities come from the detail-page HTML (parsed at ingest, not from any JSON document). Revealed-only.") + updated_at: Optional[StrictStr] = None + url: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["attribution", "bug_class", "cve", "date_added", "date_committed", "entry", "ghsa", "hash", "project", "raw_preimage", "severities", "snapshot", "status", "timeline", "updated_at", "url"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryAnthropicCVD from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of attribution + if self.attribution: + _dict['attribution'] = self.attribution.to_dict() + # override the default output from pydantic by calling `to_dict()` of severities + if self.severities: + _dict['severities'] = self.severities.to_dict() + # override the default output from pydantic by calling `to_dict()` of snapshot + if self.snapshot: + _dict['snapshot'] = self.snapshot.to_dict() + # override the default output from pydantic by calling `to_dict()` of each item in timeline (list) + _items = [] + if self.timeline: + for _item_timeline in self.timeline: + if _item_timeline: + _items.append(_item_timeline.to_dict()) + _dict['timeline'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryAnthropicCVD from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "attribution": AdvisoryCredit.from_dict(obj["attribution"]) if obj.get("attribution") is not None else None, + "bug_class": obj.get("bug_class"), + "cve": obj.get("cve"), + "date_added": obj.get("date_added"), + "date_committed": obj.get("date_committed"), + "entry": obj.get("entry"), + "ghsa": obj.get("ghsa"), + "hash": obj.get("hash"), + "project": obj.get("project"), + "raw_preimage": obj.get("raw_preimage"), + "severities": AdvisoryCVDSeverityCompare.from_dict(obj["severities"]) if obj.get("severities") is not None else None, + "snapshot": AdvisoryCVDSnapshot.from_dict(obj["snapshot"]) if obj.get("snapshot") is not None else None, + "status": obj.get("status"), + "timeline": [AdvisoryTimeline.from_dict(_item) for _item in obj["timeline"]] if obj.get("timeline") is not None else None, + "updated_at": obj.get("updated_at"), + "url": obj.get("url") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/advisory_avidml_advs.py b/vulncheck_sdk/aio/models/advisory_avidml_advs.py index 71db98ba..72a2e25e 100644 --- a/vulncheck_sdk/aio/models/advisory_avidml_advs.py +++ b/vulncheck_sdk/aio/models/advisory_avidml_advs.py @@ -27,6 +27,7 @@ class AdvisoryAVIDMLAdvs(BaseModel): """ advisory.AVIDMLAdvs """ # noqa: E501 + cve: Optional[List[StrictStr]] = None date_added: Optional[StrictStr] = None description: Optional[StrictStr] = None id: Optional[StrictStr] = None @@ -34,7 +35,7 @@ class AdvisoryAVIDMLAdvs(BaseModel): title: Optional[StrictStr] = None updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["date_added", "description", "id", "references", "title", "updated_at", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "description", "id", "references", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -87,6 +88,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ + "cve": obj.get("cve"), "date_added": obj.get("date_added"), "description": obj.get("description"), "id": obj.get("id"), diff --git a/vulncheck_sdk/aio/models/advisory_cvd_severity_compare.py b/vulncheck_sdk/aio/models/advisory_cvd_severity_compare.py new file mode 100644 index 00000000..2b40f5a7 --- /dev/null +++ b/vulncheck_sdk/aio/models/advisory_cvd_severity_compare.py @@ -0,0 +1,92 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryCVDSeverityCompare(BaseModel): + """ + advisory.CVDSeverityCompare + """ # noqa: E501 + claude: Optional[StrictStr] = None + maintainer: Optional[StrictStr] = None + security_research_firm: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["claude", "maintainer", "security_research_firm"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryCVDSeverityCompare from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryCVDSeverityCompare from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "claude": obj.get("claude"), + "maintainer": obj.get("maintainer"), + "security_research_firm": obj.get("security_research_firm") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/advisory_cvd_snapshot.py b/vulncheck_sdk/aio/models/advisory_cvd_snapshot.py new file mode 100644 index 00000000..cb7637dc --- /dev/null +++ b/vulncheck_sdk/aio/models/advisory_cvd_snapshot.py @@ -0,0 +1,94 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryCVDSnapshot(BaseModel): + """ + Snapshot provenance — which payload.json snapshot this record came from. ManifestSHA3 + Revision + AsOf are stable per-snapshot. + """ # noqa: E501 + as_of: Optional[StrictStr] = None + fetched_at: Optional[StrictStr] = None + manifest_sha3: Optional[StrictStr] = None + revision: Optional[StrictInt] = None + __properties: ClassVar[List[str]] = ["as_of", "fetched_at", "manifest_sha3", "revision"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryCVDSnapshot from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryCVDSnapshot from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "as_of": obj.get("as_of"), + "fetched_at": obj.get("fetched_at"), + "manifest_sha3": obj.get("manifest_sha3"), + "revision": obj.get("revision") + }) + return _obj + + diff --git a/vulncheck_sdk/models/api_target_intel_cve_summary_asns_inner.py b/vulncheck_sdk/aio/models/api_c2_frequency.py similarity index 84% rename from vulncheck_sdk/models/api_target_intel_cve_summary_asns_inner.py rename to vulncheck_sdk/aio/models/api_c2_frequency.py index 94661457..847cdd30 100644 --- a/vulncheck_sdk/models/api_target_intel_cve_summary_asns_inner.py +++ b/vulncheck_sdk/aio/models/api_c2_frequency.py @@ -23,13 +23,13 @@ from typing import Optional, Set from typing_extensions import Self -class ApiTargetIntelCVESummaryAsnsInner(BaseModel): +class ApiC2Frequency(BaseModel): """ - ApiTargetIntelCVESummaryAsnsInner + api.C2Frequency """ # noqa: E501 count: Optional[StrictInt] = None - value: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["count", "value"] + src: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["count", "src"] model_config = ConfigDict( populate_by_name=True, @@ -49,7 +49,7 @@ def to_json(self) -> str: @classmethod def from_json(cls, json_str: str) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummaryAsnsInner from a JSON string""" + """Create an instance of ApiC2Frequency from a JSON string""" return cls.from_dict(json.loads(json_str)) def to_dict(self) -> Dict[str, Any]: @@ -74,7 +74,7 @@ def to_dict(self) -> Dict[str, Any]: @classmethod def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummaryAsnsInner from a dict""" + """Create an instance of ApiC2Frequency from a dict""" if obj is None: return None @@ -83,7 +83,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "count": obj.get("count"), - "value": obj.get("value") + "src": obj.get("src") }) return _obj diff --git a/vulncheck_sdk/aio/models/api_target_intel_cve_summary_ports_inner.py b/vulncheck_sdk/aio/models/api_cve_confirmed.py similarity index 79% rename from vulncheck_sdk/aio/models/api_target_intel_cve_summary_ports_inner.py rename to vulncheck_sdk/aio/models/api_cve_confirmed.py index e7efa4b3..e3809d1b 100644 --- a/vulncheck_sdk/aio/models/api_target_intel_cve_summary_ports_inner.py +++ b/vulncheck_sdk/aio/models/api_cve_confirmed.py @@ -18,18 +18,18 @@ import re # noqa: F401 import json -from pydantic import BaseModel, ConfigDict, StrictInt +from pydantic import BaseModel, ConfigDict, StrictBool, StrictStr from typing import Any, ClassVar, Dict, List, Optional from typing import Optional, Set from typing_extensions import Self -class ApiTargetIntelCVESummaryPortsInner(BaseModel): +class ApiCVEConfirmed(BaseModel): """ - ApiTargetIntelCVESummaryPortsInner + api.CVEConfirmed """ # noqa: E501 - count: Optional[StrictInt] = None - value: Optional[StrictInt] = None - __properties: ClassVar[List[str]] = ["count", "value"] + confirmed: Optional[StrictBool] = None + cve_id: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["confirmed", "cve_id"] model_config = ConfigDict( populate_by_name=True, @@ -49,7 +49,7 @@ def to_json(self) -> str: @classmethod def from_json(cls, json_str: str) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummaryPortsInner from a JSON string""" + """Create an instance of ApiCVEConfirmed from a JSON string""" return cls.from_dict(json.loads(json_str)) def to_dict(self) -> Dict[str, Any]: @@ -74,7 +74,7 @@ def to_dict(self) -> Dict[str, Any]: @classmethod def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummaryPortsInner from a dict""" + """Create an instance of ApiCVEConfirmed from a dict""" if obj is None: return None @@ -82,8 +82,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ - "count": obj.get("count"), - "value": obj.get("value") + "confirmed": obj.get("confirmed"), + "cve_id": obj.get("cve_id") }) return _obj diff --git a/vulncheck_sdk/aio/models/api_http_details.py b/vulncheck_sdk/aio/models/api_http_details.py index 21fba4ee..2e47868a 100644 --- a/vulncheck_sdk/aio/models/api_http_details.py +++ b/vulncheck_sdk/aio/models/api_http_details.py @@ -27,12 +27,12 @@ class ApiHTTPDetails(BaseModel): """ api.HTTPDetails """ # noqa: E501 + http_method: Optional[StrictStr] = None http_request_body: Optional[StrictStr] = None http_user_agent: Optional[StrictStr] = None - method: Optional[StrictStr] = None protocol: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["http_request_body", "http_user_agent", "method", "protocol", "url"] + __properties: ClassVar[List[str]] = ["http_method", "http_request_body", "http_user_agent", "protocol", "url"] model_config = ConfigDict( populate_by_name=True, @@ -85,9 +85,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ + "http_method": obj.get("http_method"), "http_request_body": obj.get("http_request_body"), "http_user_agent": obj.get("http_user_agent"), - "method": obj.get("method"), "protocol": obj.get("protocol"), "url": obj.get("url") }) diff --git a/vulncheck_sdk/aio/models/api_initial_access.py b/vulncheck_sdk/aio/models/api_initial_access.py index 9783062f..ab42d49b 100644 --- a/vulncheck_sdk/aio/models/api_initial_access.py +++ b/vulncheck_sdk/aio/models/api_initial_access.py @@ -30,10 +30,11 @@ class ApiInitialAccess(BaseModel): """ # noqa: E501 artifacts: Optional[List[ApiInitialAccessArtifact]] = Field(default=None, description="Artifacts holds the set of available artifacts for this vulnerability, such as exploit, shodan queries, PCAP traces, and others.") cve: Optional[StrictStr] = Field(default=None, description="CVE identifier for the given initial access record.") + id: Optional[StrictStr] = Field(default=None, description="ID is the unique identifier for this initial access record.") in_kev: Optional[StrictBool] = Field(default=None, description="InKEV is true if this artifact is in CISA's Known Exploited Vulnerabilities (KEV) data set; otherwise, false.", alias="inKEV") in_vckev: Optional[StrictBool] = Field(default=None, description="InVCKEV is true if this artifact is in VulnCheck's Known Exploited Vulnerabilities (VCKEV) data set; otherwise, false.", alias="inVCKEV") vulnerable_cpes: Optional[List[StrictStr]] = Field(default=None, description="VulnerableCPEs is the list of vulnerable CPE strings associated with this CVE and artifact(s).") - __properties: ClassVar[List[str]] = ["artifacts", "cve", "inKEV", "inVCKEV", "vulnerable_cpes"] + __properties: ClassVar[List[str]] = ["artifacts", "cve", "id", "inKEV", "inVCKEV", "vulnerable_cpes"] model_config = ConfigDict( populate_by_name=True, @@ -95,6 +96,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "artifacts": [ApiInitialAccessArtifact.from_dict(_item) for _item in obj["artifacts"]] if obj.get("artifacts") is not None else None, "cve": obj.get("cve"), + "id": obj.get("id"), "inKEV": obj.get("inKEV"), "inVCKEV": obj.get("inVCKEV"), "vulnerable_cpes": obj.get("vulnerable_cpes") diff --git a/vulncheck_sdk/aio/models/api_initial_access_artifact.py b/vulncheck_sdk/aio/models/api_initial_access_artifact.py index 7f1d0f4d..a7cd9ea7 100644 --- a/vulncheck_sdk/aio/models/api_initial_access_artifact.py +++ b/vulncheck_sdk/aio/models/api_initial_access_artifact.py @@ -20,6 +20,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.aio.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit from typing import Optional, Set from typing_extensions import Self @@ -43,6 +44,7 @@ class ApiInitialAccessArtifact(BaseModel): exploit: Optional[StrictBool] = Field(default=None, description="Exploit indicates whether or not an exploit is available in this artifact.") fofa_queries: Optional[List[StrictStr]] = Field(default=None, description="FOFAQueries are raw queries for examining potential Internet-exposed devices & applications with FOFA.", alias="fofaQueries") fofa_raw_queries: Optional[List[StrictStr]] = Field(default=None, alias="fofaRawQueries") + goexploit: Optional[ApiInitialAccessGoExploit] = None google_queries: Optional[List[StrictStr]] = Field(default=None, description="google queries", alias="googleQueries") google_raw_queries: Optional[List[StrictStr]] = Field(default=None, description="raw google queries", alias="googleRawQueries") greynoise_queries: Optional[List[StrictStr]] = Field(default=None, description="GreynoiseQueries are queries for finding the vulnerability via honeypot data.", alias="greynoiseQueries") @@ -59,13 +61,14 @@ class ApiInitialAccessArtifact(BaseModel): target_docker: Optional[StrictBool] = Field(default=None, description="TargetDocker indicates whether or not there is an available docker image with the vulnerability.", alias="targetDocker") target_encrypted_comms: Optional[StrictStr] = Field(default=None, description="Encrypted communications?", alias="targetEncryptedComms") target_service: Optional[StrictStr] = Field(default=None, description="TargetService indicates the service (HTTP, FTP, etc) that this exploit targets.", alias="targetService") + vc_target_intel_query: Optional[List[StrictStr]] = Field(default=None, description="VCTargetIntelQuery are URLs to the VulnCheck target intel index for this artifact's vendor/product.", alias="vcTargetIntelQuery") vendor: Optional[StrictStr] = Field(default=None, description="Vendor of the vulnerable product") version_scanner: Optional[StrictBool] = Field(default=None, description="VersionScanner indicates whether or not the exploit PoC can determine if target system is vulnerable without sending exploit payload in this artifact.", alias="versionScanner") yara: Optional[StrictBool] = Field(default=None, description="YARA indicates whether or not a YARA rule designed to detect the exploit on an endpoint exists in this artifact.") zeroday: Optional[StrictBool] = Field(default=None, description="Zeroday indicates whether or not it is a VulnCheck zeroday.") zoom_eye_queries: Optional[List[StrictStr]] = Field(default=None, description="ZoomEyeQueries are raw queries for examining potential Internet-exposed devices & applications with ZoomEye.", alias="zoomEyeQueries") zoom_eye_raw_queries: Optional[List[StrictStr]] = Field(default=None, alias="zoomEyeRawQueries") - __properties: ClassVar[List[str]] = ["artifactName", "artifactsURL", "baiduQueries", "baiduRawQueries", "censysLegacyQueries", "censysLegacyRawQueries", "censysQueries", "censysRawQueries", "chain", "cloneSSHURL", "dateAdded", "driftnetQueries", "driftnetRawQueries", "exploit", "fofaQueries", "fofaRawQueries", "googleQueries", "googleRawQueries", "greynoiseQueries", "mitreAttackTechniques", "nmapScript", "pcap", "product", "related", "shodanQueries", "shodanRawQueries", "sigmaRule", "snortRule", "suricataRule", "targetDocker", "targetEncryptedComms", "targetService", "vendor", "versionScanner", "yara", "zeroday", "zoomEyeQueries", "zoomEyeRawQueries"] + __properties: ClassVar[List[str]] = ["artifactName", "artifactsURL", "baiduQueries", "baiduRawQueries", "censysLegacyQueries", "censysLegacyRawQueries", "censysQueries", "censysRawQueries", "chain", "cloneSSHURL", "dateAdded", "driftnetQueries", "driftnetRawQueries", "exploit", "fofaQueries", "fofaRawQueries", "goexploit", "googleQueries", "googleRawQueries", "greynoiseQueries", "mitreAttackTechniques", "nmapScript", "pcap", "product", "related", "shodanQueries", "shodanRawQueries", "sigmaRule", "snortRule", "suricataRule", "targetDocker", "targetEncryptedComms", "targetService", "vcTargetIntelQuery", "vendor", "versionScanner", "yara", "zeroday", "zoomEyeQueries", "zoomEyeRawQueries"] model_config = ConfigDict( populate_by_name=True, @@ -106,6 +109,9 @@ def to_dict(self) -> Dict[str, Any]: exclude=excluded_fields, exclude_none=True, ) + # override the default output from pydantic by calling `to_dict()` of goexploit + if self.goexploit: + _dict['goexploit'] = self.goexploit.to_dict() return _dict @classmethod @@ -134,6 +140,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "exploit": obj.get("exploit"), "fofaQueries": obj.get("fofaQueries"), "fofaRawQueries": obj.get("fofaRawQueries"), + "goexploit": ApiInitialAccessGoExploit.from_dict(obj["goexploit"]) if obj.get("goexploit") is not None else None, "googleQueries": obj.get("googleQueries"), "googleRawQueries": obj.get("googleRawQueries"), "greynoiseQueries": obj.get("greynoiseQueries"), @@ -150,6 +157,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "targetDocker": obj.get("targetDocker"), "targetEncryptedComms": obj.get("targetEncryptedComms"), "targetService": obj.get("targetService"), + "vcTargetIntelQuery": obj.get("vcTargetIntelQuery"), "vendor": obj.get("vendor"), "versionScanner": obj.get("versionScanner"), "yara": obj.get("yara"), diff --git a/vulncheck_sdk/aio/models/api_initial_access_go_exploit.py b/vulncheck_sdk/aio/models/api_initial_access_go_exploit.py new file mode 100644 index 00000000..3abea0ab --- /dev/null +++ b/vulncheck_sdk/aio/models/api_initial_access_go_exploit.py @@ -0,0 +1,112 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.aio.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag +from typing import Optional, Set +from typing_extensions import Self + +class ApiInitialAccessGoExploit(BaseModel): + """ + GoExploit holds metadata about the VulnCheck Go exploit module for this artifact, if one exists. + """ # noqa: E501 + asset_detection: Optional[StrictBool] = Field(default=None, description="AssetDetection indicates whether the module can detect the presence of the asset.", alias="assetDetection") + cpe: Optional[List[StrictStr]] = Field(default=None, description="CPE lists the CPE strings for products targeted by this exploit module.") + custom_flags: Optional[List[ApiInitialAccessGoExploitCustomFlag]] = Field(default=None, description="CustomFlags lists any additional flags exposed by the exploit module.", alias="customFlags") + default_port: Optional[StrictInt] = Field(default=None, description="DefaultPort is the default port the exploit targets.", alias="defaultPort") + exploit_type: Optional[StrictStr] = Field(default=None, description="ExploitType is the category of exploit (e.g. CodeExecution, InformationDisclosure).", alias="exploitType") + exploitation: Optional[StrictBool] = Field(default=None, description="Exploitation indicates whether the module can exploit the vulnerability.") + protocol: Optional[StrictStr] = Field(default=None, description="Protocol is the network protocol the exploit targets (e.g. HTTP, TCP).") + supported_c2: Optional[List[StrictStr]] = Field(default=None, description="SupportedC2 lists the C2 server types supported by the exploit module.", alias="supportedC2") + version_scanner: Optional[StrictBool] = Field(default=None, description="VersionScanner indicates whether the module can determine if the target is vulnerable without sending an exploit payload.", alias="versionScanner") + __properties: ClassVar[List[str]] = ["assetDetection", "cpe", "customFlags", "defaultPort", "exploitType", "exploitation", "protocol", "supportedC2", "versionScanner"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of ApiInitialAccessGoExploit from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of each item in custom_flags (list) + _items = [] + if self.custom_flags: + for _item_custom_flags in self.custom_flags: + if _item_custom_flags: + _items.append(_item_custom_flags.to_dict()) + _dict['customFlags'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of ApiInitialAccessGoExploit from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "assetDetection": obj.get("assetDetection"), + "cpe": obj.get("cpe"), + "customFlags": [ApiInitialAccessGoExploitCustomFlag.from_dict(_item) for _item in obj["customFlags"]] if obj.get("customFlags") is not None else None, + "defaultPort": obj.get("defaultPort"), + "exploitType": obj.get("exploitType"), + "exploitation": obj.get("exploitation"), + "protocol": obj.get("protocol"), + "supportedC2": obj.get("supportedC2"), + "versionScanner": obj.get("versionScanner") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/api_initial_access_go_exploit_custom_flag.py b/vulncheck_sdk/aio/models/api_initial_access_go_exploit_custom_flag.py new file mode 100644 index 00000000..dc605f90 --- /dev/null +++ b/vulncheck_sdk/aio/models/api_initial_access_go_exploit_custom_flag.py @@ -0,0 +1,94 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class ApiInitialAccessGoExploitCustomFlag(BaseModel): + """ + api.InitialAccessGoExploitCustomFlag + """ # noqa: E501 + default: Optional[StrictStr] = Field(default=None, description="Default is the flag's default value, serialized as a string.") + name: Optional[StrictStr] = Field(default=None, description="Name is the flag name.") + type: Optional[StrictStr] = Field(default=None, description="Type is the flag's value type (string, int, uint, bool).") + usage: Optional[StrictStr] = Field(default=None, description="Usage is the flag's help text.") + __properties: ClassVar[List[str]] = ["default", "name", "type", "usage"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of ApiInitialAccessGoExploitCustomFlag from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of ApiInitialAccessGoExploitCustomFlag from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "default": obj.get("default"), + "name": obj.get("name"), + "type": obj.get("type"), + "usage": obj.get("usage") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/api_target_intel.py b/vulncheck_sdk/aio/models/api_target_intel.py index 266dcc15..7ae99e17 100644 --- a/vulncheck_sdk/aio/models/api_target_intel.py +++ b/vulncheck_sdk/aio/models/api_target_intel.py @@ -20,6 +20,7 @@ from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.aio.models.api_cve_confirmed import ApiCVEConfirmed from vulncheck_sdk.aio.models.api_fingerprint import ApiFingerprint from typing import Optional, Set from typing_extensions import Self @@ -37,6 +38,7 @@ class ApiTargetIntel(BaseModel): country_code: Optional[StrictStr] = None cpe: Optional[List[StrictStr]] = None cve: Optional[List[StrictStr]] = None + cve_confirmed: Optional[List[ApiCVEConfirmed]] = None date_added: Optional[StrictStr] = None fingerprints: Optional[List[ApiFingerprint]] = None hostname: Optional[StrictStr] = None @@ -46,9 +48,10 @@ class ApiTargetIntel(BaseModel): product: Optional[List[StrictStr]] = None protocol: Optional[StrictStr] = None timestamp: Optional[StrictStr] = None + transport: Optional[StrictStr] = None vendor: Optional[List[StrictStr]] = None version: Optional[List[StrictStr]] = None - __properties: ClassVar[List[str]] = ["as_domain", "as_name", "asn", "classifications", "contains_cve", "country", "country_code", "cpe", "cve", "date_added", "fingerprints", "hostname", "ip", "metadata", "port", "product", "protocol", "timestamp", "vendor", "version"] + __properties: ClassVar[List[str]] = ["as_domain", "as_name", "asn", "classifications", "contains_cve", "country", "country_code", "cpe", "cve", "cve_confirmed", "date_added", "fingerprints", "hostname", "ip", "metadata", "port", "product", "protocol", "timestamp", "transport", "vendor", "version"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +92,13 @@ def to_dict(self) -> Dict[str, Any]: exclude=excluded_fields, exclude_none=True, ) + # override the default output from pydantic by calling `to_dict()` of each item in cve_confirmed (list) + _items = [] + if self.cve_confirmed: + for _item_cve_confirmed in self.cve_confirmed: + if _item_cve_confirmed: + _items.append(_item_cve_confirmed.to_dict()) + _dict['cve_confirmed'] = _items # override the default output from pydantic by calling `to_dict()` of each item in fingerprints (list) _items = [] if self.fingerprints: @@ -117,6 +127,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "country_code": obj.get("country_code"), "cpe": obj.get("cpe"), "cve": obj.get("cve"), + "cve_confirmed": [ApiCVEConfirmed.from_dict(_item) for _item in obj["cve_confirmed"]] if obj.get("cve_confirmed") is not None else None, "date_added": obj.get("date_added"), "fingerprints": [ApiFingerprint.from_dict(_item) for _item in obj["fingerprints"]] if obj.get("fingerprints") is not None else None, "hostname": obj.get("hostname"), @@ -126,6 +137,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "product": obj.get("product"), "protocol": obj.get("protocol"), "timestamp": obj.get("timestamp"), + "transport": obj.get("transport"), "vendor": obj.get("vendor"), "version": obj.get("version") }) diff --git a/vulncheck_sdk/aio/models/api_target_intel_cve_summary.py b/vulncheck_sdk/aio/models/api_target_intel_cve_summary.py deleted file mode 100644 index 26a178a7..00000000 --- a/vulncheck_sdk/aio/models/api_target_intel_cve_summary.py +++ /dev/null @@ -1,128 +0,0 @@ -# coding: utf-8 - -""" - VulnCheck API - - VulnCheck API (v3 + v4) - - The version of the OpenAPI document: latest - Contact: support@vulncheck.com - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -from __future__ import annotations -import pprint -import re # noqa: F401 -import json - -from pydantic import BaseModel, ConfigDict, Field, StrictStr -from typing import Any, ClassVar, Dict, List, Optional -from vulncheck_sdk.aio.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner -from vulncheck_sdk.aio.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner -from typing import Optional, Set -from typing_extensions import Self - -class ApiTargetIntelCVESummary(BaseModel): - """ - api.TargetIntelCVESummary - """ # noqa: E501 - timestamp: Optional[StrictStr] = Field(default=None, alias="_timestamp") - asns: Optional[List[ApiTargetIntelCVESummaryAsnsInner]] = None - country_codes: Optional[List[ApiTargetIntelCVESummaryAsnsInner]] = None - cve: Optional[StrictStr] = None - ports: Optional[List[ApiTargetIntelCVESummaryPortsInner]] = None - vendors: Optional[List[ApiTargetIntelCVESummaryAsnsInner]] = None - __properties: ClassVar[List[str]] = ["_timestamp", "asns", "country_codes", "cve", "ports", "vendors"] - - model_config = ConfigDict( - populate_by_name=True, - validate_assignment=True, - protected_namespaces=(), - ) - - - def to_str(self) -> str: - """Returns the string representation of the model using alias""" - return pprint.pformat(self.model_dump(by_alias=True)) - - def to_json(self) -> str: - """Returns the JSON representation of the model using alias""" - # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead - return json.dumps(self.to_dict()) - - @classmethod - def from_json(cls, json_str: str) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummary from a JSON string""" - return cls.from_dict(json.loads(json_str)) - - def to_dict(self) -> Dict[str, Any]: - """Return the dictionary representation of the model using alias. - - This has the following differences from calling pydantic's - `self.model_dump(by_alias=True)`: - - * `None` is only added to the output dict for nullable fields that - were set at model initialization. Other fields with value `None` - are ignored. - """ - excluded_fields: Set[str] = set([ - ]) - - _dict = self.model_dump( - by_alias=True, - exclude=excluded_fields, - exclude_none=True, - ) - # override the default output from pydantic by calling `to_dict()` of each item in asns (list) - _items = [] - if self.asns: - for _item_asns in self.asns: - if _item_asns: - _items.append(_item_asns.to_dict()) - _dict['asns'] = _items - # override the default output from pydantic by calling `to_dict()` of each item in country_codes (list) - _items = [] - if self.country_codes: - for _item_country_codes in self.country_codes: - if _item_country_codes: - _items.append(_item_country_codes.to_dict()) - _dict['country_codes'] = _items - # override the default output from pydantic by calling `to_dict()` of each item in ports (list) - _items = [] - if self.ports: - for _item_ports in self.ports: - if _item_ports: - _items.append(_item_ports.to_dict()) - _dict['ports'] = _items - # override the default output from pydantic by calling `to_dict()` of each item in vendors (list) - _items = [] - if self.vendors: - for _item_vendors in self.vendors: - if _item_vendors: - _items.append(_item_vendors.to_dict()) - _dict['vendors'] = _items - return _dict - - @classmethod - def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummary from a dict""" - if obj is None: - return None - - if not isinstance(obj, dict): - return cls.model_validate(obj) - - _obj = cls.model_validate({ - "_timestamp": obj.get("_timestamp"), - "asns": [ApiTargetIntelCVESummaryAsnsInner.from_dict(_item) for _item in obj["asns"]] if obj.get("asns") is not None else None, - "country_codes": [ApiTargetIntelCVESummaryAsnsInner.from_dict(_item) for _item in obj["country_codes"]] if obj.get("country_codes") is not None else None, - "cve": obj.get("cve"), - "ports": [ApiTargetIntelCVESummaryPortsInner.from_dict(_item) for _item in obj["ports"]] if obj.get("ports") is not None else None, - "vendors": [ApiTargetIntelCVESummaryAsnsInner.from_dict(_item) for _item in obj["vendors"]] if obj.get("vendors") is not None else None - }) - return _obj - - diff --git a/vulncheck_sdk/aio/models/api_vuln_check_canary.py b/vulncheck_sdk/aio/models/api_vuln_check_canary.py index 51fe3126..1f39dd56 100644 --- a/vulncheck_sdk/aio/models/api_vuln_check_canary.py +++ b/vulncheck_sdk/aio/models/api_vuln_check_canary.py @@ -20,6 +20,7 @@ from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.aio.models.api_c2_frequency import ApiC2Frequency from vulncheck_sdk.aio.models.api_client_fingerprints import ApiClientFingerprints from vulncheck_sdk.aio.models.api_http_details import ApiHTTPDetails from typing import Optional, Set @@ -29,12 +30,16 @@ class ApiVulnCheckCanary(BaseModel): """ api.VulnCheckCanary """ # noqa: E501 + c2_frequency_3d: Optional[List[ApiC2Frequency]] = None + c2_location: Optional[List[StrictStr]] = None category: Optional[StrictStr] = None client_fingerprints: Optional[ApiClientFingerprints] = None cve: Optional[StrictStr] = None dst_country: Optional[StrictStr] = None http: Optional[ApiHTTPDetails] = None payload: Optional[StrictStr] = None + payload_tlsh: Optional[StrictStr] = None + payload_tooling: Optional[List[StrictStr]] = None severity: Optional[StrictInt] = None signature: Optional[StrictStr] = None signature_id: Optional[StrictInt] = None @@ -43,9 +48,13 @@ class ApiVulnCheckCanary(BaseModel): src_asn: Optional[StrictStr] = None src_country: Optional[StrictStr] = None src_ip: Optional[StrictStr] = None + src_ip_freq_3d: Optional[StrictInt] = None + src_ip_freq_3d_canary: Optional[StrictInt] = None + src_ip_type_findings: Optional[List[StrictStr]] = None src_port: Optional[StrictInt] = None + tech_vertical: Optional[List[StrictStr]] = None timestamp: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["category", "client_fingerprints", "cve", "dst_country", "http", "payload", "severity", "signature", "signature_id", "src_as_domain", "src_as_name", "src_asn", "src_country", "src_ip", "src_port", "timestamp"] + __properties: ClassVar[List[str]] = ["c2_frequency_3d", "c2_location", "category", "client_fingerprints", "cve", "dst_country", "http", "payload", "payload_tlsh", "payload_tooling", "severity", "signature", "signature_id", "src_as_domain", "src_as_name", "src_asn", "src_country", "src_ip", "src_ip_freq_3d", "src_ip_freq_3d_canary", "src_ip_type_findings", "src_port", "tech_vertical", "timestamp"] model_config = ConfigDict( populate_by_name=True, @@ -86,6 +95,13 @@ def to_dict(self) -> Dict[str, Any]: exclude=excluded_fields, exclude_none=True, ) + # override the default output from pydantic by calling `to_dict()` of each item in c2_frequency_3d (list) + _items = [] + if self.c2_frequency_3d: + for _item_c2_frequency_3d in self.c2_frequency_3d: + if _item_c2_frequency_3d: + _items.append(_item_c2_frequency_3d.to_dict()) + _dict['c2_frequency_3d'] = _items # override the default output from pydantic by calling `to_dict()` of client_fingerprints if self.client_fingerprints: _dict['client_fingerprints'] = self.client_fingerprints.to_dict() @@ -104,12 +120,16 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ + "c2_frequency_3d": [ApiC2Frequency.from_dict(_item) for _item in obj["c2_frequency_3d"]] if obj.get("c2_frequency_3d") is not None else None, + "c2_location": obj.get("c2_location"), "category": obj.get("category"), "client_fingerprints": ApiClientFingerprints.from_dict(obj["client_fingerprints"]) if obj.get("client_fingerprints") is not None else None, "cve": obj.get("cve"), "dst_country": obj.get("dst_country"), "http": ApiHTTPDetails.from_dict(obj["http"]) if obj.get("http") is not None else None, "payload": obj.get("payload"), + "payload_tlsh": obj.get("payload_tlsh"), + "payload_tooling": obj.get("payload_tooling"), "severity": obj.get("severity"), "signature": obj.get("signature"), "signature_id": obj.get("signature_id"), @@ -118,7 +138,11 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "src_asn": obj.get("src_asn"), "src_country": obj.get("src_country"), "src_ip": obj.get("src_ip"), + "src_ip_freq_3d": obj.get("src_ip_freq_3d"), + "src_ip_freq_3d_canary": obj.get("src_ip_freq_3d_canary"), + "src_ip_type_findings": obj.get("src_ip_type_findings"), "src_port": obj.get("src_port"), + "tech_vertical": obj.get("tech_vertical"), "timestamp": obj.get("timestamp") }) return _obj diff --git a/vulncheck_sdk/aio/models/render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py b/vulncheck_sdk/aio/models/render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py similarity index 83% rename from vulncheck_sdk/aio/models/render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py rename to vulncheck_sdk/aio/models/render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py index 31afcb4e..a9f0fe9a 100644 --- a/vulncheck_sdk/aio/models/render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py +++ b/vulncheck_sdk/aio/models/render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py @@ -20,18 +20,18 @@ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt from typing import Any, ClassVar, Dict, List, Optional, Union -from vulncheck_sdk.aio.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary +from vulncheck_sdk.aio.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD from vulncheck_sdk.aio.models.paginate_pagination import PaginatePagination from typing import Optional, Set from typing_extensions import Self -class RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination(BaseModel): +class RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination(BaseModel): """ - render.ResponseWithMetadata-array_api_TargetIntelCVESummary-paginate_Pagination + render.ResponseWithMetadata-array_advisory_AnthropicCVD-paginate_Pagination """ # noqa: E501 benchmark: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Benchmark is the server-side processing time for the request in seconds. Example: 0.122322 = approximately 122 milliseconds", alias="_benchmark") meta: Optional[PaginatePagination] = Field(default=None, alias="_meta") - data: Optional[List[ApiTargetIntelCVESummary]] = Field(default=None, description="Data is the data returned by the endpoint") + data: Optional[List[AdvisoryAnthropicCVD]] = Field(default=None, description="Data is the data returned by the endpoint") __properties: ClassVar[List[str]] = ["_benchmark", "_meta", "data"] model_config = ConfigDict( @@ -52,7 +52,7 @@ def to_json(self) -> str: @classmethod def from_json(cls, json_str: str) -> Optional[Self]: - """Create an instance of RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from a JSON string""" + """Create an instance of RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from a JSON string""" return cls.from_dict(json.loads(json_str)) def to_dict(self) -> Dict[str, Any]: @@ -87,7 +87,7 @@ def to_dict(self) -> Dict[str, Any]: @classmethod def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: - """Create an instance of RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from a dict""" + """Create an instance of RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from a dict""" if obj is None: return None @@ -97,7 +97,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "_benchmark": obj.get("_benchmark"), "_meta": PaginatePagination.from_dict(obj["_meta"]) if obj.get("_meta") is not None else None, - "data": [ApiTargetIntelCVESummary.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None + "data": [AdvisoryAnthropicCVD.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None }) return _obj diff --git a/vulncheck_sdk/api/indices_api.py b/vulncheck_sdk/api/indices_api.py index cd5e5e4c..0911e635 100644 --- a/vulncheck_sdk/api/indices_api.py +++ b/vulncheck_sdk/api/indices_api.py @@ -43,6 +43,7 @@ from vulncheck_sdk.models.render_response_with_metadata_array_advisory_amazon_cve_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anchore_nvd_override_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_android_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_active_mq_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_archiva_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination @@ -489,7 +490,6 @@ from vulncheck_sdk.models.render_response_with_metadata_array_api_nvd20_cve_extended_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_nvd20_cve_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_oss_package_paginate_pagination import RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination -from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_update_paginate_pagination import RenderResponseWithMetadataArrayApiUpdatePaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination import RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination @@ -15101,7 +15101,7 @@ def _index_android_get_serialize( @validate_call - def index_apache_activemq_get( + def index_anthropic_cvd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15139,10 +15139,10 @@ def index_apache_activemq_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination: - """Return vulnerability data stored in index \"apache-activemq\" + ) -> RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination: + """Return vulnerability data stored in index \"anthropic-cvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the anthropic-cvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Anthropic Red CVD ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/anthropic-cvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/anthropic-cvd?cursor=` :param page: set the page number of the response :type page: int @@ -15214,7 +15214,7 @@ def index_apache_activemq_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_activemq_get_serialize( + _param = self._index_anthropic_cvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -15246,7 +15246,7 @@ def index_apache_activemq_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination", '404': "str", '500': "str", } @@ -15262,7 +15262,7 @@ def index_apache_activemq_get( @validate_call - def index_apache_activemq_get_with_http_info( + def index_anthropic_cvd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15300,10 +15300,10 @@ def index_apache_activemq_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination]: - """Return vulnerability data stored in index \"apache-activemq\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination]: + """Return vulnerability data stored in index \"anthropic-cvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the anthropic-cvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Anthropic Red CVD ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/anthropic-cvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/anthropic-cvd?cursor=` :param page: set the page number of the response :type page: int @@ -15375,7 +15375,7 @@ def index_apache_activemq_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_activemq_get_serialize( + _param = self._index_anthropic_cvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -15407,7 +15407,7 @@ def index_apache_activemq_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination", '404': "str", '500': "str", } @@ -15423,7 +15423,7 @@ def index_apache_activemq_get_with_http_info( @validate_call - def index_apache_activemq_get_without_preload_content( + def index_anthropic_cvd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15462,9 +15462,9 @@ def index_apache_activemq_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-activemq\" + """Return vulnerability data stored in index \"anthropic-cvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the anthropic-cvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Anthropic Red CVD ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/anthropic-cvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/anthropic-cvd?cursor=` :param page: set the page number of the response :type page: int @@ -15536,7 +15536,7 @@ def index_apache_activemq_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_activemq_get_serialize( + _param = self._index_anthropic_cvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -15568,7 +15568,7 @@ def index_apache_activemq_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination", '404': "str", '500': "str", } @@ -15579,7 +15579,7 @@ def index_apache_activemq_get_without_preload_content( return response_data.response - def _index_apache_activemq_get_serialize( + def _index_anthropic_cvd_get_serialize( self, page, limit, @@ -15747,7 +15747,7 @@ def _index_apache_activemq_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-activemq', + resource_path='/v3/index/anthropic-cvd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -15764,7 +15764,7 @@ def _index_apache_activemq_get_serialize( @validate_call - def index_apache_archiva_get( + def index_apache_activemq_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15802,10 +15802,10 @@ def index_apache_archiva_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination: - """Return vulnerability data stored in index \"apache-archiva\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination: + """Return vulnerability data stored in index \"apache-activemq\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` :param page: set the page number of the response :type page: int @@ -15877,7 +15877,7 @@ def index_apache_archiva_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_archiva_get_serialize( + _param = self._index_apache_activemq_get_serialize( page=page, limit=limit, cursor=cursor, @@ -15909,7 +15909,7 @@ def index_apache_archiva_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", '404': "str", '500': "str", } @@ -15925,7 +15925,7 @@ def index_apache_archiva_get( @validate_call - def index_apache_archiva_get_with_http_info( + def index_apache_activemq_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -15963,10 +15963,10 @@ def index_apache_archiva_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination]: - """Return vulnerability data stored in index \"apache-archiva\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination]: + """Return vulnerability data stored in index \"apache-activemq\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` :param page: set the page number of the response :type page: int @@ -16038,7 +16038,7 @@ def index_apache_archiva_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_archiva_get_serialize( + _param = self._index_apache_activemq_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16070,7 +16070,7 @@ def index_apache_archiva_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", '404': "str", '500': "str", } @@ -16086,7 +16086,7 @@ def index_apache_archiva_get_with_http_info( @validate_call - def index_apache_archiva_get_without_preload_content( + def index_apache_activemq_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -16125,9 +16125,9 @@ def index_apache_archiva_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-archiva\" + """Return vulnerability data stored in index \"apache-activemq\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-activemq index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ActiveMQ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-activemq?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-activemq?cursor=` :param page: set the page number of the response :type page: int @@ -16199,7 +16199,7 @@ def index_apache_archiva_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_archiva_get_serialize( + _param = self._index_apache_activemq_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16231,7 +16231,7 @@ def index_apache_archiva_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination", '404': "str", '500': "str", } @@ -16242,7 +16242,7 @@ def index_apache_archiva_get_without_preload_content( return response_data.response - def _index_apache_archiva_get_serialize( + def _index_apache_activemq_get_serialize( self, page, limit, @@ -16410,7 +16410,7 @@ def _index_apache_archiva_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-archiva', + resource_path='/v3/index/apache-activemq', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -16427,7 +16427,7 @@ def _index_apache_archiva_get_serialize( @validate_call - def index_apache_arrow_get( + def index_apache_archiva_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -16465,10 +16465,10 @@ def index_apache_arrow_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination: - """Return vulnerability data stored in index \"apache-arrow\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination: + """Return vulnerability data stored in index \"apache-archiva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` :param page: set the page number of the response :type page: int @@ -16540,7 +16540,7 @@ def index_apache_arrow_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_arrow_get_serialize( + _param = self._index_apache_archiva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16572,7 +16572,7 @@ def index_apache_arrow_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", '404': "str", '500': "str", } @@ -16588,7 +16588,7 @@ def index_apache_arrow_get( @validate_call - def index_apache_arrow_get_with_http_info( + def index_apache_archiva_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -16626,10 +16626,10 @@ def index_apache_arrow_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination]: - """Return vulnerability data stored in index \"apache-arrow\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination]: + """Return vulnerability data stored in index \"apache-archiva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` :param page: set the page number of the response :type page: int @@ -16701,7 +16701,7 @@ def index_apache_arrow_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_arrow_get_serialize( + _param = self._index_apache_archiva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16733,7 +16733,7 @@ def index_apache_arrow_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", '404': "str", '500': "str", } @@ -16749,7 +16749,7 @@ def index_apache_arrow_get_with_http_info( @validate_call - def index_apache_arrow_get_without_preload_content( + def index_apache_archiva_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -16788,9 +16788,9 @@ def index_apache_arrow_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-arrow\" + """Return vulnerability data stored in index \"apache-archiva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-archiva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Archiva Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-archiva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-archiva?cursor=` :param page: set the page number of the response :type page: int @@ -16862,7 +16862,7 @@ def index_apache_arrow_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_arrow_get_serialize( + _param = self._index_apache_archiva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -16894,7 +16894,7 @@ def index_apache_arrow_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination", '404': "str", '500': "str", } @@ -16905,7 +16905,7 @@ def index_apache_arrow_get_without_preload_content( return response_data.response - def _index_apache_arrow_get_serialize( + def _index_apache_archiva_get_serialize( self, page, limit, @@ -17073,7 +17073,7 @@ def _index_apache_arrow_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-arrow', + resource_path='/v3/index/apache-archiva', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -17090,7 +17090,7 @@ def _index_apache_arrow_get_serialize( @validate_call - def index_apache_camel_get( + def index_apache_arrow_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17128,10 +17128,10 @@ def index_apache_camel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination: - """Return vulnerability data stored in index \"apache-camel\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination: + """Return vulnerability data stored in index \"apache-arrow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` :param page: set the page number of the response :type page: int @@ -17203,7 +17203,7 @@ def index_apache_camel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_camel_get_serialize( + _param = self._index_apache_arrow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -17235,7 +17235,7 @@ def index_apache_camel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", '404': "str", '500': "str", } @@ -17251,7 +17251,7 @@ def index_apache_camel_get( @validate_call - def index_apache_camel_get_with_http_info( + def index_apache_arrow_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17289,10 +17289,10 @@ def index_apache_camel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination]: - """Return vulnerability data stored in index \"apache-camel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination]: + """Return vulnerability data stored in index \"apache-arrow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` :param page: set the page number of the response :type page: int @@ -17364,7 +17364,7 @@ def index_apache_camel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_camel_get_serialize( + _param = self._index_apache_arrow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -17396,7 +17396,7 @@ def index_apache_camel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", '404': "str", '500': "str", } @@ -17412,7 +17412,7 @@ def index_apache_camel_get_with_http_info( @validate_call - def index_apache_camel_get_without_preload_content( + def index_apache_arrow_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17451,9 +17451,9 @@ def index_apache_camel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-camel\" + """Return vulnerability data stored in index \"apache-arrow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-arrow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Arrow Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-arrow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-arrow?cursor=` :param page: set the page number of the response :type page: int @@ -17525,7 +17525,7 @@ def index_apache_camel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_camel_get_serialize( + _param = self._index_apache_arrow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -17557,7 +17557,7 @@ def index_apache_camel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination", '404': "str", '500': "str", } @@ -17568,7 +17568,7 @@ def index_apache_camel_get_without_preload_content( return response_data.response - def _index_apache_camel_get_serialize( + def _index_apache_arrow_get_serialize( self, page, limit, @@ -17736,7 +17736,7 @@ def _index_apache_camel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-camel', + resource_path='/v3/index/apache-arrow', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -17753,7 +17753,7 @@ def _index_apache_camel_get_serialize( @validate_call - def index_apache_commons_get( + def index_apache_camel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17791,10 +17791,10 @@ def index_apache_commons_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination: - """Return vulnerability data stored in index \"apache-commons\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination: + """Return vulnerability data stored in index \"apache-camel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` :param page: set the page number of the response :type page: int @@ -17866,7 +17866,7 @@ def index_apache_commons_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_commons_get_serialize( + _param = self._index_apache_camel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -17898,7 +17898,7 @@ def index_apache_commons_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", '404': "str", '500': "str", } @@ -17914,7 +17914,7 @@ def index_apache_commons_get( @validate_call - def index_apache_commons_get_with_http_info( + def index_apache_camel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -17952,10 +17952,10 @@ def index_apache_commons_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination]: - """Return vulnerability data stored in index \"apache-commons\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination]: + """Return vulnerability data stored in index \"apache-camel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` :param page: set the page number of the response :type page: int @@ -18027,7 +18027,7 @@ def index_apache_commons_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_commons_get_serialize( + _param = self._index_apache_camel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18059,7 +18059,7 @@ def index_apache_commons_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", '404': "str", '500': "str", } @@ -18075,7 +18075,7 @@ def index_apache_commons_get_with_http_info( @validate_call - def index_apache_commons_get_without_preload_content( + def index_apache_camel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -18114,9 +18114,9 @@ def index_apache_commons_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-commons\" + """Return vulnerability data stored in index \"apache-camel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-camel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Camel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-camel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-camel?cursor=` :param page: set the page number of the response :type page: int @@ -18188,7 +18188,7 @@ def index_apache_commons_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_commons_get_serialize( + _param = self._index_apache_camel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18220,7 +18220,7 @@ def index_apache_commons_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCamelPaginatePagination", '404': "str", '500': "str", } @@ -18231,7 +18231,7 @@ def index_apache_commons_get_without_preload_content( return response_data.response - def _index_apache_commons_get_serialize( + def _index_apache_camel_get_serialize( self, page, limit, @@ -18399,7 +18399,7 @@ def _index_apache_commons_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-commons', + resource_path='/v3/index/apache-camel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -18416,7 +18416,7 @@ def _index_apache_commons_get_serialize( @validate_call - def index_apache_couchdb_get( + def index_apache_commons_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -18454,10 +18454,10 @@ def index_apache_couchdb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination: - """Return vulnerability data stored in index \"apache-couchdb\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination: + """Return vulnerability data stored in index \"apache-commons\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` :param page: set the page number of the response :type page: int @@ -18529,7 +18529,7 @@ def index_apache_couchdb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_couchdb_get_serialize( + _param = self._index_apache_commons_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18561,7 +18561,7 @@ def index_apache_couchdb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", '404': "str", '500': "str", } @@ -18577,7 +18577,7 @@ def index_apache_couchdb_get( @validate_call - def index_apache_couchdb_get_with_http_info( + def index_apache_commons_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -18615,10 +18615,10 @@ def index_apache_couchdb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination]: - """Return vulnerability data stored in index \"apache-couchdb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination]: + """Return vulnerability data stored in index \"apache-commons\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` :param page: set the page number of the response :type page: int @@ -18690,7 +18690,7 @@ def index_apache_couchdb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_couchdb_get_serialize( + _param = self._index_apache_commons_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18722,7 +18722,7 @@ def index_apache_couchdb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", '404': "str", '500': "str", } @@ -18738,7 +18738,7 @@ def index_apache_couchdb_get_with_http_info( @validate_call - def index_apache_couchdb_get_without_preload_content( + def index_apache_commons_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -18777,9 +18777,9 @@ def index_apache_couchdb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-couchdb\" + """Return vulnerability data stored in index \"apache-commons\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-commons index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Commons Known Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-commons?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-commons?cursor=` :param page: set the page number of the response :type page: int @@ -18851,7 +18851,7 @@ def index_apache_couchdb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_couchdb_get_serialize( + _param = self._index_apache_commons_get_serialize( page=page, limit=limit, cursor=cursor, @@ -18883,7 +18883,7 @@ def index_apache_couchdb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCommonsPaginatePagination", '404': "str", '500': "str", } @@ -18894,7 +18894,7 @@ def index_apache_couchdb_get_without_preload_content( return response_data.response - def _index_apache_couchdb_get_serialize( + def _index_apache_commons_get_serialize( self, page, limit, @@ -19062,7 +19062,7 @@ def _index_apache_couchdb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-couchdb', + resource_path='/v3/index/apache-commons', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -19079,7 +19079,7 @@ def _index_apache_couchdb_get_serialize( @validate_call - def index_apache_flink_get( + def index_apache_couchdb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19117,10 +19117,10 @@ def index_apache_flink_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination: - """Return vulnerability data stored in index \"apache-flink\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination: + """Return vulnerability data stored in index \"apache-couchdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` :param page: set the page number of the response :type page: int @@ -19192,7 +19192,7 @@ def index_apache_flink_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_flink_get_serialize( + _param = self._index_apache_couchdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -19224,7 +19224,7 @@ def index_apache_flink_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", '404': "str", '500': "str", } @@ -19240,7 +19240,7 @@ def index_apache_flink_get( @validate_call - def index_apache_flink_get_with_http_info( + def index_apache_couchdb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19278,10 +19278,10 @@ def index_apache_flink_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination]: - """Return vulnerability data stored in index \"apache-flink\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination]: + """Return vulnerability data stored in index \"apache-couchdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` :param page: set the page number of the response :type page: int @@ -19353,7 +19353,7 @@ def index_apache_flink_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_flink_get_serialize( + _param = self._index_apache_couchdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -19385,7 +19385,7 @@ def index_apache_flink_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", '404': "str", '500': "str", } @@ -19401,7 +19401,7 @@ def index_apache_flink_get_with_http_info( @validate_call - def index_apache_flink_get_without_preload_content( + def index_apache_couchdb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19440,9 +19440,9 @@ def index_apache_flink_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-flink\" + """Return vulnerability data stored in index \"apache-couchdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-couchdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache CouchDB Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-couchdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-couchdb?cursor=` :param page: set the page number of the response :type page: int @@ -19514,7 +19514,7 @@ def index_apache_flink_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_flink_get_serialize( + _param = self._index_apache_couchdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -19546,7 +19546,7 @@ def index_apache_flink_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheCouchDBPaginatePagination", '404': "str", '500': "str", } @@ -19557,7 +19557,7 @@ def index_apache_flink_get_without_preload_content( return response_data.response - def _index_apache_flink_get_serialize( + def _index_apache_couchdb_get_serialize( self, page, limit, @@ -19725,7 +19725,7 @@ def _index_apache_flink_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-flink', + resource_path='/v3/index/apache-couchdb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -19742,7 +19742,7 @@ def _index_apache_flink_get_serialize( @validate_call - def index_apache_guacamole_get( + def index_apache_flink_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19780,10 +19780,10 @@ def index_apache_guacamole_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination: - """Return vulnerability data stored in index \"apache-guacamole\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination: + """Return vulnerability data stored in index \"apache-flink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` :param page: set the page number of the response :type page: int @@ -19855,7 +19855,7 @@ def index_apache_guacamole_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_guacamole_get_serialize( + _param = self._index_apache_flink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -19887,7 +19887,7 @@ def index_apache_guacamole_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", '404': "str", '500': "str", } @@ -19903,7 +19903,7 @@ def index_apache_guacamole_get( @validate_call - def index_apache_guacamole_get_with_http_info( + def index_apache_flink_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -19941,10 +19941,10 @@ def index_apache_guacamole_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination]: - """Return vulnerability data stored in index \"apache-guacamole\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination]: + """Return vulnerability data stored in index \"apache-flink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` :param page: set the page number of the response :type page: int @@ -20016,7 +20016,7 @@ def index_apache_guacamole_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_guacamole_get_serialize( + _param = self._index_apache_flink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20048,7 +20048,7 @@ def index_apache_guacamole_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", '404': "str", '500': "str", } @@ -20064,7 +20064,7 @@ def index_apache_guacamole_get_with_http_info( @validate_call - def index_apache_guacamole_get_without_preload_content( + def index_apache_flink_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -20103,9 +20103,9 @@ def index_apache_guacamole_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-guacamole\" + """Return vulnerability data stored in index \"apache-flink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-flink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Flink Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-flink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-flink?cursor=` :param page: set the page number of the response :type page: int @@ -20177,7 +20177,7 @@ def index_apache_guacamole_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_guacamole_get_serialize( + _param = self._index_apache_flink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20209,7 +20209,7 @@ def index_apache_guacamole_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheFlinkPaginatePagination", '404': "str", '500': "str", } @@ -20220,7 +20220,7 @@ def index_apache_guacamole_get_without_preload_content( return response_data.response - def _index_apache_guacamole_get_serialize( + def _index_apache_flink_get_serialize( self, page, limit, @@ -20388,7 +20388,7 @@ def _index_apache_guacamole_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-guacamole', + resource_path='/v3/index/apache-flink', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -20405,7 +20405,7 @@ def _index_apache_guacamole_get_serialize( @validate_call - def index_apache_hadoop_get( + def index_apache_guacamole_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -20443,10 +20443,10 @@ def index_apache_hadoop_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination: - """Return vulnerability data stored in index \"apache-hadoop\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination: + """Return vulnerability data stored in index \"apache-guacamole\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` :param page: set the page number of the response :type page: int @@ -20518,7 +20518,7 @@ def index_apache_hadoop_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_hadoop_get_serialize( + _param = self._index_apache_guacamole_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20550,7 +20550,7 @@ def index_apache_hadoop_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", '404': "str", '500': "str", } @@ -20566,7 +20566,7 @@ def index_apache_hadoop_get( @validate_call - def index_apache_hadoop_get_with_http_info( + def index_apache_guacamole_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -20604,10 +20604,10 @@ def index_apache_hadoop_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination]: - """Return vulnerability data stored in index \"apache-hadoop\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination]: + """Return vulnerability data stored in index \"apache-guacamole\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` :param page: set the page number of the response :type page: int @@ -20679,7 +20679,7 @@ def index_apache_hadoop_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_hadoop_get_serialize( + _param = self._index_apache_guacamole_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20711,7 +20711,7 @@ def index_apache_hadoop_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", '404': "str", '500': "str", } @@ -20727,7 +20727,7 @@ def index_apache_hadoop_get_with_http_info( @validate_call - def index_apache_hadoop_get_without_preload_content( + def index_apache_guacamole_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -20766,9 +20766,9 @@ def index_apache_hadoop_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-hadoop\" + """Return vulnerability data stored in index \"apache-guacamole\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-guacamole index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Guacamole Security Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-guacamole?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-guacamole?cursor=` :param page: set the page number of the response :type page: int @@ -20840,7 +20840,7 @@ def index_apache_hadoop_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_hadoop_get_serialize( + _param = self._index_apache_guacamole_get_serialize( page=page, limit=limit, cursor=cursor, @@ -20872,7 +20872,7 @@ def index_apache_hadoop_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheGuacamolePaginatePagination", '404': "str", '500': "str", } @@ -20883,7 +20883,7 @@ def index_apache_hadoop_get_without_preload_content( return response_data.response - def _index_apache_hadoop_get_serialize( + def _index_apache_guacamole_get_serialize( self, page, limit, @@ -21051,7 +21051,7 @@ def _index_apache_hadoop_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-hadoop', + resource_path='/v3/index/apache-guacamole', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -21068,7 +21068,7 @@ def _index_apache_hadoop_get_serialize( @validate_call - def index_apache_http_get( + def index_apache_hadoop_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21106,10 +21106,10 @@ def index_apache_http_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination: - """Return vulnerability data stored in index \"apache-http\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination: + """Return vulnerability data stored in index \"apache-hadoop\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` :param page: set the page number of the response :type page: int @@ -21181,7 +21181,7 @@ def index_apache_http_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_http_get_serialize( + _param = self._index_apache_hadoop_get_serialize( page=page, limit=limit, cursor=cursor, @@ -21213,7 +21213,7 @@ def index_apache_http_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", '404': "str", '500': "str", } @@ -21229,7 +21229,7 @@ def index_apache_http_get( @validate_call - def index_apache_http_get_with_http_info( + def index_apache_hadoop_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21267,10 +21267,10 @@ def index_apache_http_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination]: - """Return vulnerability data stored in index \"apache-http\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination]: + """Return vulnerability data stored in index \"apache-hadoop\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` :param page: set the page number of the response :type page: int @@ -21342,7 +21342,7 @@ def index_apache_http_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_http_get_serialize( + _param = self._index_apache_hadoop_get_serialize( page=page, limit=limit, cursor=cursor, @@ -21374,7 +21374,7 @@ def index_apache_http_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", '404': "str", '500': "str", } @@ -21390,7 +21390,7 @@ def index_apache_http_get_with_http_info( @validate_call - def index_apache_http_get_without_preload_content( + def index_apache_hadoop_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21429,9 +21429,9 @@ def index_apache_http_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-http\" + """Return vulnerability data stored in index \"apache-hadoop\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-hadoop index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Hadoop CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-hadoop?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-hadoop?cursor=` :param page: set the page number of the response :type page: int @@ -21503,7 +21503,7 @@ def index_apache_http_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_http_get_serialize( + _param = self._index_apache_hadoop_get_serialize( page=page, limit=limit, cursor=cursor, @@ -21535,7 +21535,7 @@ def index_apache_http_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHadoopPaginatePagination", '404': "str", '500': "str", } @@ -21546,7 +21546,7 @@ def index_apache_http_get_without_preload_content( return response_data.response - def _index_apache_http_get_serialize( + def _index_apache_hadoop_get_serialize( self, page, limit, @@ -21714,7 +21714,7 @@ def _index_apache_http_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-http', + resource_path='/v3/index/apache-hadoop', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -21731,7 +21731,7 @@ def _index_apache_http_get_serialize( @validate_call - def index_apache_jspwiki_get( + def index_apache_http_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21769,10 +21769,10 @@ def index_apache_jspwiki_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination: - """Return vulnerability data stored in index \"apache-jspwiki\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination: + """Return vulnerability data stored in index \"apache-http\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` :param page: set the page number of the response :type page: int @@ -21844,7 +21844,7 @@ def index_apache_jspwiki_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_jspwiki_get_serialize( + _param = self._index_apache_http_get_serialize( page=page, limit=limit, cursor=cursor, @@ -21876,7 +21876,7 @@ def index_apache_jspwiki_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", '404': "str", '500': "str", } @@ -21892,7 +21892,7 @@ def index_apache_jspwiki_get( @validate_call - def index_apache_jspwiki_get_with_http_info( + def index_apache_http_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -21930,10 +21930,10 @@ def index_apache_jspwiki_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination]: - """Return vulnerability data stored in index \"apache-jspwiki\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination]: + """Return vulnerability data stored in index \"apache-http\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` :param page: set the page number of the response :type page: int @@ -22005,7 +22005,7 @@ def index_apache_jspwiki_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_jspwiki_get_serialize( + _param = self._index_apache_http_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22037,7 +22037,7 @@ def index_apache_jspwiki_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", '404': "str", '500': "str", } @@ -22053,7 +22053,7 @@ def index_apache_jspwiki_get_with_http_info( @validate_call - def index_apache_jspwiki_get_without_preload_content( + def index_apache_http_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -22092,9 +22092,9 @@ def index_apache_jspwiki_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-jspwiki\" + """Return vulnerability data stored in index \"apache-http\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-http index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache HTTP Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-http?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-http?cursor=` :param page: set the page number of the response :type page: int @@ -22166,7 +22166,7 @@ def index_apache_jspwiki_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_jspwiki_get_serialize( + _param = self._index_apache_http_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22198,7 +22198,7 @@ def index_apache_jspwiki_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheHTTPPaginatePagination", '404': "str", '500': "str", } @@ -22209,7 +22209,7 @@ def index_apache_jspwiki_get_without_preload_content( return response_data.response - def _index_apache_jspwiki_get_serialize( + def _index_apache_http_get_serialize( self, page, limit, @@ -22377,7 +22377,7 @@ def _index_apache_jspwiki_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-jspwiki', + resource_path='/v3/index/apache-http', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -22394,7 +22394,7 @@ def _index_apache_jspwiki_get_serialize( @validate_call - def index_apache_kafka_get( + def index_apache_jspwiki_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -22432,10 +22432,10 @@ def index_apache_kafka_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination: - """Return vulnerability data stored in index \"apache-kafka\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination: + """Return vulnerability data stored in index \"apache-jspwiki\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` :param page: set the page number of the response :type page: int @@ -22507,7 +22507,7 @@ def index_apache_kafka_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_kafka_get_serialize( + _param = self._index_apache_jspwiki_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22539,7 +22539,7 @@ def index_apache_kafka_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", '404': "str", '500': "str", } @@ -22555,7 +22555,7 @@ def index_apache_kafka_get( @validate_call - def index_apache_kafka_get_with_http_info( + def index_apache_jspwiki_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -22593,10 +22593,10 @@ def index_apache_kafka_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination]: - """Return vulnerability data stored in index \"apache-kafka\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination]: + """Return vulnerability data stored in index \"apache-jspwiki\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` :param page: set the page number of the response :type page: int @@ -22668,7 +22668,7 @@ def index_apache_kafka_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_kafka_get_serialize( + _param = self._index_apache_jspwiki_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22700,7 +22700,7 @@ def index_apache_kafka_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", '404': "str", '500': "str", } @@ -22716,7 +22716,7 @@ def index_apache_kafka_get_with_http_info( @validate_call - def index_apache_kafka_get_without_preload_content( + def index_apache_jspwiki_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -22755,9 +22755,9 @@ def index_apache_kafka_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-kafka\" + """Return vulnerability data stored in index \"apache-jspwiki\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-jspwiki index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache JSPWiki CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-jspwiki?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-jspwiki?cursor=` :param page: set the page number of the response :type page: int @@ -22829,7 +22829,7 @@ def index_apache_kafka_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_kafka_get_serialize( + _param = self._index_apache_jspwiki_get_serialize( page=page, limit=limit, cursor=cursor, @@ -22861,7 +22861,7 @@ def index_apache_kafka_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheJSPWikiPaginatePagination", '404': "str", '500': "str", } @@ -22872,7 +22872,7 @@ def index_apache_kafka_get_without_preload_content( return response_data.response - def _index_apache_kafka_get_serialize( + def _index_apache_jspwiki_get_serialize( self, page, limit, @@ -23040,7 +23040,7 @@ def _index_apache_kafka_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-kafka', + resource_path='/v3/index/apache-jspwiki', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -23057,7 +23057,7 @@ def _index_apache_kafka_get_serialize( @validate_call - def index_apache_loggingservices_get( + def index_apache_kafka_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23095,10 +23095,10 @@ def index_apache_loggingservices_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination: - """Return vulnerability data stored in index \"apache-loggingservices\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination: + """Return vulnerability data stored in index \"apache-kafka\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` :param page: set the page number of the response :type page: int @@ -23170,7 +23170,7 @@ def index_apache_loggingservices_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_loggingservices_get_serialize( + _param = self._index_apache_kafka_get_serialize( page=page, limit=limit, cursor=cursor, @@ -23202,7 +23202,7 @@ def index_apache_loggingservices_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", '404': "str", '500': "str", } @@ -23218,7 +23218,7 @@ def index_apache_loggingservices_get( @validate_call - def index_apache_loggingservices_get_with_http_info( + def index_apache_kafka_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23256,10 +23256,10 @@ def index_apache_loggingservices_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination]: - """Return vulnerability data stored in index \"apache-loggingservices\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination]: + """Return vulnerability data stored in index \"apache-kafka\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` :param page: set the page number of the response :type page: int @@ -23331,7 +23331,7 @@ def index_apache_loggingservices_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_loggingservices_get_serialize( + _param = self._index_apache_kafka_get_serialize( page=page, limit=limit, cursor=cursor, @@ -23363,7 +23363,7 @@ def index_apache_loggingservices_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", '404': "str", '500': "str", } @@ -23379,7 +23379,7 @@ def index_apache_loggingservices_get_with_http_info( @validate_call - def index_apache_loggingservices_get_without_preload_content( + def index_apache_kafka_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23418,9 +23418,9 @@ def index_apache_loggingservices_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-loggingservices\" + """Return vulnerability data stored in index \"apache-kafka\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-kafka index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Kafka Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-kafka?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-kafka?cursor=` :param page: set the page number of the response :type page: int @@ -23492,7 +23492,7 @@ def index_apache_loggingservices_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_loggingservices_get_serialize( + _param = self._index_apache_kafka_get_serialize( page=page, limit=limit, cursor=cursor, @@ -23524,7 +23524,7 @@ def index_apache_loggingservices_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheKafkaPaginatePagination", '404': "str", '500': "str", } @@ -23535,7 +23535,7 @@ def index_apache_loggingservices_get_without_preload_content( return response_data.response - def _index_apache_loggingservices_get_serialize( + def _index_apache_kafka_get_serialize( self, page, limit, @@ -23703,7 +23703,7 @@ def _index_apache_loggingservices_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-loggingservices', + resource_path='/v3/index/apache-kafka', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -23720,7 +23720,7 @@ def _index_apache_loggingservices_get_serialize( @validate_call - def index_apache_nifi_get( + def index_apache_loggingservices_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23758,10 +23758,10 @@ def index_apache_nifi_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination: - """Return vulnerability data stored in index \"apache-nifi\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination: + """Return vulnerability data stored in index \"apache-loggingservices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` :param page: set the page number of the response :type page: int @@ -23833,7 +23833,7 @@ def index_apache_nifi_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_nifi_get_serialize( + _param = self._index_apache_loggingservices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -23865,7 +23865,7 @@ def index_apache_nifi_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", '404': "str", '500': "str", } @@ -23881,7 +23881,7 @@ def index_apache_nifi_get( @validate_call - def index_apache_nifi_get_with_http_info( + def index_apache_loggingservices_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -23919,10 +23919,10 @@ def index_apache_nifi_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination]: - """Return vulnerability data stored in index \"apache-nifi\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination]: + """Return vulnerability data stored in index \"apache-loggingservices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` :param page: set the page number of the response :type page: int @@ -23994,7 +23994,7 @@ def index_apache_nifi_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_nifi_get_serialize( + _param = self._index_apache_loggingservices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24026,7 +24026,7 @@ def index_apache_nifi_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", '404': "str", '500': "str", } @@ -24042,7 +24042,7 @@ def index_apache_nifi_get_with_http_info( @validate_call - def index_apache_nifi_get_without_preload_content( + def index_apache_loggingservices_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -24081,9 +24081,9 @@ def index_apache_nifi_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-nifi\" + """Return vulnerability data stored in index \"apache-loggingservices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-loggingservices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Logging Services Known Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-loggingservices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-loggingservices?cursor=` :param page: set the page number of the response :type page: int @@ -24155,7 +24155,7 @@ def index_apache_nifi_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_nifi_get_serialize( + _param = self._index_apache_loggingservices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24187,7 +24187,7 @@ def index_apache_nifi_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheLoggingServicesPaginatePagination", '404': "str", '500': "str", } @@ -24198,7 +24198,7 @@ def index_apache_nifi_get_without_preload_content( return response_data.response - def _index_apache_nifi_get_serialize( + def _index_apache_loggingservices_get_serialize( self, page, limit, @@ -24366,7 +24366,7 @@ def _index_apache_nifi_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-nifi', + resource_path='/v3/index/apache-loggingservices', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -24383,7 +24383,7 @@ def _index_apache_nifi_get_serialize( @validate_call - def index_apache_ofbiz_get( + def index_apache_nifi_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -24421,10 +24421,10 @@ def index_apache_ofbiz_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination: - """Return vulnerability data stored in index \"apache-ofbiz\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination: + """Return vulnerability data stored in index \"apache-nifi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` :param page: set the page number of the response :type page: int @@ -24496,7 +24496,7 @@ def index_apache_ofbiz_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_ofbiz_get_serialize( + _param = self._index_apache_nifi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24528,7 +24528,7 @@ def index_apache_ofbiz_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", '404': "str", '500': "str", } @@ -24544,7 +24544,7 @@ def index_apache_ofbiz_get( @validate_call - def index_apache_ofbiz_get_with_http_info( + def index_apache_nifi_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -24582,10 +24582,10 @@ def index_apache_ofbiz_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination]: - """Return vulnerability data stored in index \"apache-ofbiz\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination]: + """Return vulnerability data stored in index \"apache-nifi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` :param page: set the page number of the response :type page: int @@ -24657,7 +24657,7 @@ def index_apache_ofbiz_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_ofbiz_get_serialize( + _param = self._index_apache_nifi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24689,7 +24689,7 @@ def index_apache_ofbiz_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", '404': "str", '500': "str", } @@ -24705,7 +24705,7 @@ def index_apache_ofbiz_get_with_http_info( @validate_call - def index_apache_ofbiz_get_without_preload_content( + def index_apache_nifi_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -24744,9 +24744,9 @@ def index_apache_ofbiz_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-ofbiz\" + """Return vulnerability data stored in index \"apache-nifi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-nifi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache NiFi Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-nifi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-nifi?cursor=` :param page: set the page number of the response :type page: int @@ -24818,7 +24818,7 @@ def index_apache_ofbiz_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_ofbiz_get_serialize( + _param = self._index_apache_nifi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -24850,7 +24850,7 @@ def index_apache_ofbiz_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheNiFiPaginatePagination", '404': "str", '500': "str", } @@ -24861,7 +24861,7 @@ def index_apache_ofbiz_get_without_preload_content( return response_data.response - def _index_apache_ofbiz_get_serialize( + def _index_apache_nifi_get_serialize( self, page, limit, @@ -25029,7 +25029,7 @@ def _index_apache_ofbiz_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-ofbiz', + resource_path='/v3/index/apache-nifi', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -25046,7 +25046,7 @@ def _index_apache_ofbiz_get_serialize( @validate_call - def index_apache_openmeetings_get( + def index_apache_ofbiz_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25084,10 +25084,10 @@ def index_apache_openmeetings_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination: - """Return vulnerability data stored in index \"apache-openmeetings\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination: + """Return vulnerability data stored in index \"apache-ofbiz\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` :param page: set the page number of the response :type page: int @@ -25159,7 +25159,7 @@ def index_apache_openmeetings_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openmeetings_get_serialize( + _param = self._index_apache_ofbiz_get_serialize( page=page, limit=limit, cursor=cursor, @@ -25191,7 +25191,7 @@ def index_apache_openmeetings_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", '404': "str", '500': "str", } @@ -25207,7 +25207,7 @@ def index_apache_openmeetings_get( @validate_call - def index_apache_openmeetings_get_with_http_info( + def index_apache_ofbiz_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25245,10 +25245,10 @@ def index_apache_openmeetings_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination]: - """Return vulnerability data stored in index \"apache-openmeetings\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination]: + """Return vulnerability data stored in index \"apache-ofbiz\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` :param page: set the page number of the response :type page: int @@ -25320,7 +25320,7 @@ def index_apache_openmeetings_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openmeetings_get_serialize( + _param = self._index_apache_ofbiz_get_serialize( page=page, limit=limit, cursor=cursor, @@ -25352,7 +25352,7 @@ def index_apache_openmeetings_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", '404': "str", '500': "str", } @@ -25368,7 +25368,7 @@ def index_apache_openmeetings_get_with_http_info( @validate_call - def index_apache_openmeetings_get_without_preload_content( + def index_apache_ofbiz_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25407,9 +25407,9 @@ def index_apache_openmeetings_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-openmeetings\" + """Return vulnerability data stored in index \"apache-ofbiz\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-ofbiz index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OFBiz Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-ofbiz?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-ofbiz?cursor=` :param page: set the page number of the response :type page: int @@ -25481,7 +25481,7 @@ def index_apache_openmeetings_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openmeetings_get_serialize( + _param = self._index_apache_ofbiz_get_serialize( page=page, limit=limit, cursor=cursor, @@ -25513,7 +25513,7 @@ def index_apache_openmeetings_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOFBizPaginatePagination", '404': "str", '500': "str", } @@ -25524,7 +25524,7 @@ def index_apache_openmeetings_get_without_preload_content( return response_data.response - def _index_apache_openmeetings_get_serialize( + def _index_apache_ofbiz_get_serialize( self, page, limit, @@ -25692,7 +25692,7 @@ def _index_apache_openmeetings_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-openmeetings', + resource_path='/v3/index/apache-ofbiz', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -25709,7 +25709,7 @@ def _index_apache_openmeetings_get_serialize( @validate_call - def index_apache_openoffice_get( + def index_apache_openmeetings_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25747,10 +25747,10 @@ def index_apache_openoffice_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination: - """Return vulnerability data stored in index \"apache-openoffice\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination: + """Return vulnerability data stored in index \"apache-openmeetings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` :param page: set the page number of the response :type page: int @@ -25822,7 +25822,7 @@ def index_apache_openoffice_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openoffice_get_serialize( + _param = self._index_apache_openmeetings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -25854,7 +25854,7 @@ def index_apache_openoffice_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", '404': "str", '500': "str", } @@ -25870,7 +25870,7 @@ def index_apache_openoffice_get( @validate_call - def index_apache_openoffice_get_with_http_info( + def index_apache_openmeetings_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -25908,10 +25908,10 @@ def index_apache_openoffice_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination]: - """Return vulnerability data stored in index \"apache-openoffice\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination]: + """Return vulnerability data stored in index \"apache-openmeetings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` :param page: set the page number of the response :type page: int @@ -25983,7 +25983,7 @@ def index_apache_openoffice_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openoffice_get_serialize( + _param = self._index_apache_openmeetings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26015,7 +26015,7 @@ def index_apache_openoffice_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", '404': "str", '500': "str", } @@ -26031,7 +26031,7 @@ def index_apache_openoffice_get_with_http_info( @validate_call - def index_apache_openoffice_get_without_preload_content( + def index_apache_openmeetings_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -26070,9 +26070,9 @@ def index_apache_openoffice_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-openoffice\" + """Return vulnerability data stored in index \"apache-openmeetings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openmeetings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenMeetings Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openmeetings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openmeetings?cursor=` :param page: set the page number of the response :type page: int @@ -26144,7 +26144,7 @@ def index_apache_openoffice_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_openoffice_get_serialize( + _param = self._index_apache_openmeetings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26176,7 +26176,7 @@ def index_apache_openoffice_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenMeetingsPaginatePagination", '404': "str", '500': "str", } @@ -26187,7 +26187,7 @@ def index_apache_openoffice_get_without_preload_content( return response_data.response - def _index_apache_openoffice_get_serialize( + def _index_apache_openmeetings_get_serialize( self, page, limit, @@ -26355,7 +26355,7 @@ def _index_apache_openoffice_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-openoffice', + resource_path='/v3/index/apache-openmeetings', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -26372,7 +26372,7 @@ def _index_apache_openoffice_get_serialize( @validate_call - def index_apache_pulsar_get( + def index_apache_openoffice_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -26410,10 +26410,10 @@ def index_apache_pulsar_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination: - """Return vulnerability data stored in index \"apache-pulsar\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination: + """Return vulnerability data stored in index \"apache-openoffice\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` :param page: set the page number of the response :type page: int @@ -26485,7 +26485,7 @@ def index_apache_pulsar_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_pulsar_get_serialize( + _param = self._index_apache_openoffice_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26517,7 +26517,7 @@ def index_apache_pulsar_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", '404': "str", '500': "str", } @@ -26533,7 +26533,7 @@ def index_apache_pulsar_get( @validate_call - def index_apache_pulsar_get_with_http_info( + def index_apache_openoffice_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -26571,10 +26571,10 @@ def index_apache_pulsar_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination]: - """Return vulnerability data stored in index \"apache-pulsar\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination]: + """Return vulnerability data stored in index \"apache-openoffice\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` :param page: set the page number of the response :type page: int @@ -26646,7 +26646,7 @@ def index_apache_pulsar_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_pulsar_get_serialize( + _param = self._index_apache_openoffice_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26678,7 +26678,7 @@ def index_apache_pulsar_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", '404': "str", '500': "str", } @@ -26694,7 +26694,7 @@ def index_apache_pulsar_get_with_http_info( @validate_call - def index_apache_pulsar_get_without_preload_content( + def index_apache_openoffice_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -26733,9 +26733,9 @@ def index_apache_pulsar_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-pulsar\" + """Return vulnerability data stored in index \"apache-openoffice\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-openoffice index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache OpenOffice Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-openoffice?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-openoffice?cursor=` :param page: set the page number of the response :type page: int @@ -26807,7 +26807,7 @@ def index_apache_pulsar_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_pulsar_get_serialize( + _param = self._index_apache_openoffice_get_serialize( page=page, limit=limit, cursor=cursor, @@ -26839,7 +26839,7 @@ def index_apache_pulsar_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheOpenOfficePaginatePagination", '404': "str", '500': "str", } @@ -26850,7 +26850,7 @@ def index_apache_pulsar_get_without_preload_content( return response_data.response - def _index_apache_pulsar_get_serialize( + def _index_apache_openoffice_get_serialize( self, page, limit, @@ -27018,7 +27018,7 @@ def _index_apache_pulsar_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-pulsar', + resource_path='/v3/index/apache-openoffice', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -27035,7 +27035,7 @@ def _index_apache_pulsar_get_serialize( @validate_call - def index_apache_shiro_get( + def index_apache_pulsar_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27073,10 +27073,10 @@ def index_apache_shiro_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination: - """Return vulnerability data stored in index \"apache-shiro\" + ) -> RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination: + """Return vulnerability data stored in index \"apache-pulsar\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` :param page: set the page number of the response :type page: int @@ -27148,7 +27148,7 @@ def index_apache_shiro_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_shiro_get_serialize( + _param = self._index_apache_pulsar_get_serialize( page=page, limit=limit, cursor=cursor, @@ -27180,7 +27180,7 @@ def index_apache_shiro_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", '404': "str", '500': "str", } @@ -27196,7 +27196,7 @@ def index_apache_shiro_get( @validate_call - def index_apache_shiro_get_with_http_info( + def index_apache_pulsar_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27234,10 +27234,10 @@ def index_apache_shiro_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination]: - """Return vulnerability data stored in index \"apache-shiro\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination]: + """Return vulnerability data stored in index \"apache-pulsar\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` :param page: set the page number of the response :type page: int @@ -27309,7 +27309,7 @@ def index_apache_shiro_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_shiro_get_serialize( + _param = self._index_apache_pulsar_get_serialize( page=page, limit=limit, cursor=cursor, @@ -27341,7 +27341,7 @@ def index_apache_shiro_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", '404': "str", '500': "str", } @@ -27357,7 +27357,7 @@ def index_apache_shiro_get_with_http_info( @validate_call - def index_apache_shiro_get_without_preload_content( + def index_apache_pulsar_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27396,9 +27396,9 @@ def index_apache_shiro_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-shiro\" + """Return vulnerability data stored in index \"apache-pulsar\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-pulsar index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Pulsar Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-pulsar?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-pulsar?cursor=` :param page: set the page number of the response :type page: int @@ -27470,7 +27470,7 @@ def index_apache_shiro_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_shiro_get_serialize( + _param = self._index_apache_pulsar_get_serialize( page=page, limit=limit, cursor=cursor, @@ -27502,7 +27502,7 @@ def index_apache_shiro_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApachePulsarPaginatePagination", '404': "str", '500': "str", } @@ -27513,7 +27513,7 @@ def index_apache_shiro_get_without_preload_content( return response_data.response - def _index_apache_shiro_get_serialize( + def _index_apache_pulsar_get_serialize( self, page, limit, @@ -27681,7 +27681,7 @@ def _index_apache_shiro_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-shiro', + resource_path='/v3/index/apache-pulsar', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -27698,7 +27698,7 @@ def _index_apache_shiro_get_serialize( @validate_call - def index_apache_spark_get( + def index_apache_shiro_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27736,10 +27736,10 @@ def index_apache_spark_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination: - """Return vulnerability data stored in index \"apache-spark\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination: + """Return vulnerability data stored in index \"apache-shiro\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` :param page: set the page number of the response :type page: int @@ -27811,7 +27811,7 @@ def index_apache_spark_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_spark_get_serialize( + _param = self._index_apache_shiro_get_serialize( page=page, limit=limit, cursor=cursor, @@ -27843,7 +27843,7 @@ def index_apache_spark_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", '404': "str", '500': "str", } @@ -27859,7 +27859,7 @@ def index_apache_spark_get( @validate_call - def index_apache_spark_get_with_http_info( + def index_apache_shiro_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -27897,10 +27897,10 @@ def index_apache_spark_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination]: - """Return vulnerability data stored in index \"apache-spark\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination]: + """Return vulnerability data stored in index \"apache-shiro\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` :param page: set the page number of the response :type page: int @@ -27972,7 +27972,7 @@ def index_apache_spark_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_spark_get_serialize( + _param = self._index_apache_shiro_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28004,7 +28004,7 @@ def index_apache_spark_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", '404': "str", '500': "str", } @@ -28020,7 +28020,7 @@ def index_apache_spark_get_with_http_info( @validate_call - def index_apache_spark_get_without_preload_content( + def index_apache_shiro_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -28059,9 +28059,9 @@ def index_apache_spark_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-spark\" + """Return vulnerability data stored in index \"apache-shiro\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-shiro index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Shiro Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-shiro?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-shiro?cursor=` :param page: set the page number of the response :type page: int @@ -28133,7 +28133,7 @@ def index_apache_spark_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_spark_get_serialize( + _param = self._index_apache_shiro_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28165,7 +28165,7 @@ def index_apache_spark_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheShiroPaginatePagination", '404': "str", '500': "str", } @@ -28176,7 +28176,7 @@ def index_apache_spark_get_without_preload_content( return response_data.response - def _index_apache_spark_get_serialize( + def _index_apache_shiro_get_serialize( self, page, limit, @@ -28344,7 +28344,7 @@ def _index_apache_spark_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-spark', + resource_path='/v3/index/apache-shiro', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -28361,7 +28361,7 @@ def _index_apache_spark_get_serialize( @validate_call - def index_apache_struts_get( + def index_apache_spark_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -28399,10 +28399,10 @@ def index_apache_struts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination: - """Return vulnerability data stored in index \"apache-struts\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination: + """Return vulnerability data stored in index \"apache-spark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` :param page: set the page number of the response :type page: int @@ -28474,7 +28474,7 @@ def index_apache_struts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_struts_get_serialize( + _param = self._index_apache_spark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28506,7 +28506,7 @@ def index_apache_struts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", '404': "str", '500': "str", } @@ -28522,7 +28522,7 @@ def index_apache_struts_get( @validate_call - def index_apache_struts_get_with_http_info( + def index_apache_spark_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -28560,10 +28560,10 @@ def index_apache_struts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination]: - """Return vulnerability data stored in index \"apache-struts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination]: + """Return vulnerability data stored in index \"apache-spark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` :param page: set the page number of the response :type page: int @@ -28635,7 +28635,7 @@ def index_apache_struts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_struts_get_serialize( + _param = self._index_apache_spark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28667,7 +28667,7 @@ def index_apache_struts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", '404': "str", '500': "str", } @@ -28683,7 +28683,7 @@ def index_apache_struts_get_with_http_info( @validate_call - def index_apache_struts_get_without_preload_content( + def index_apache_spark_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -28722,9 +28722,9 @@ def index_apache_struts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-struts\" + """Return vulnerability data stored in index \"apache-spark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-spark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Spark Known Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-spark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-spark?cursor=` :param page: set the page number of the response :type page: int @@ -28796,7 +28796,7 @@ def index_apache_struts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_struts_get_serialize( + _param = self._index_apache_spark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -28828,7 +28828,7 @@ def index_apache_struts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSparkPaginatePagination", '404': "str", '500': "str", } @@ -28839,7 +28839,7 @@ def index_apache_struts_get_without_preload_content( return response_data.response - def _index_apache_struts_get_serialize( + def _index_apache_spark_get_serialize( self, page, limit, @@ -29007,7 +29007,7 @@ def _index_apache_struts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-struts', + resource_path='/v3/index/apache-spark', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -29024,7 +29024,7 @@ def _index_apache_struts_get_serialize( @validate_call - def index_apache_subversion_get( + def index_apache_struts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29062,10 +29062,10 @@ def index_apache_subversion_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination: - """Return vulnerability data stored in index \"apache-subversion\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination: + """Return vulnerability data stored in index \"apache-struts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` :param page: set the page number of the response :type page: int @@ -29137,7 +29137,7 @@ def index_apache_subversion_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_subversion_get_serialize( + _param = self._index_apache_struts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29169,7 +29169,7 @@ def index_apache_subversion_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", '404': "str", '500': "str", } @@ -29185,7 +29185,7 @@ def index_apache_subversion_get( @validate_call - def index_apache_subversion_get_with_http_info( + def index_apache_struts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29223,10 +29223,10 @@ def index_apache_subversion_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination]: - """Return vulnerability data stored in index \"apache-subversion\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination]: + """Return vulnerability data stored in index \"apache-struts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` :param page: set the page number of the response :type page: int @@ -29298,7 +29298,7 @@ def index_apache_subversion_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_subversion_get_serialize( + _param = self._index_apache_struts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29330,7 +29330,7 @@ def index_apache_subversion_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", '404': "str", '500': "str", } @@ -29346,7 +29346,7 @@ def index_apache_subversion_get_with_http_info( @validate_call - def index_apache_subversion_get_without_preload_content( + def index_apache_struts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29385,9 +29385,9 @@ def index_apache_subversion_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-subversion\" + """Return vulnerability data stored in index \"apache-struts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-struts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Struts Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-struts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-struts?cursor=` :param page: set the page number of the response :type page: int @@ -29459,7 +29459,7 @@ def index_apache_subversion_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_subversion_get_serialize( + _param = self._index_apache_struts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29491,7 +29491,7 @@ def index_apache_subversion_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheStrutsPaginatePagination", '404': "str", '500': "str", } @@ -29502,7 +29502,7 @@ def index_apache_subversion_get_without_preload_content( return response_data.response - def _index_apache_subversion_get_serialize( + def _index_apache_struts_get_serialize( self, page, limit, @@ -29670,7 +29670,7 @@ def _index_apache_subversion_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-subversion', + resource_path='/v3/index/apache-struts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -29687,7 +29687,7 @@ def _index_apache_subversion_get_serialize( @validate_call - def index_apache_superset_get( + def index_apache_subversion_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29725,10 +29725,10 @@ def index_apache_superset_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination: - """Return vulnerability data stored in index \"apache-superset\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination: + """Return vulnerability data stored in index \"apache-subversion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` :param page: set the page number of the response :type page: int @@ -29800,7 +29800,7 @@ def index_apache_superset_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_superset_get_serialize( + _param = self._index_apache_subversion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29832,7 +29832,7 @@ def index_apache_superset_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", '404': "str", '500': "str", } @@ -29848,7 +29848,7 @@ def index_apache_superset_get( @validate_call - def index_apache_superset_get_with_http_info( + def index_apache_subversion_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -29886,10 +29886,10 @@ def index_apache_superset_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination]: - """Return vulnerability data stored in index \"apache-superset\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination]: + """Return vulnerability data stored in index \"apache-subversion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` :param page: set the page number of the response :type page: int @@ -29961,7 +29961,7 @@ def index_apache_superset_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_superset_get_serialize( + _param = self._index_apache_subversion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -29993,7 +29993,7 @@ def index_apache_superset_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", '404': "str", '500': "str", } @@ -30009,7 +30009,7 @@ def index_apache_superset_get_with_http_info( @validate_call - def index_apache_superset_get_without_preload_content( + def index_apache_subversion_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -30048,9 +30048,9 @@ def index_apache_superset_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-superset\" + """Return vulnerability data stored in index \"apache-subversion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-subversion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Subversion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-subversion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-subversion?cursor=` :param page: set the page number of the response :type page: int @@ -30122,7 +30122,7 @@ def index_apache_superset_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_superset_get_serialize( + _param = self._index_apache_subversion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -30154,7 +30154,7 @@ def index_apache_superset_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSubversionPaginatePagination", '404': "str", '500': "str", } @@ -30165,7 +30165,7 @@ def index_apache_superset_get_without_preload_content( return response_data.response - def _index_apache_superset_get_serialize( + def _index_apache_subversion_get_serialize( self, page, limit, @@ -30333,7 +30333,7 @@ def _index_apache_superset_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-superset', + resource_path='/v3/index/apache-subversion', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -30350,7 +30350,7 @@ def _index_apache_superset_get_serialize( @validate_call - def index_apache_tomcat_get( + def index_apache_superset_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -30388,10 +30388,10 @@ def index_apache_tomcat_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination: - """Return vulnerability data stored in index \"apache-tomcat\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination: + """Return vulnerability data stored in index \"apache-superset\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` :param page: set the page number of the response :type page: int @@ -30463,7 +30463,7 @@ def index_apache_tomcat_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_tomcat_get_serialize( + _param = self._index_apache_superset_get_serialize( page=page, limit=limit, cursor=cursor, @@ -30495,7 +30495,7 @@ def index_apache_tomcat_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", '404': "str", '500': "str", } @@ -30511,7 +30511,7 @@ def index_apache_tomcat_get( @validate_call - def index_apache_tomcat_get_with_http_info( + def index_apache_superset_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -30549,10 +30549,10 @@ def index_apache_tomcat_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination]: - """Return vulnerability data stored in index \"apache-tomcat\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination]: + """Return vulnerability data stored in index \"apache-superset\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` :param page: set the page number of the response :type page: int @@ -30624,7 +30624,7 @@ def index_apache_tomcat_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_tomcat_get_serialize( + _param = self._index_apache_superset_get_serialize( page=page, limit=limit, cursor=cursor, @@ -30656,7 +30656,7 @@ def index_apache_tomcat_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", '404': "str", '500': "str", } @@ -30672,7 +30672,7 @@ def index_apache_tomcat_get_with_http_info( @validate_call - def index_apache_tomcat_get_without_preload_content( + def index_apache_superset_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -30711,9 +30711,9 @@ def index_apache_tomcat_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-tomcat\" + """Return vulnerability data stored in index \"apache-superset\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-superset index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Superset CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-superset?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-superset?cursor=` :param page: set the page number of the response :type page: int @@ -30785,7 +30785,7 @@ def index_apache_tomcat_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_tomcat_get_serialize( + _param = self._index_apache_superset_get_serialize( page=page, limit=limit, cursor=cursor, @@ -30817,7 +30817,7 @@ def index_apache_tomcat_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheSupersetPaginatePagination", '404': "str", '500': "str", } @@ -30828,7 +30828,7 @@ def index_apache_tomcat_get_without_preload_content( return response_data.response - def _index_apache_tomcat_get_serialize( + def _index_apache_superset_get_serialize( self, page, limit, @@ -30996,7 +30996,7 @@ def _index_apache_tomcat_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-tomcat', + resource_path='/v3/index/apache-superset', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -31013,7 +31013,7 @@ def _index_apache_tomcat_get_serialize( @validate_call - def index_apache_zookeeper_get( + def index_apache_tomcat_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31051,10 +31051,10 @@ def index_apache_zookeeper_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination: - """Return vulnerability data stored in index \"apache-zookeeper\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination: + """Return vulnerability data stored in index \"apache-tomcat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` :param page: set the page number of the response :type page: int @@ -31126,7 +31126,7 @@ def index_apache_zookeeper_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_zookeeper_get_serialize( + _param = self._index_apache_tomcat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31158,7 +31158,7 @@ def index_apache_zookeeper_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", '404': "str", '500': "str", } @@ -31174,7 +31174,7 @@ def index_apache_zookeeper_get( @validate_call - def index_apache_zookeeper_get_with_http_info( + def index_apache_tomcat_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31212,10 +31212,10 @@ def index_apache_zookeeper_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination]: - """Return vulnerability data stored in index \"apache-zookeeper\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination]: + """Return vulnerability data stored in index \"apache-tomcat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` :param page: set the page number of the response :type page: int @@ -31287,7 +31287,7 @@ def index_apache_zookeeper_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_zookeeper_get_serialize( + _param = self._index_apache_tomcat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31319,7 +31319,7 @@ def index_apache_zookeeper_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", '404': "str", '500': "str", } @@ -31335,7 +31335,7 @@ def index_apache_zookeeper_get_with_http_info( @validate_call - def index_apache_zookeeper_get_without_preload_content( + def index_apache_tomcat_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31374,9 +31374,9 @@ def index_apache_zookeeper_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apache-zookeeper\" + """Return vulnerability data stored in index \"apache-tomcat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-tomcat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache Tomcat Security Vunlnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-tomcat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-tomcat?cursor=` :param page: set the page number of the response :type page: int @@ -31448,7 +31448,7 @@ def index_apache_zookeeper_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apache_zookeeper_get_serialize( + _param = self._index_apache_tomcat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31480,7 +31480,7 @@ def index_apache_zookeeper_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheTomcatPaginatePagination", '404': "str", '500': "str", } @@ -31491,7 +31491,7 @@ def index_apache_zookeeper_get_without_preload_content( return response_data.response - def _index_apache_zookeeper_get_serialize( + def _index_apache_tomcat_get_serialize( self, page, limit, @@ -31659,7 +31659,7 @@ def _index_apache_zookeeper_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apache-zookeeper', + resource_path='/v3/index/apache-tomcat', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -31676,7 +31676,7 @@ def _index_apache_zookeeper_get_serialize( @validate_call - def index_appcheck_get( + def index_apache_zookeeper_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31714,10 +31714,10 @@ def index_appcheck_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination: - """Return vulnerability data stored in index \"appcheck\" + ) -> RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination: + """Return vulnerability data stored in index \"apache-zookeeper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` :param page: set the page number of the response :type page: int @@ -31789,7 +31789,7 @@ def index_appcheck_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appcheck_get_serialize( + _param = self._index_apache_zookeeper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31821,7 +31821,7 @@ def index_appcheck_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", '404': "str", '500': "str", } @@ -31837,7 +31837,7 @@ def index_appcheck_get( @validate_call - def index_appcheck_get_with_http_info( + def index_apache_zookeeper_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -31875,10 +31875,10 @@ def index_appcheck_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination]: - """Return vulnerability data stored in index \"appcheck\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination]: + """Return vulnerability data stored in index \"apache-zookeeper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` :param page: set the page number of the response :type page: int @@ -31950,7 +31950,7 @@ def index_appcheck_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appcheck_get_serialize( + _param = self._index_apache_zookeeper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -31982,7 +31982,7 @@ def index_appcheck_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", '404': "str", '500': "str", } @@ -31998,7 +31998,7 @@ def index_appcheck_get_with_http_info( @validate_call - def index_appcheck_get_without_preload_content( + def index_apache_zookeeper_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -32037,9 +32037,9 @@ def index_appcheck_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"appcheck\" + """Return vulnerability data stored in index \"apache-zookeeper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apache-zookeeper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apache ZooKeeper Vulnerability Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apache-zookeeper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apache-zookeeper?cursor=` :param page: set the page number of the response :type page: int @@ -32111,7 +32111,7 @@ def index_appcheck_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appcheck_get_serialize( + _param = self._index_apache_zookeeper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -32143,7 +32143,7 @@ def index_appcheck_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryApacheZooKeeperPaginatePagination", '404': "str", '500': "str", } @@ -32154,7 +32154,7 @@ def index_appcheck_get_without_preload_content( return response_data.response - def _index_appcheck_get_serialize( + def _index_apache_zookeeper_get_serialize( self, page, limit, @@ -32322,7 +32322,7 @@ def _index_appcheck_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/appcheck', + resource_path='/v3/index/apache-zookeeper', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -32339,7 +32339,7 @@ def _index_appcheck_get_serialize( @validate_call - def index_appgate_get( + def index_appcheck_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -32377,10 +32377,10 @@ def index_appgate_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination: - """Return vulnerability data stored in index \"appgate\" + ) -> RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination: + """Return vulnerability data stored in index \"appcheck\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` :param page: set the page number of the response :type page: int @@ -32452,7 +32452,7 @@ def index_appgate_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appgate_get_serialize( + _param = self._index_appcheck_get_serialize( page=page, limit=limit, cursor=cursor, @@ -32484,7 +32484,7 @@ def index_appgate_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", '404': "str", '500': "str", } @@ -32500,7 +32500,7 @@ def index_appgate_get( @validate_call - def index_appgate_get_with_http_info( + def index_appcheck_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -32538,10 +32538,10 @@ def index_appgate_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination]: - """Return vulnerability data stored in index \"appgate\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination]: + """Return vulnerability data stored in index \"appcheck\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` :param page: set the page number of the response :type page: int @@ -32613,7 +32613,7 @@ def index_appgate_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appgate_get_serialize( + _param = self._index_appcheck_get_serialize( page=page, limit=limit, cursor=cursor, @@ -32645,7 +32645,7 @@ def index_appgate_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", '404': "str", '500': "str", } @@ -32661,7 +32661,7 @@ def index_appgate_get_with_http_info( @validate_call - def index_appgate_get_without_preload_content( + def index_appcheck_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -32700,9 +32700,9 @@ def index_appgate_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"appgate\" + """Return vulnerability data stored in index \"appcheck\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appcheck index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AppCheck Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appcheck?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appcheck?cursor=` :param page: set the page number of the response :type page: int @@ -32774,7 +32774,7 @@ def index_appgate_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_appgate_get_serialize( + _param = self._index_appcheck_get_serialize( page=page, limit=limit, cursor=cursor, @@ -32806,7 +32806,7 @@ def index_appgate_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppCheckPaginatePagination", '404': "str", '500': "str", } @@ -32817,7 +32817,7 @@ def index_appgate_get_without_preload_content( return response_data.response - def _index_appgate_get_serialize( + def _index_appcheck_get_serialize( self, page, limit, @@ -32985,7 +32985,7 @@ def _index_appgate_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/appgate', + resource_path='/v3/index/appcheck', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -33002,7 +33002,7 @@ def _index_appgate_get_serialize( @validate_call - def index_apple_get( + def index_appgate_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33040,10 +33040,10 @@ def index_apple_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"apple\" + ) -> RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination: + """Return vulnerability data stored in index \"appgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` :param page: set the page number of the response :type page: int @@ -33115,7 +33115,7 @@ def index_apple_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apple_get_serialize( + _param = self._index_appgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33147,7 +33147,7 @@ def index_apple_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", '404': "str", '500': "str", } @@ -33163,7 +33163,7 @@ def index_apple_get( @validate_call - def index_apple_get_with_http_info( + def index_appgate_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33201,10 +33201,10 @@ def index_apple_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"apple\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination]: + """Return vulnerability data stored in index \"appgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` :param page: set the page number of the response :type page: int @@ -33276,7 +33276,7 @@ def index_apple_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apple_get_serialize( + _param = self._index_appgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33308,7 +33308,7 @@ def index_apple_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", '404': "str", '500': "str", } @@ -33324,7 +33324,7 @@ def index_apple_get_with_http_info( @validate_call - def index_apple_get_without_preload_content( + def index_appgate_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33363,9 +33363,9 @@ def index_apple_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"apple\" + """Return vulnerability data stored in index \"appgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the appgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Appgate SDP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/appgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/appgate?cursor=` :param page: set the page number of the response :type page: int @@ -33437,7 +33437,7 @@ def index_apple_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_apple_get_serialize( + _param = self._index_appgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33469,7 +33469,7 @@ def index_apple_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppgatePaginatePagination", '404': "str", '500': "str", } @@ -33480,7 +33480,7 @@ def index_apple_get_without_preload_content( return response_data.response - def _index_apple_get_serialize( + def _index_appgate_get_serialize( self, page, limit, @@ -33648,7 +33648,7 @@ def _index_apple_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/apple', + resource_path='/v3/index/appgate', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -33665,7 +33665,7 @@ def _index_apple_get_serialize( @validate_call - def index_arch_get( + def index_apple_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33703,10 +33703,10 @@ def index_arch_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination: - """Return vulnerability data stored in index \"arch\" + ) -> RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"apple\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` :param page: set the page number of the response :type page: int @@ -33778,7 +33778,7 @@ def index_arch_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arch_get_serialize( + _param = self._index_apple_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33810,7 +33810,7 @@ def index_arch_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -33826,7 +33826,7 @@ def index_arch_get( @validate_call - def index_arch_get_with_http_info( + def index_apple_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -33864,10 +33864,10 @@ def index_arch_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination]: - """Return vulnerability data stored in index \"arch\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"apple\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` :param page: set the page number of the response :type page: int @@ -33939,7 +33939,7 @@ def index_arch_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arch_get_serialize( + _param = self._index_apple_get_serialize( page=page, limit=limit, cursor=cursor, @@ -33971,7 +33971,7 @@ def index_arch_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -33987,7 +33987,7 @@ def index_arch_get_with_http_info( @validate_call - def index_arch_get_without_preload_content( + def index_apple_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -34026,9 +34026,9 @@ def index_arch_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"arch\" + """Return vulnerability data stored in index \"apple\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the apple index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Apple Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/apple?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/apple?cursor=` :param page: set the page number of the response :type page: int @@ -34100,7 +34100,7 @@ def index_arch_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arch_get_serialize( + _param = self._index_apple_get_serialize( page=page, limit=limit, cursor=cursor, @@ -34132,7 +34132,7 @@ def index_arch_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAppleAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -34143,7 +34143,7 @@ def index_arch_get_without_preload_content( return response_data.response - def _index_arch_get_serialize( + def _index_apple_get_serialize( self, page, limit, @@ -34311,7 +34311,7 @@ def _index_arch_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/arch', + resource_path='/v3/index/apple', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -34328,7 +34328,7 @@ def _index_arch_get_serialize( @validate_call - def index_arista_get( + def index_arch_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -34366,10 +34366,10 @@ def index_arista_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination: - """Return vulnerability data stored in index \"arista\" + ) -> RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination: + """Return vulnerability data stored in index \"arch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` :param page: set the page number of the response :type page: int @@ -34441,7 +34441,7 @@ def index_arista_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arista_get_serialize( + _param = self._index_arch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -34473,7 +34473,7 @@ def index_arista_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", '404': "str", '500': "str", } @@ -34489,7 +34489,7 @@ def index_arista_get( @validate_call - def index_arista_get_with_http_info( + def index_arch_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -34527,10 +34527,10 @@ def index_arista_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination]: - """Return vulnerability data stored in index \"arista\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination]: + """Return vulnerability data stored in index \"arch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` :param page: set the page number of the response :type page: int @@ -34602,7 +34602,7 @@ def index_arista_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arista_get_serialize( + _param = self._index_arch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -34634,7 +34634,7 @@ def index_arista_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", '404': "str", '500': "str", } @@ -34650,7 +34650,7 @@ def index_arista_get_with_http_info( @validate_call - def index_arista_get_without_preload_content( + def index_arch_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -34689,9 +34689,9 @@ def index_arista_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"arista\" + """Return vulnerability data stored in index \"arch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arch Linux ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arch?cursor=` :param page: set the page number of the response :type page: int @@ -34763,7 +34763,7 @@ def index_arista_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_arista_get_serialize( + _param = self._index_arch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -34795,7 +34795,7 @@ def index_arista_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArchIssuePaginatePagination", '404': "str", '500': "str", } @@ -34806,7 +34806,7 @@ def index_arista_get_without_preload_content( return response_data.response - def _index_arista_get_serialize( + def _index_arch_get_serialize( self, page, limit, @@ -34974,7 +34974,7 @@ def _index_arista_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/arista', + resource_path='/v3/index/arch', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -34991,7 +34991,7 @@ def _index_arista_get_serialize( @validate_call - def index_aruba_get( + def index_arista_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35029,10 +35029,10 @@ def index_aruba_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination: - """Return vulnerability data stored in index \"aruba\" + ) -> RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination: + """Return vulnerability data stored in index \"arista\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` :param page: set the page number of the response :type page: int @@ -35104,7 +35104,7 @@ def index_aruba_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aruba_get_serialize( + _param = self._index_arista_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35136,7 +35136,7 @@ def index_aruba_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", '404': "str", '500': "str", } @@ -35152,7 +35152,7 @@ def index_aruba_get( @validate_call - def index_aruba_get_with_http_info( + def index_arista_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35190,10 +35190,10 @@ def index_aruba_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination]: - """Return vulnerability data stored in index \"aruba\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination]: + """Return vulnerability data stored in index \"arista\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` :param page: set the page number of the response :type page: int @@ -35265,7 +35265,7 @@ def index_aruba_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aruba_get_serialize( + _param = self._index_arista_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35297,7 +35297,7 @@ def index_aruba_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", '404': "str", '500': "str", } @@ -35313,7 +35313,7 @@ def index_aruba_get_with_http_info( @validate_call - def index_aruba_get_without_preload_content( + def index_arista_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35352,9 +35352,9 @@ def index_aruba_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"aruba\" + """Return vulnerability data stored in index \"arista\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the arista index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Arista Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/arista?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/arista?cursor=` :param page: set the page number of the response :type page: int @@ -35426,7 +35426,7 @@ def index_aruba_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aruba_get_serialize( + _param = self._index_arista_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35458,7 +35458,7 @@ def index_aruba_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAristaPaginatePagination", '404': "str", '500': "str", } @@ -35469,7 +35469,7 @@ def index_aruba_get_without_preload_content( return response_data.response - def _index_aruba_get_serialize( + def _index_arista_get_serialize( self, page, limit, @@ -35637,7 +35637,7 @@ def _index_aruba_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/aruba', + resource_path='/v3/index/arista', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -35654,7 +35654,7 @@ def _index_aruba_get_serialize( @validate_call - def index_asrg_get( + def index_aruba_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35692,10 +35692,10 @@ def index_asrg_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination: - """Return vulnerability data stored in index \"asrg\" + ) -> RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination: + """Return vulnerability data stored in index \"aruba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` :param page: set the page number of the response :type page: int @@ -35767,7 +35767,7 @@ def index_asrg_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asrg_get_serialize( + _param = self._index_aruba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35799,7 +35799,7 @@ def index_asrg_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", '404': "str", '500': "str", } @@ -35815,7 +35815,7 @@ def index_asrg_get( @validate_call - def index_asrg_get_with_http_info( + def index_aruba_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -35853,10 +35853,10 @@ def index_asrg_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination]: - """Return vulnerability data stored in index \"asrg\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination]: + """Return vulnerability data stored in index \"aruba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` :param page: set the page number of the response :type page: int @@ -35928,7 +35928,7 @@ def index_asrg_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asrg_get_serialize( + _param = self._index_aruba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -35960,7 +35960,7 @@ def index_asrg_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", '404': "str", '500': "str", } @@ -35976,7 +35976,7 @@ def index_asrg_get_with_http_info( @validate_call - def index_asrg_get_without_preload_content( + def index_aruba_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -36015,9 +36015,9 @@ def index_asrg_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"asrg\" + """Return vulnerability data stored in index \"aruba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aruba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Aruba Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aruba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aruba?cursor=` :param page: set the page number of the response :type page: int @@ -36089,7 +36089,7 @@ def index_asrg_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asrg_get_serialize( + _param = self._index_aruba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -36121,7 +36121,7 @@ def index_asrg_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryArubaPaginatePagination", '404': "str", '500': "str", } @@ -36132,7 +36132,7 @@ def index_asrg_get_without_preload_content( return response_data.response - def _index_asrg_get_serialize( + def _index_aruba_get_serialize( self, page, limit, @@ -36300,7 +36300,7 @@ def _index_asrg_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/asrg', + resource_path='/v3/index/aruba', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -36317,7 +36317,7 @@ def _index_asrg_get_serialize( @validate_call - def index_assetnote_get( + def index_asrg_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -36355,10 +36355,10 @@ def index_assetnote_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination: - """Return vulnerability data stored in index \"assetnote\" + ) -> RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination: + """Return vulnerability data stored in index \"asrg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` :param page: set the page number of the response :type page: int @@ -36430,7 +36430,7 @@ def index_assetnote_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_assetnote_get_serialize( + _param = self._index_asrg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -36462,7 +36462,7 @@ def index_assetnote_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", '404': "str", '500': "str", } @@ -36478,7 +36478,7 @@ def index_assetnote_get( @validate_call - def index_assetnote_get_with_http_info( + def index_asrg_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -36516,10 +36516,10 @@ def index_assetnote_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination]: - """Return vulnerability data stored in index \"assetnote\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination]: + """Return vulnerability data stored in index \"asrg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` :param page: set the page number of the response :type page: int @@ -36591,7 +36591,7 @@ def index_assetnote_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_assetnote_get_serialize( + _param = self._index_asrg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -36623,7 +36623,7 @@ def index_assetnote_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", '404': "str", '500': "str", } @@ -36639,7 +36639,7 @@ def index_assetnote_get_with_http_info( @validate_call - def index_assetnote_get_without_preload_content( + def index_asrg_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -36678,9 +36678,9 @@ def index_assetnote_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"assetnote\" + """Return vulnerability data stored in index \"asrg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asrg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASRG Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asrg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asrg?cursor=` :param page: set the page number of the response :type page: int @@ -36752,7 +36752,7 @@ def index_assetnote_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_assetnote_get_serialize( + _param = self._index_asrg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -36784,7 +36784,7 @@ def index_assetnote_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryASRGPaginatePagination", '404': "str", '500': "str", } @@ -36795,7 +36795,7 @@ def index_assetnote_get_without_preload_content( return response_data.response - def _index_assetnote_get_serialize( + def _index_asrg_get_serialize( self, page, limit, @@ -36963,7 +36963,7 @@ def _index_assetnote_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/assetnote', + resource_path='/v3/index/asrg', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -36980,7 +36980,7 @@ def _index_assetnote_get_serialize( @validate_call - def index_asterisk_get( + def index_assetnote_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37018,10 +37018,10 @@ def index_asterisk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination: - """Return vulnerability data stored in index \"asterisk\" + ) -> RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination: + """Return vulnerability data stored in index \"assetnote\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` :param page: set the page number of the response :type page: int @@ -37093,7 +37093,7 @@ def index_asterisk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asterisk_get_serialize( + _param = self._index_assetnote_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37125,7 +37125,7 @@ def index_asterisk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", '404': "str", '500': "str", } @@ -37141,7 +37141,7 @@ def index_asterisk_get( @validate_call - def index_asterisk_get_with_http_info( + def index_assetnote_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37179,10 +37179,10 @@ def index_asterisk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination]: - """Return vulnerability data stored in index \"asterisk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination]: + """Return vulnerability data stored in index \"assetnote\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` :param page: set the page number of the response :type page: int @@ -37254,7 +37254,7 @@ def index_asterisk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asterisk_get_serialize( + _param = self._index_assetnote_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37286,7 +37286,7 @@ def index_asterisk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", '404': "str", '500': "str", } @@ -37302,7 +37302,7 @@ def index_asterisk_get_with_http_info( @validate_call - def index_asterisk_get_without_preload_content( + def index_assetnote_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37341,9 +37341,9 @@ def index_asterisk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"asterisk\" + """Return vulnerability data stored in index \"assetnote\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the assetnote index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AssetNote Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/assetnote?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/assetnote?cursor=` :param page: set the page number of the response :type page: int @@ -37415,7 +37415,7 @@ def index_asterisk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asterisk_get_serialize( + _param = self._index_assetnote_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37447,7 +37447,7 @@ def index_asterisk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAssetNotePaginatePagination", '404': "str", '500': "str", } @@ -37458,7 +37458,7 @@ def index_asterisk_get_without_preload_content( return response_data.response - def _index_asterisk_get_serialize( + def _index_assetnote_get_serialize( self, page, limit, @@ -37626,7 +37626,7 @@ def _index_asterisk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/asterisk', + resource_path='/v3/index/assetnote', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -37643,7 +37643,7 @@ def _index_asterisk_get_serialize( @validate_call - def index_astra_get( + def index_asterisk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37681,10 +37681,10 @@ def index_astra_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination: - """Return vulnerability data stored in index \"astra\" + ) -> RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination: + """Return vulnerability data stored in index \"asterisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` :param page: set the page number of the response :type page: int @@ -37756,7 +37756,7 @@ def index_astra_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_astra_get_serialize( + _param = self._index_asterisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37788,7 +37788,7 @@ def index_astra_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", '404': "str", '500': "str", } @@ -37804,7 +37804,7 @@ def index_astra_get( @validate_call - def index_astra_get_with_http_info( + def index_asterisk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -37842,10 +37842,10 @@ def index_astra_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination]: - """Return vulnerability data stored in index \"astra\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination]: + """Return vulnerability data stored in index \"asterisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` :param page: set the page number of the response :type page: int @@ -37917,7 +37917,7 @@ def index_astra_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_astra_get_serialize( + _param = self._index_asterisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -37949,7 +37949,7 @@ def index_astra_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", '404': "str", '500': "str", } @@ -37965,7 +37965,7 @@ def index_astra_get_with_http_info( @validate_call - def index_astra_get_without_preload_content( + def index_asterisk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -38004,9 +38004,9 @@ def index_astra_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"astra\" + """Return vulnerability data stored in index \"asterisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asterisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Asterisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asterisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asterisk?cursor=` :param page: set the page number of the response :type page: int @@ -38078,7 +38078,7 @@ def index_astra_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_astra_get_serialize( + _param = self._index_asterisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -38110,7 +38110,7 @@ def index_astra_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsteriskPaginatePagination", '404': "str", '500': "str", } @@ -38121,7 +38121,7 @@ def index_astra_get_without_preload_content( return response_data.response - def _index_astra_get_serialize( + def _index_asterisk_get_serialize( self, page, limit, @@ -38289,7 +38289,7 @@ def _index_astra_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/astra', + resource_path='/v3/index/asterisk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -38306,7 +38306,7 @@ def _index_astra_get_serialize( @validate_call - def index_asus_get( + def index_astra_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -38344,10 +38344,10 @@ def index_asus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination: - """Return vulnerability data stored in index \"asus\" + ) -> RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination: + """Return vulnerability data stored in index \"astra\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` :param page: set the page number of the response :type page: int @@ -38419,7 +38419,7 @@ def index_asus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asus_get_serialize( + _param = self._index_astra_get_serialize( page=page, limit=limit, cursor=cursor, @@ -38451,7 +38451,7 @@ def index_asus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", '404': "str", '500': "str", } @@ -38467,7 +38467,7 @@ def index_asus_get( @validate_call - def index_asus_get_with_http_info( + def index_astra_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -38505,10 +38505,10 @@ def index_asus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination]: - """Return vulnerability data stored in index \"asus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination]: + """Return vulnerability data stored in index \"astra\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` :param page: set the page number of the response :type page: int @@ -38580,7 +38580,7 @@ def index_asus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asus_get_serialize( + _param = self._index_astra_get_serialize( page=page, limit=limit, cursor=cursor, @@ -38612,7 +38612,7 @@ def index_asus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", '404': "str", '500': "str", } @@ -38628,7 +38628,7 @@ def index_asus_get_with_http_info( @validate_call - def index_asus_get_without_preload_content( + def index_astra_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -38667,9 +38667,9 @@ def index_asus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"asus\" + """Return vulnerability data stored in index \"astra\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the astra index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Astra Linux Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/astra?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/astra?cursor=` :param page: set the page number of the response :type page: int @@ -38741,7 +38741,7 @@ def index_asus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_asus_get_serialize( + _param = self._index_astra_get_serialize( page=page, limit=limit, cursor=cursor, @@ -38773,7 +38773,7 @@ def index_asus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAstraPaginatePagination", '404': "str", '500': "str", } @@ -38784,7 +38784,7 @@ def index_asus_get_without_preload_content( return response_data.response - def _index_asus_get_serialize( + def _index_astra_get_serialize( self, page, limit, @@ -38952,7 +38952,7 @@ def _index_asus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/asus', + resource_path='/v3/index/astra', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -38969,7 +38969,7 @@ def _index_asus_get_serialize( @validate_call - def index_atlassian_get( + def index_asus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39007,10 +39007,10 @@ def index_atlassian_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"atlassian\" + ) -> RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination: + """Return vulnerability data stored in index \"asus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` :param page: set the page number of the response :type page: int @@ -39082,7 +39082,7 @@ def index_atlassian_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_get_serialize( + _param = self._index_asus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39114,7 +39114,7 @@ def index_atlassian_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", '404': "str", '500': "str", } @@ -39130,7 +39130,7 @@ def index_atlassian_get( @validate_call - def index_atlassian_get_with_http_info( + def index_asus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39168,10 +39168,10 @@ def index_atlassian_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"atlassian\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination]: + """Return vulnerability data stored in index \"asus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` :param page: set the page number of the response :type page: int @@ -39243,7 +39243,7 @@ def index_atlassian_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_get_serialize( + _param = self._index_asus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39275,7 +39275,7 @@ def index_atlassian_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", '404': "str", '500': "str", } @@ -39291,7 +39291,7 @@ def index_atlassian_get_with_http_info( @validate_call - def index_atlassian_get_without_preload_content( + def index_asus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39330,9 +39330,9 @@ def index_atlassian_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"atlassian\" + """Return vulnerability data stored in index \"asus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the asus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ASUSTek Computer Inc. ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/asus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/asus?cursor=` :param page: set the page number of the response :type page: int @@ -39404,7 +39404,7 @@ def index_atlassian_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_get_serialize( + _param = self._index_asus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39436,7 +39436,7 @@ def index_atlassian_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAsusPaginatePagination", '404': "str", '500': "str", } @@ -39447,7 +39447,7 @@ def index_atlassian_get_without_preload_content( return response_data.response - def _index_atlassian_get_serialize( + def _index_asus_get_serialize( self, page, limit, @@ -39615,7 +39615,7 @@ def _index_atlassian_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/atlassian', + resource_path='/v3/index/asus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -39632,7 +39632,7 @@ def _index_atlassian_get_serialize( @validate_call - def index_atlassian_vulns_get( + def index_atlassian_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39670,10 +39670,10 @@ def index_atlassian_vulns_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination: - """Return vulnerability data stored in index \"atlassian-vulns\" + ) -> RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"atlassian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` :param page: set the page number of the response :type page: int @@ -39745,7 +39745,7 @@ def index_atlassian_vulns_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_vulns_get_serialize( + _param = self._index_atlassian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39777,7 +39777,7 @@ def index_atlassian_vulns_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -39793,7 +39793,7 @@ def index_atlassian_vulns_get( @validate_call - def index_atlassian_vulns_get_with_http_info( + def index_atlassian_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39831,10 +39831,10 @@ def index_atlassian_vulns_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination]: - """Return vulnerability data stored in index \"atlassian-vulns\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"atlassian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` :param page: set the page number of the response :type page: int @@ -39906,7 +39906,7 @@ def index_atlassian_vulns_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_vulns_get_serialize( + _param = self._index_atlassian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -39938,7 +39938,7 @@ def index_atlassian_vulns_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -39954,7 +39954,7 @@ def index_atlassian_vulns_get_with_http_info( @validate_call - def index_atlassian_vulns_get_without_preload_content( + def index_atlassian_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -39993,9 +39993,9 @@ def index_atlassian_vulns_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"atlassian-vulns\" + """Return vulnerability data stored in index \"atlassian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian?cursor=` :param page: set the page number of the response :type page: int @@ -40067,7 +40067,7 @@ def index_atlassian_vulns_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atlassian_vulns_get_serialize( + _param = self._index_atlassian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -40099,7 +40099,7 @@ def index_atlassian_vulns_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -40110,7 +40110,7 @@ def index_atlassian_vulns_get_without_preload_content( return response_data.response - def _index_atlassian_vulns_get_serialize( + def _index_atlassian_get_serialize( self, page, limit, @@ -40278,7 +40278,7 @@ def _index_atlassian_vulns_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/atlassian-vulns', + resource_path='/v3/index/atlassian', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -40295,7 +40295,7 @@ def _index_atlassian_vulns_get_serialize( @validate_call - def index_atredis_get( + def index_atlassian_vulns_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -40333,10 +40333,10 @@ def index_atredis_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination: - """Return vulnerability data stored in index \"atredis\" + ) -> RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination: + """Return vulnerability data stored in index \"atlassian-vulns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` :param page: set the page number of the response :type page: int @@ -40408,7 +40408,7 @@ def index_atredis_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atredis_get_serialize( + _param = self._index_atlassian_vulns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -40440,7 +40440,7 @@ def index_atredis_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", '404': "str", '500': "str", } @@ -40456,7 +40456,7 @@ def index_atredis_get( @validate_call - def index_atredis_get_with_http_info( + def index_atlassian_vulns_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -40494,10 +40494,10 @@ def index_atredis_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination]: - """Return vulnerability data stored in index \"atredis\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination]: + """Return vulnerability data stored in index \"atlassian-vulns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` :param page: set the page number of the response :type page: int @@ -40569,7 +40569,7 @@ def index_atredis_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atredis_get_serialize( + _param = self._index_atlassian_vulns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -40601,7 +40601,7 @@ def index_atredis_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", '404': "str", '500': "str", } @@ -40617,7 +40617,7 @@ def index_atredis_get_with_http_info( @validate_call - def index_atredis_get_without_preload_content( + def index_atlassian_vulns_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -40656,9 +40656,9 @@ def index_atredis_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"atredis\" + """Return vulnerability data stored in index \"atlassian-vulns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atlassian-vulns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atlassian Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atlassian-vulns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atlassian-vulns?cursor=` :param page: set the page number of the response :type page: int @@ -40730,7 +40730,7 @@ def index_atredis_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_atredis_get_serialize( + _param = self._index_atlassian_vulns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -40762,7 +40762,7 @@ def index_atredis_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtlassianVulnPaginatePagination", '404': "str", '500': "str", } @@ -40773,7 +40773,7 @@ def index_atredis_get_without_preload_content( return response_data.response - def _index_atredis_get_serialize( + def _index_atlassian_vulns_get_serialize( self, page, limit, @@ -40941,7 +40941,7 @@ def _index_atredis_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/atredis', + resource_path='/v3/index/atlassian-vulns', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -40958,7 +40958,7 @@ def _index_atredis_get_serialize( @validate_call - def index_audiocodes_get( + def index_atredis_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -40996,10 +40996,10 @@ def index_audiocodes_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination: - """Return vulnerability data stored in index \"audiocodes\" + ) -> RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination: + """Return vulnerability data stored in index \"atredis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` :param page: set the page number of the response :type page: int @@ -41071,7 +41071,7 @@ def index_audiocodes_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_audiocodes_get_serialize( + _param = self._index_atredis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41103,7 +41103,7 @@ def index_audiocodes_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", '404': "str", '500': "str", } @@ -41119,7 +41119,7 @@ def index_audiocodes_get( @validate_call - def index_audiocodes_get_with_http_info( + def index_atredis_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41157,10 +41157,10 @@ def index_audiocodes_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination]: - """Return vulnerability data stored in index \"audiocodes\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination]: + """Return vulnerability data stored in index \"atredis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` :param page: set the page number of the response :type page: int @@ -41232,7 +41232,7 @@ def index_audiocodes_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_audiocodes_get_serialize( + _param = self._index_atredis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41264,7 +41264,7 @@ def index_audiocodes_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", '404': "str", '500': "str", } @@ -41280,7 +41280,7 @@ def index_audiocodes_get_with_http_info( @validate_call - def index_audiocodes_get_without_preload_content( + def index_atredis_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41319,9 +41319,9 @@ def index_audiocodes_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"audiocodes\" + """Return vulnerability data stored in index \"atredis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the atredis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Atredis Partners Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/atredis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/atredis?cursor=` :param page: set the page number of the response :type page: int @@ -41393,7 +41393,7 @@ def index_audiocodes_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_audiocodes_get_serialize( + _param = self._index_atredis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41425,7 +41425,7 @@ def index_audiocodes_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAtredisPaginatePagination", '404': "str", '500': "str", } @@ -41436,7 +41436,7 @@ def index_audiocodes_get_without_preload_content( return response_data.response - def _index_audiocodes_get_serialize( + def _index_atredis_get_serialize( self, page, limit, @@ -41604,7 +41604,7 @@ def _index_audiocodes_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/audiocodes', + resource_path='/v3/index/atredis', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -41621,7 +41621,7 @@ def _index_audiocodes_get_serialize( @validate_call - def index_auscert_get( + def index_audiocodes_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41659,10 +41659,10 @@ def index_auscert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination: - """Return vulnerability data stored in index \"auscert\" + ) -> RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination: + """Return vulnerability data stored in index \"audiocodes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` :param page: set the page number of the response :type page: int @@ -41734,7 +41734,7 @@ def index_auscert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_auscert_get_serialize( + _param = self._index_audiocodes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41766,7 +41766,7 @@ def index_auscert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", '404': "str", '500': "str", } @@ -41782,7 +41782,7 @@ def index_auscert_get( @validate_call - def index_auscert_get_with_http_info( + def index_audiocodes_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41820,10 +41820,10 @@ def index_auscert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination]: - """Return vulnerability data stored in index \"auscert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination]: + """Return vulnerability data stored in index \"audiocodes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` :param page: set the page number of the response :type page: int @@ -41895,7 +41895,7 @@ def index_auscert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_auscert_get_serialize( + _param = self._index_audiocodes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -41927,7 +41927,7 @@ def index_auscert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", '404': "str", '500': "str", } @@ -41943,7 +41943,7 @@ def index_auscert_get_with_http_info( @validate_call - def index_auscert_get_without_preload_content( + def index_audiocodes_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -41982,9 +41982,9 @@ def index_auscert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"auscert\" + """Return vulnerability data stored in index \"audiocodes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the audiocodes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AudioCodes Product Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/audiocodes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/audiocodes?cursor=` :param page: set the page number of the response :type page: int @@ -42056,7 +42056,7 @@ def index_auscert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_auscert_get_serialize( + _param = self._index_audiocodes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -42088,7 +42088,7 @@ def index_auscert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAudiocodesPaginatePagination", '404': "str", '500': "str", } @@ -42099,7 +42099,7 @@ def index_auscert_get_without_preload_content( return response_data.response - def _index_auscert_get_serialize( + def _index_audiocodes_get_serialize( self, page, limit, @@ -42267,7 +42267,7 @@ def _index_auscert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/auscert', + resource_path='/v3/index/audiocodes', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -42284,7 +42284,7 @@ def _index_auscert_get_serialize( @validate_call - def index_austin_hackers_get( + def index_auscert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -42322,10 +42322,10 @@ def index_austin_hackers_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"austin-hackers\" + ) -> RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination: + """Return vulnerability data stored in index \"auscert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` :param page: set the page number of the response :type page: int @@ -42397,7 +42397,7 @@ def index_austin_hackers_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_austin_hackers_get_serialize( + _param = self._index_auscert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -42429,7 +42429,7 @@ def index_austin_hackers_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", '404': "str", '500': "str", } @@ -42445,7 +42445,7 @@ def index_austin_hackers_get( @validate_call - def index_austin_hackers_get_with_http_info( + def index_auscert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -42483,10 +42483,10 @@ def index_austin_hackers_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"austin-hackers\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination]: + """Return vulnerability data stored in index \"auscert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` :param page: set the page number of the response :type page: int @@ -42558,7 +42558,7 @@ def index_austin_hackers_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_austin_hackers_get_serialize( + _param = self._index_auscert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -42590,7 +42590,7 @@ def index_austin_hackers_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", '404': "str", '500': "str", } @@ -42606,7 +42606,7 @@ def index_austin_hackers_get_with_http_info( @validate_call - def index_austin_hackers_get_without_preload_content( + def index_auscert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -42645,9 +42645,9 @@ def index_austin_hackers_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"austin-hackers\" + """Return vulnerability data stored in index \"auscert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the auscert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AusCERT Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/auscert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/auscert?cursor=` :param page: set the page number of the response :type page: int @@ -42719,7 +42719,7 @@ def index_austin_hackers_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_austin_hackers_get_serialize( + _param = self._index_auscert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -42751,7 +42751,7 @@ def index_austin_hackers_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAusCertPaginatePagination", '404': "str", '500': "str", } @@ -42762,7 +42762,7 @@ def index_austin_hackers_get_without_preload_content( return response_data.response - def _index_austin_hackers_get_serialize( + def _index_auscert_get_serialize( self, page, limit, @@ -42930,7 +42930,7 @@ def _index_austin_hackers_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/austin-hackers', + resource_path='/v3/index/auscert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -42947,7 +42947,7 @@ def _index_austin_hackers_get_serialize( @validate_call - def index_autodesk_get( + def index_austin_hackers_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -42985,10 +42985,10 @@ def index_autodesk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination: - """Return vulnerability data stored in index \"autodesk\" + ) -> RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"austin-hackers\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` :param page: set the page number of the response :type page: int @@ -43060,7 +43060,7 @@ def index_autodesk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_autodesk_get_serialize( + _param = self._index_austin_hackers_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43092,7 +43092,7 @@ def index_autodesk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -43108,7 +43108,7 @@ def index_autodesk_get( @validate_call - def index_autodesk_get_with_http_info( + def index_austin_hackers_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43146,10 +43146,10 @@ def index_autodesk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination]: - """Return vulnerability data stored in index \"autodesk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"austin-hackers\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` :param page: set the page number of the response :type page: int @@ -43221,7 +43221,7 @@ def index_autodesk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_autodesk_get_serialize( + _param = self._index_austin_hackers_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43253,7 +43253,7 @@ def index_autodesk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -43269,7 +43269,7 @@ def index_autodesk_get_with_http_info( @validate_call - def index_autodesk_get_without_preload_content( + def index_austin_hackers_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43308,9 +43308,9 @@ def index_autodesk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"autodesk\" + """Return vulnerability data stored in index \"austin-hackers\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the austin-hackers index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AHA! — Austin Hackers Anonymous ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/austin-hackers?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/austin-hackers?cursor=` :param page: set the page number of the response :type page: int @@ -43382,7 +43382,7 @@ def index_autodesk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_autodesk_get_serialize( + _param = self._index_austin_hackers_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43414,7 +43414,7 @@ def index_autodesk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAustinHackersAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -43425,7 +43425,7 @@ def index_autodesk_get_without_preload_content( return response_data.response - def _index_autodesk_get_serialize( + def _index_austin_hackers_get_serialize( self, page, limit, @@ -43593,7 +43593,7 @@ def _index_autodesk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/autodesk', + resource_path='/v3/index/austin-hackers', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -43610,7 +43610,7 @@ def _index_autodesk_get_serialize( @validate_call - def index_avaya_get( + def index_autodesk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43648,10 +43648,10 @@ def index_avaya_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination: - """Return vulnerability data stored in index \"avaya\" + ) -> RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination: + """Return vulnerability data stored in index \"autodesk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` :param page: set the page number of the response :type page: int @@ -43723,7 +43723,7 @@ def index_avaya_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avaya_get_serialize( + _param = self._index_autodesk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43755,7 +43755,7 @@ def index_avaya_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", '404': "str", '500': "str", } @@ -43771,7 +43771,7 @@ def index_avaya_get( @validate_call - def index_avaya_get_with_http_info( + def index_autodesk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43809,10 +43809,10 @@ def index_avaya_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination]: - """Return vulnerability data stored in index \"avaya\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination]: + """Return vulnerability data stored in index \"autodesk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` :param page: set the page number of the response :type page: int @@ -43884,7 +43884,7 @@ def index_avaya_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avaya_get_serialize( + _param = self._index_autodesk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -43916,7 +43916,7 @@ def index_avaya_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", '404': "str", '500': "str", } @@ -43932,7 +43932,7 @@ def index_avaya_get_with_http_info( @validate_call - def index_avaya_get_without_preload_content( + def index_autodesk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -43971,9 +43971,9 @@ def index_avaya_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"avaya\" + """Return vulnerability data stored in index \"autodesk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the autodesk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Autodesk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/autodesk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/autodesk?cursor=` :param page: set the page number of the response :type page: int @@ -44045,7 +44045,7 @@ def index_avaya_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avaya_get_serialize( + _param = self._index_autodesk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -44077,7 +44077,7 @@ def index_avaya_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAutodeskPaginatePagination", '404': "str", '500': "str", } @@ -44088,7 +44088,7 @@ def index_avaya_get_without_preload_content( return response_data.response - def _index_avaya_get_serialize( + def _index_autodesk_get_serialize( self, page, limit, @@ -44256,7 +44256,7 @@ def _index_avaya_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/avaya', + resource_path='/v3/index/autodesk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -44273,7 +44273,7 @@ def _index_avaya_get_serialize( @validate_call - def index_aveva_get( + def index_avaya_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -44311,10 +44311,10 @@ def index_aveva_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"aveva\" + ) -> RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination: + """Return vulnerability data stored in index \"avaya\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` :param page: set the page number of the response :type page: int @@ -44386,7 +44386,7 @@ def index_aveva_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aveva_get_serialize( + _param = self._index_avaya_get_serialize( page=page, limit=limit, cursor=cursor, @@ -44418,7 +44418,7 @@ def index_aveva_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", '404': "str", '500': "str", } @@ -44434,7 +44434,7 @@ def index_aveva_get( @validate_call - def index_aveva_get_with_http_info( + def index_avaya_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -44472,10 +44472,10 @@ def index_aveva_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"aveva\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination]: + """Return vulnerability data stored in index \"avaya\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` :param page: set the page number of the response :type page: int @@ -44547,7 +44547,7 @@ def index_aveva_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aveva_get_serialize( + _param = self._index_avaya_get_serialize( page=page, limit=limit, cursor=cursor, @@ -44579,7 +44579,7 @@ def index_aveva_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", '404': "str", '500': "str", } @@ -44595,7 +44595,7 @@ def index_aveva_get_with_http_info( @validate_call - def index_aveva_get_without_preload_content( + def index_avaya_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -44634,9 +44634,9 @@ def index_aveva_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"aveva\" + """Return vulnerability data stored in index \"avaya\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avaya index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avaya Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avaya?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avaya?cursor=` :param page: set the page number of the response :type page: int @@ -44708,7 +44708,7 @@ def index_aveva_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aveva_get_serialize( + _param = self._index_avaya_get_serialize( page=page, limit=limit, cursor=cursor, @@ -44740,7 +44740,7 @@ def index_aveva_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvayaPaginatePagination", '404': "str", '500': "str", } @@ -44751,7 +44751,7 @@ def index_aveva_get_without_preload_content( return response_data.response - def _index_aveva_get_serialize( + def _index_avaya_get_serialize( self, page, limit, @@ -44919,7 +44919,7 @@ def _index_aveva_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/aveva', + resource_path='/v3/index/avaya', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -44936,7 +44936,7 @@ def _index_aveva_get_serialize( @validate_call - def index_avidml_advs_get( + def index_aveva_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -44974,10 +44974,10 @@ def index_avidml_advs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination: - """Return vulnerability data stored in index \"avidml-advs\" + ) -> RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"aveva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` :param page: set the page number of the response :type page: int @@ -45049,7 +45049,7 @@ def index_avidml_advs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avidml_advs_get_serialize( + _param = self._index_aveva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45081,7 +45081,7 @@ def index_avidml_advs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -45097,7 +45097,7 @@ def index_avidml_advs_get( @validate_call - def index_avidml_advs_get_with_http_info( + def index_aveva_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45135,10 +45135,10 @@ def index_avidml_advs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination]: - """Return vulnerability data stored in index \"avidml-advs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"aveva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` :param page: set the page number of the response :type page: int @@ -45210,7 +45210,7 @@ def index_avidml_advs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avidml_advs_get_serialize( + _param = self._index_aveva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45242,7 +45242,7 @@ def index_avidml_advs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -45258,7 +45258,7 @@ def index_avidml_advs_get_with_http_info( @validate_call - def index_avidml_advs_get_without_preload_content( + def index_aveva_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45297,9 +45297,9 @@ def index_avidml_advs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"avidml-advs\" + """Return vulnerability data stored in index \"aveva\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aveva index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AVEVA Group Limited ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aveva?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aveva?cursor=` :param page: set the page number of the response :type page: int @@ -45371,7 +45371,7 @@ def index_avidml_advs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avidml_advs_get_serialize( + _param = self._index_aveva_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45403,7 +45403,7 @@ def index_avidml_advs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVEVAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -45414,7 +45414,7 @@ def index_avidml_advs_get_without_preload_content( return response_data.response - def _index_avidml_advs_get_serialize( + def _index_aveva_get_serialize( self, page, limit, @@ -45582,7 +45582,7 @@ def _index_avidml_advs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/avidml-advs', + resource_path='/v3/index/aveva', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -45599,7 +45599,7 @@ def _index_avidml_advs_get_serialize( @validate_call - def index_avigilon_get( + def index_avidml_advs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45637,10 +45637,10 @@ def index_avigilon_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination: - """Return vulnerability data stored in index \"avigilon\" + ) -> RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination: + """Return vulnerability data stored in index \"avidml-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` :param page: set the page number of the response :type page: int @@ -45712,7 +45712,7 @@ def index_avigilon_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avigilon_get_serialize( + _param = self._index_avidml_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45744,7 +45744,7 @@ def index_avigilon_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", '404': "str", '500': "str", } @@ -45760,7 +45760,7 @@ def index_avigilon_get( @validate_call - def index_avigilon_get_with_http_info( + def index_avidml_advs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45798,10 +45798,10 @@ def index_avigilon_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination]: - """Return vulnerability data stored in index \"avigilon\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination]: + """Return vulnerability data stored in index \"avidml-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` :param page: set the page number of the response :type page: int @@ -45873,7 +45873,7 @@ def index_avigilon_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avigilon_get_serialize( + _param = self._index_avidml_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -45905,7 +45905,7 @@ def index_avigilon_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", '404': "str", '500': "str", } @@ -45921,7 +45921,7 @@ def index_avigilon_get_with_http_info( @validate_call - def index_avigilon_get_without_preload_content( + def index_avidml_advs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -45960,9 +45960,9 @@ def index_avigilon_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"avigilon\" + """Return vulnerability data stored in index \"avidml-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avidml-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AI Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avidml-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avidml-advs?cursor=` :param page: set the page number of the response :type page: int @@ -46034,7 +46034,7 @@ def index_avigilon_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_avigilon_get_serialize( + _param = self._index_avidml_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -46066,7 +46066,7 @@ def index_avigilon_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAVIDMLAdvsPaginatePagination", '404': "str", '500': "str", } @@ -46077,7 +46077,7 @@ def index_avigilon_get_without_preload_content( return response_data.response - def _index_avigilon_get_serialize( + def _index_avidml_advs_get_serialize( self, page, limit, @@ -46245,7 +46245,7 @@ def _index_avigilon_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/avigilon', + resource_path='/v3/index/avidml-advs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -46262,7 +46262,7 @@ def _index_avigilon_get_serialize( @validate_call - def index_aws_get( + def index_avigilon_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -46300,10 +46300,10 @@ def index_aws_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination: - """Return vulnerability data stored in index \"aws\" + ) -> RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination: + """Return vulnerability data stored in index \"avigilon\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` :param page: set the page number of the response :type page: int @@ -46375,7 +46375,7 @@ def index_aws_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_get_serialize( + _param = self._index_avigilon_get_serialize( page=page, limit=limit, cursor=cursor, @@ -46407,7 +46407,7 @@ def index_aws_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", '404': "str", '500': "str", } @@ -46423,7 +46423,7 @@ def index_aws_get( @validate_call - def index_aws_get_with_http_info( + def index_avigilon_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -46461,10 +46461,10 @@ def index_aws_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination]: - """Return vulnerability data stored in index \"aws\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination]: + """Return vulnerability data stored in index \"avigilon\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` :param page: set the page number of the response :type page: int @@ -46536,7 +46536,7 @@ def index_aws_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_get_serialize( + _param = self._index_avigilon_get_serialize( page=page, limit=limit, cursor=cursor, @@ -46568,7 +46568,7 @@ def index_aws_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", '404': "str", '500': "str", } @@ -46584,7 +46584,7 @@ def index_aws_get_with_http_info( @validate_call - def index_aws_get_without_preload_content( + def index_avigilon_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -46623,9 +46623,9 @@ def index_aws_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"aws\" + """Return vulnerability data stored in index \"avigilon\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the avigilon index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Avigilon Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/avigilon?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/avigilon?cursor=` :param page: set the page number of the response :type page: int @@ -46697,7 +46697,7 @@ def index_aws_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_get_serialize( + _param = self._index_avigilon_get_serialize( page=page, limit=limit, cursor=cursor, @@ -46729,7 +46729,7 @@ def index_aws_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAvigilonPaginatePagination", '404': "str", '500': "str", } @@ -46740,7 +46740,7 @@ def index_aws_get_without_preload_content( return response_data.response - def _index_aws_get_serialize( + def _index_avigilon_get_serialize( self, page, limit, @@ -46908,7 +46908,7 @@ def _index_aws_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/aws', + resource_path='/v3/index/avigilon', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -46925,7 +46925,7 @@ def _index_aws_get_serialize( @validate_call - def index_aws_rds_get( + def index_aws_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -46963,10 +46963,10 @@ def index_aws_rds_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"aws-rds\" + ) -> RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination: + """Return vulnerability data stored in index \"aws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` :param page: set the page number of the response :type page: int @@ -47038,7 +47038,7 @@ def index_aws_rds_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_rds_get_serialize( + _param = self._index_aws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47070,7 +47070,7 @@ def index_aws_rds_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", '404': "str", '500': "str", } @@ -47086,7 +47086,7 @@ def index_aws_rds_get( @validate_call - def index_aws_rds_get_with_http_info( + def index_aws_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47124,10 +47124,10 @@ def index_aws_rds_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"aws-rds\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination]: + """Return vulnerability data stored in index \"aws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` :param page: set the page number of the response :type page: int @@ -47199,7 +47199,7 @@ def index_aws_rds_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_rds_get_serialize( + _param = self._index_aws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47231,7 +47231,7 @@ def index_aws_rds_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", '404': "str", '500': "str", } @@ -47247,7 +47247,7 @@ def index_aws_rds_get_with_http_info( @validate_call - def index_aws_rds_get_without_preload_content( + def index_aws_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47286,9 +47286,9 @@ def index_aws_rds_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"aws-rds\" + """Return vulnerability data stored in index \"aws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws?cursor=` :param page: set the page number of the response :type page: int @@ -47360,7 +47360,7 @@ def index_aws_rds_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_aws_rds_get_serialize( + _param = self._index_aws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47392,7 +47392,7 @@ def index_aws_rds_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAWSPaginatePagination", '404': "str", '500': "str", } @@ -47403,7 +47403,7 @@ def index_aws_rds_get_without_preload_content( return response_data.response - def _index_aws_rds_get_serialize( + def _index_aws_get_serialize( self, page, limit, @@ -47571,7 +47571,7 @@ def _index_aws_rds_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/aws-rds', + resource_path='/v3/index/aws', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -47588,7 +47588,7 @@ def _index_aws_rds_get_serialize( @validate_call - def index_axis_get( + def index_aws_rds_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47626,10 +47626,10 @@ def index_axis_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination: - """Return vulnerability data stored in index \"axis\" + ) -> RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"aws-rds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` :param page: set the page number of the response :type page: int @@ -47701,7 +47701,7 @@ def index_axis_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_axis_get_serialize( + _param = self._index_aws_rds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47733,7 +47733,7 @@ def index_axis_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -47749,7 +47749,7 @@ def index_axis_get( @validate_call - def index_axis_get_with_http_info( + def index_aws_rds_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47787,10 +47787,10 @@ def index_axis_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination]: - """Return vulnerability data stored in index \"axis\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"aws-rds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` :param page: set the page number of the response :type page: int @@ -47862,7 +47862,7 @@ def index_axis_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_axis_get_serialize( + _param = self._index_aws_rds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -47894,7 +47894,7 @@ def index_axis_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -47910,7 +47910,7 @@ def index_axis_get_with_http_info( @validate_call - def index_axis_get_without_preload_content( + def index_aws_rds_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -47949,9 +47949,9 @@ def index_axis_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"axis\" + """Return vulnerability data stored in index \"aws-rds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the aws-rds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** AWS Relational Database Service Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/aws-rds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/aws-rds?cursor=` :param page: set the page number of the response :type page: int @@ -48023,7 +48023,7 @@ def index_axis_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_axis_get_serialize( + _param = self._index_aws_rds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -48055,7 +48055,7 @@ def index_axis_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -48066,7 +48066,7 @@ def index_axis_get_without_preload_content( return response_data.response - def _index_axis_get_serialize( + def _index_aws_rds_get_serialize( self, page, limit, @@ -48234,7 +48234,7 @@ def _index_axis_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/axis', + resource_path='/v3/index/aws-rds', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -48251,7 +48251,7 @@ def _index_axis_get_serialize( @validate_call - def index_azul_get( + def index_axis_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -48289,10 +48289,10 @@ def index_azul_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination: - """Return vulnerability data stored in index \"azul\" + ) -> RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination: + """Return vulnerability data stored in index \"axis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` :param page: set the page number of the response :type page: int @@ -48364,7 +48364,7 @@ def index_azul_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_azul_get_serialize( + _param = self._index_axis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -48396,7 +48396,7 @@ def index_azul_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", '404': "str", '500': "str", } @@ -48412,7 +48412,7 @@ def index_azul_get( @validate_call - def index_azul_get_with_http_info( + def index_axis_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -48450,10 +48450,10 @@ def index_azul_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination]: - """Return vulnerability data stored in index \"azul\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination]: + """Return vulnerability data stored in index \"axis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` :param page: set the page number of the response :type page: int @@ -48525,7 +48525,7 @@ def index_azul_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_azul_get_serialize( + _param = self._index_axis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -48557,7 +48557,7 @@ def index_azul_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", '404': "str", '500': "str", } @@ -48573,7 +48573,7 @@ def index_azul_get_with_http_info( @validate_call - def index_azul_get_without_preload_content( + def index_axis_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -48612,9 +48612,9 @@ def index_azul_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"azul\" + """Return vulnerability data stored in index \"axis\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the axis index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Axis OS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/axis?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/axis?cursor=` :param page: set the page number of the response :type page: int @@ -48686,7 +48686,7 @@ def index_azul_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_azul_get_serialize( + _param = self._index_axis_get_serialize( page=page, limit=limit, cursor=cursor, @@ -48718,7 +48718,7 @@ def index_azul_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAxisPaginatePagination", '404': "str", '500': "str", } @@ -48729,7 +48729,7 @@ def index_azul_get_without_preload_content( return response_data.response - def _index_azul_get_serialize( + def _index_axis_get_serialize( self, page, limit, @@ -48897,7 +48897,7 @@ def _index_azul_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/azul', + resource_path='/v3/index/axis', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -48914,7 +48914,7 @@ def _index_azul_get_serialize( @validate_call - def index_bandr_get( + def index_azul_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -48952,10 +48952,10 @@ def index_bandr_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination: - """Return vulnerability data stored in index \"bandr\" + ) -> RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination: + """Return vulnerability data stored in index \"azul\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` :param page: set the page number of the response :type page: int @@ -49027,7 +49027,7 @@ def index_bandr_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bandr_get_serialize( + _param = self._index_azul_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49059,7 +49059,7 @@ def index_bandr_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", '404': "str", '500': "str", } @@ -49075,7 +49075,7 @@ def index_bandr_get( @validate_call - def index_bandr_get_with_http_info( + def index_azul_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49113,10 +49113,10 @@ def index_bandr_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination]: - """Return vulnerability data stored in index \"bandr\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination]: + """Return vulnerability data stored in index \"azul\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` :param page: set the page number of the response :type page: int @@ -49188,7 +49188,7 @@ def index_bandr_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bandr_get_serialize( + _param = self._index_azul_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49220,7 +49220,7 @@ def index_bandr_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", '404': "str", '500': "str", } @@ -49236,7 +49236,7 @@ def index_bandr_get_with_http_info( @validate_call - def index_bandr_get_without_preload_content( + def index_azul_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49275,9 +49275,9 @@ def index_bandr_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bandr\" + """Return vulnerability data stored in index \"azul\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the azul index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Azul Common Vulnerabilities and Exposures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/azul?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/azul?cursor=` :param page: set the page number of the response :type page: int @@ -49349,7 +49349,7 @@ def index_bandr_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bandr_get_serialize( + _param = self._index_azul_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49381,7 +49381,7 @@ def index_bandr_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAzulPaginatePagination", '404': "str", '500': "str", } @@ -49392,7 +49392,7 @@ def index_bandr_get_without_preload_content( return response_data.response - def _index_bandr_get_serialize( + def _index_azul_get_serialize( self, page, limit, @@ -49560,7 +49560,7 @@ def _index_bandr_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bandr', + resource_path='/v3/index/azul', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -49577,7 +49577,7 @@ def _index_bandr_get_serialize( @validate_call - def index_baxter_get( + def index_bandr_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49615,10 +49615,10 @@ def index_baxter_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"baxter\" + ) -> RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination: + """Return vulnerability data stored in index \"bandr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` :param page: set the page number of the response :type page: int @@ -49690,7 +49690,7 @@ def index_baxter_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_baxter_get_serialize( + _param = self._index_bandr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49722,7 +49722,7 @@ def index_baxter_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", '404': "str", '500': "str", } @@ -49738,7 +49738,7 @@ def index_baxter_get( @validate_call - def index_baxter_get_with_http_info( + def index_bandr_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49776,10 +49776,10 @@ def index_baxter_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"baxter\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination]: + """Return vulnerability data stored in index \"bandr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` :param page: set the page number of the response :type page: int @@ -49851,7 +49851,7 @@ def index_baxter_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_baxter_get_serialize( + _param = self._index_bandr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -49883,7 +49883,7 @@ def index_baxter_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", '404': "str", '500': "str", } @@ -49899,7 +49899,7 @@ def index_baxter_get_with_http_info( @validate_call - def index_baxter_get_without_preload_content( + def index_bandr_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -49938,9 +49938,9 @@ def index_baxter_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"baxter\" + """Return vulnerability data stored in index \"bandr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bandr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B&R Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bandr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bandr?cursor=` :param page: set the page number of the response :type page: int @@ -50012,7 +50012,7 @@ def index_baxter_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_baxter_get_serialize( + _param = self._index_bandr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -50044,7 +50044,7 @@ def index_baxter_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBandrPaginatePagination", '404': "str", '500': "str", } @@ -50055,7 +50055,7 @@ def index_baxter_get_without_preload_content( return response_data.response - def _index_baxter_get_serialize( + def _index_bandr_get_serialize( self, page, limit, @@ -50223,7 +50223,7 @@ def _index_baxter_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/baxter', + resource_path='/v3/index/bandr', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -50240,7 +50240,7 @@ def _index_baxter_get_serialize( @validate_call - def index_bbraun_get( + def index_baxter_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -50278,10 +50278,10 @@ def index_bbraun_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"bbraun\" + ) -> RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"baxter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` :param page: set the page number of the response :type page: int @@ -50353,7 +50353,7 @@ def index_bbraun_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bbraun_get_serialize( + _param = self._index_baxter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -50385,7 +50385,7 @@ def index_bbraun_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -50401,7 +50401,7 @@ def index_bbraun_get( @validate_call - def index_bbraun_get_with_http_info( + def index_baxter_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -50439,10 +50439,10 @@ def index_bbraun_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"bbraun\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"baxter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` :param page: set the page number of the response :type page: int @@ -50514,7 +50514,7 @@ def index_bbraun_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bbraun_get_serialize( + _param = self._index_baxter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -50546,7 +50546,7 @@ def index_bbraun_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -50562,7 +50562,7 @@ def index_bbraun_get_with_http_info( @validate_call - def index_bbraun_get_without_preload_content( + def index_baxter_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -50601,9 +50601,9 @@ def index_bbraun_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bbraun\" + """Return vulnerability data stored in index \"baxter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the baxter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Baxter Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/baxter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/baxter?cursor=` :param page: set the page number of the response :type page: int @@ -50675,7 +50675,7 @@ def index_bbraun_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bbraun_get_serialize( + _param = self._index_baxter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -50707,7 +50707,7 @@ def index_bbraun_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBaxterAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -50718,7 +50718,7 @@ def index_bbraun_get_without_preload_content( return response_data.response - def _index_bbraun_get_serialize( + def _index_baxter_get_serialize( self, page, limit, @@ -50886,7 +50886,7 @@ def _index_bbraun_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bbraun', + resource_path='/v3/index/baxter', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -50903,7 +50903,7 @@ def _index_bbraun_get_serialize( @validate_call - def index_bd_get( + def index_bbraun_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -50941,10 +50941,10 @@ def index_bd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"bd\" + ) -> RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"bbraun\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` :param page: set the page number of the response :type page: int @@ -51016,7 +51016,7 @@ def index_bd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bd_get_serialize( + _param = self._index_bbraun_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51048,7 +51048,7 @@ def index_bd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51064,7 +51064,7 @@ def index_bd_get( @validate_call - def index_bd_get_with_http_info( + def index_bbraun_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51102,10 +51102,10 @@ def index_bd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"bd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"bbraun\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` :param page: set the page number of the response :type page: int @@ -51177,7 +51177,7 @@ def index_bd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bd_get_serialize( + _param = self._index_bbraun_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51209,7 +51209,7 @@ def index_bd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51225,7 +51225,7 @@ def index_bd_get_with_http_info( @validate_call - def index_bd_get_without_preload_content( + def index_bbraun_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51264,9 +51264,9 @@ def index_bd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bd\" + """Return vulnerability data stored in index \"bbraun\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bbraun index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** B. Braun Medical Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bbraun?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bbraun?cursor=` :param page: set the page number of the response :type page: int @@ -51338,7 +51338,7 @@ def index_bd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bd_get_serialize( + _param = self._index_bbraun_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51370,7 +51370,7 @@ def index_bd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBBraunAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51381,7 +51381,7 @@ def index_bd_get_without_preload_content( return response_data.response - def _index_bd_get_serialize( + def _index_bbraun_get_serialize( self, page, limit, @@ -51549,7 +51549,7 @@ def _index_bd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bd', + resource_path='/v3/index/bbraun', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -51566,7 +51566,7 @@ def _index_bd_get_serialize( @validate_call - def index_bdu_get( + def index_bd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51604,10 +51604,10 @@ def index_bdu_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"bdu\" + ) -> RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"bd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` :param page: set the page number of the response :type page: int @@ -51679,7 +51679,7 @@ def index_bdu_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bdu_get_serialize( + _param = self._index_bd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51711,7 +51711,7 @@ def index_bdu_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51727,7 +51727,7 @@ def index_bdu_get( @validate_call - def index_bdu_get_with_http_info( + def index_bd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51765,10 +51765,10 @@ def index_bdu_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"bdu\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"bd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` :param page: set the page number of the response :type page: int @@ -51840,7 +51840,7 @@ def index_bdu_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bdu_get_serialize( + _param = self._index_bd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -51872,7 +51872,7 @@ def index_bdu_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -51888,7 +51888,7 @@ def index_bdu_get_with_http_info( @validate_call - def index_bdu_get_without_preload_content( + def index_bd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -51927,9 +51927,9 @@ def index_bdu_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bdu\" + """Return vulnerability data stored in index \"bd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Becton Dickinson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bd?cursor=` :param page: set the page number of the response :type page: int @@ -52001,7 +52001,7 @@ def index_bdu_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bdu_get_serialize( + _param = self._index_bd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -52033,7 +52033,7 @@ def index_bdu_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBectonDickinsonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -52044,7 +52044,7 @@ def index_bdu_get_without_preload_content( return response_data.response - def _index_bdu_get_serialize( + def _index_bd_get_serialize( self, page, limit, @@ -52212,7 +52212,7 @@ def _index_bdu_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bdu', + resource_path='/v3/index/bd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -52229,7 +52229,7 @@ def _index_bdu_get_serialize( @validate_call - def index_beckhoff_get( + def index_bdu_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -52267,10 +52267,10 @@ def index_beckhoff_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"beckhoff\" + ) -> RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"bdu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` :param page: set the page number of the response :type page: int @@ -52342,7 +52342,7 @@ def index_beckhoff_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckhoff_get_serialize( + _param = self._index_bdu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -52374,7 +52374,7 @@ def index_beckhoff_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -52390,7 +52390,7 @@ def index_beckhoff_get( @validate_call - def index_beckhoff_get_with_http_info( + def index_bdu_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -52428,10 +52428,10 @@ def index_beckhoff_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"beckhoff\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"bdu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` :param page: set the page number of the response :type page: int @@ -52503,7 +52503,7 @@ def index_beckhoff_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckhoff_get_serialize( + _param = self._index_bdu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -52535,7 +52535,7 @@ def index_beckhoff_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -52551,7 +52551,7 @@ def index_beckhoff_get_with_http_info( @validate_call - def index_beckhoff_get_without_preload_content( + def index_bdu_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -52590,9 +52590,9 @@ def index_beckhoff_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"beckhoff\" + """Return vulnerability data stored in index \"bdu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bdu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BDU Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bdu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bdu?cursor=` :param page: set the page number of the response :type page: int @@ -52664,7 +52664,7 @@ def index_beckhoff_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckhoff_get_serialize( + _param = self._index_bdu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -52696,7 +52696,7 @@ def index_beckhoff_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBDUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -52707,7 +52707,7 @@ def index_beckhoff_get_without_preload_content( return response_data.response - def _index_beckhoff_get_serialize( + def _index_bdu_get_serialize( self, page, limit, @@ -52875,7 +52875,7 @@ def _index_beckhoff_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/beckhoff', + resource_path='/v3/index/bdu', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -52892,7 +52892,7 @@ def _index_beckhoff_get_serialize( @validate_call - def index_beckman_coulter_get( + def index_beckhoff_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -52930,10 +52930,10 @@ def index_beckman_coulter_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination: - """Return vulnerability data stored in index \"beckman-coulter\" + ) -> RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"beckhoff\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` :param page: set the page number of the response :type page: int @@ -53005,7 +53005,7 @@ def index_beckman_coulter_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckman_coulter_get_serialize( + _param = self._index_beckhoff_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53037,7 +53037,7 @@ def index_beckman_coulter_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -53053,7 +53053,7 @@ def index_beckman_coulter_get( @validate_call - def index_beckman_coulter_get_with_http_info( + def index_beckhoff_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53091,10 +53091,10 @@ def index_beckman_coulter_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination]: - """Return vulnerability data stored in index \"beckman-coulter\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"beckhoff\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` :param page: set the page number of the response :type page: int @@ -53166,7 +53166,7 @@ def index_beckman_coulter_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckman_coulter_get_serialize( + _param = self._index_beckhoff_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53198,7 +53198,7 @@ def index_beckman_coulter_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -53214,7 +53214,7 @@ def index_beckman_coulter_get_with_http_info( @validate_call - def index_beckman_coulter_get_without_preload_content( + def index_beckhoff_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53253,9 +53253,9 @@ def index_beckman_coulter_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"beckman-coulter\" + """Return vulnerability data stored in index \"beckhoff\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckhoff index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckhoff Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckhoff?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckhoff?cursor=` :param page: set the page number of the response :type page: int @@ -53327,7 +53327,7 @@ def index_beckman_coulter_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beckman_coulter_get_serialize( + _param = self._index_beckhoff_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53359,7 +53359,7 @@ def index_beckman_coulter_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckhoffAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -53370,7 +53370,7 @@ def index_beckman_coulter_get_without_preload_content( return response_data.response - def _index_beckman_coulter_get_serialize( + def _index_beckhoff_get_serialize( self, page, limit, @@ -53538,7 +53538,7 @@ def _index_beckman_coulter_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/beckman-coulter', + resource_path='/v3/index/beckhoff', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -53555,7 +53555,7 @@ def _index_beckman_coulter_get_serialize( @validate_call - def index_belden_get( + def index_beckman_coulter_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53593,10 +53593,10 @@ def index_belden_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"belden\" + ) -> RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination: + """Return vulnerability data stored in index \"beckman-coulter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` :param page: set the page number of the response :type page: int @@ -53668,7 +53668,7 @@ def index_belden_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_belden_get_serialize( + _param = self._index_beckman_coulter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53700,7 +53700,7 @@ def index_belden_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", '404': "str", '500': "str", } @@ -53716,7 +53716,7 @@ def index_belden_get( @validate_call - def index_belden_get_with_http_info( + def index_beckman_coulter_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53754,10 +53754,10 @@ def index_belden_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"belden\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination]: + """Return vulnerability data stored in index \"beckman-coulter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` :param page: set the page number of the response :type page: int @@ -53829,7 +53829,7 @@ def index_belden_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_belden_get_serialize( + _param = self._index_beckman_coulter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -53861,7 +53861,7 @@ def index_belden_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", '404': "str", '500': "str", } @@ -53877,7 +53877,7 @@ def index_belden_get_with_http_info( @validate_call - def index_belden_get_without_preload_content( + def index_beckman_coulter_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -53916,9 +53916,9 @@ def index_belden_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"belden\" + """Return vulnerability data stored in index \"beckman-coulter\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beckman-coulter index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beckman Coulter Product Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beckman-coulter?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beckman-coulter?cursor=` :param page: set the page number of the response :type page: int @@ -53990,7 +53990,7 @@ def index_belden_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_belden_get_serialize( + _param = self._index_beckman_coulter_get_serialize( page=page, limit=limit, cursor=cursor, @@ -54022,7 +54022,7 @@ def index_belden_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeckmanCoulterPaginatePagination", '404': "str", '500': "str", } @@ -54033,7 +54033,7 @@ def index_belden_get_without_preload_content( return response_data.response - def _index_belden_get_serialize( + def _index_beckman_coulter_get_serialize( self, page, limit, @@ -54201,7 +54201,7 @@ def _index_belden_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/belden', + resource_path='/v3/index/beckman-coulter', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -54218,7 +54218,7 @@ def _index_belden_get_serialize( @validate_call - def index_beyond_trust_get( + def index_belden_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -54256,10 +54256,10 @@ def index_beyond_trust_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination: - """Return vulnerability data stored in index \"beyond-trust\" + ) -> RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"belden\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` :param page: set the page number of the response :type page: int @@ -54331,7 +54331,7 @@ def index_beyond_trust_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beyond_trust_get_serialize( + _param = self._index_belden_get_serialize( page=page, limit=limit, cursor=cursor, @@ -54363,7 +54363,7 @@ def index_beyond_trust_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -54379,7 +54379,7 @@ def index_beyond_trust_get( @validate_call - def index_beyond_trust_get_with_http_info( + def index_belden_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -54417,10 +54417,10 @@ def index_beyond_trust_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination]: - """Return vulnerability data stored in index \"beyond-trust\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"belden\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` :param page: set the page number of the response :type page: int @@ -54492,7 +54492,7 @@ def index_beyond_trust_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beyond_trust_get_serialize( + _param = self._index_belden_get_serialize( page=page, limit=limit, cursor=cursor, @@ -54524,7 +54524,7 @@ def index_beyond_trust_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -54540,7 +54540,7 @@ def index_beyond_trust_get_with_http_info( @validate_call - def index_beyond_trust_get_without_preload_content( + def index_belden_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -54579,9 +54579,9 @@ def index_beyond_trust_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"beyond-trust\" + """Return vulnerability data stored in index \"belden\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the belden index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Belden Security Bulletins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/belden?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/belden?cursor=` :param page: set the page number of the response :type page: int @@ -54653,7 +54653,7 @@ def index_beyond_trust_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_beyond_trust_get_serialize( + _param = self._index_belden_get_serialize( page=page, limit=limit, cursor=cursor, @@ -54685,7 +54685,7 @@ def index_beyond_trust_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeldenAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -54696,7 +54696,7 @@ def index_beyond_trust_get_without_preload_content( return response_data.response - def _index_beyond_trust_get_serialize( + def _index_belden_get_serialize( self, page, limit, @@ -54864,7 +54864,7 @@ def _index_beyond_trust_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/beyond-trust', + resource_path='/v3/index/belden', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -54881,7 +54881,7 @@ def _index_beyond_trust_get_serialize( @validate_call - def index_binarly_get( + def index_beyond_trust_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -54919,10 +54919,10 @@ def index_binarly_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination: - """Return vulnerability data stored in index \"binarly\" + ) -> RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination: + """Return vulnerability data stored in index \"beyond-trust\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` :param page: set the page number of the response :type page: int @@ -54994,7 +54994,7 @@ def index_binarly_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_binarly_get_serialize( + _param = self._index_beyond_trust_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55026,7 +55026,7 @@ def index_binarly_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", '404': "str", '500': "str", } @@ -55042,7 +55042,7 @@ def index_binarly_get( @validate_call - def index_binarly_get_with_http_info( + def index_beyond_trust_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55080,10 +55080,10 @@ def index_binarly_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination]: - """Return vulnerability data stored in index \"binarly\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination]: + """Return vulnerability data stored in index \"beyond-trust\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` :param page: set the page number of the response :type page: int @@ -55155,7 +55155,7 @@ def index_binarly_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_binarly_get_serialize( + _param = self._index_beyond_trust_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55187,7 +55187,7 @@ def index_binarly_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", '404': "str", '500': "str", } @@ -55203,7 +55203,7 @@ def index_binarly_get_with_http_info( @validate_call - def index_binarly_get_without_preload_content( + def index_beyond_trust_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55242,9 +55242,9 @@ def index_binarly_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"binarly\" + """Return vulnerability data stored in index \"beyond-trust\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the beyond-trust index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Beyond Trust Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/beyond-trust?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/beyond-trust?cursor=` :param page: set the page number of the response :type page: int @@ -55316,7 +55316,7 @@ def index_binarly_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_binarly_get_serialize( + _param = self._index_beyond_trust_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55348,7 +55348,7 @@ def index_binarly_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBeyondTrustPaginatePagination", '404': "str", '500': "str", } @@ -55359,7 +55359,7 @@ def index_binarly_get_without_preload_content( return response_data.response - def _index_binarly_get_serialize( + def _index_beyond_trust_get_serialize( self, page, limit, @@ -55527,7 +55527,7 @@ def _index_binarly_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/binarly', + resource_path='/v3/index/beyond-trust', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -55544,7 +55544,7 @@ def _index_binarly_get_serialize( @validate_call - def index_bitdefender_get( + def index_binarly_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55582,10 +55582,10 @@ def index_bitdefender_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination: - """Return vulnerability data stored in index \"bitdefender\" + ) -> RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination: + """Return vulnerability data stored in index \"binarly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` :param page: set the page number of the response :type page: int @@ -55657,7 +55657,7 @@ def index_bitdefender_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bitdefender_get_serialize( + _param = self._index_binarly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55689,7 +55689,7 @@ def index_bitdefender_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", '404': "str", '500': "str", } @@ -55705,7 +55705,7 @@ def index_bitdefender_get( @validate_call - def index_bitdefender_get_with_http_info( + def index_binarly_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55743,10 +55743,10 @@ def index_bitdefender_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination]: - """Return vulnerability data stored in index \"bitdefender\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination]: + """Return vulnerability data stored in index \"binarly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` :param page: set the page number of the response :type page: int @@ -55818,7 +55818,7 @@ def index_bitdefender_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bitdefender_get_serialize( + _param = self._index_binarly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -55850,7 +55850,7 @@ def index_bitdefender_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", '404': "str", '500': "str", } @@ -55866,7 +55866,7 @@ def index_bitdefender_get_with_http_info( @validate_call - def index_bitdefender_get_without_preload_content( + def index_binarly_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -55905,9 +55905,9 @@ def index_bitdefender_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bitdefender\" + """Return vulnerability data stored in index \"binarly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the binarly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Binarly Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/binarly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/binarly?cursor=` :param page: set the page number of the response :type page: int @@ -55979,7 +55979,7 @@ def index_bitdefender_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bitdefender_get_serialize( + _param = self._index_binarly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -56011,7 +56011,7 @@ def index_bitdefender_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBinarlyPaginatePagination", '404': "str", '500': "str", } @@ -56022,7 +56022,7 @@ def index_bitdefender_get_without_preload_content( return response_data.response - def _index_bitdefender_get_serialize( + def _index_binarly_get_serialize( self, page, limit, @@ -56190,7 +56190,7 @@ def _index_bitdefender_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bitdefender', + resource_path='/v3/index/binarly', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -56207,7 +56207,7 @@ def _index_bitdefender_get_serialize( @validate_call - def index_blackberry_get( + def index_bitdefender_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -56245,10 +56245,10 @@ def index_blackberry_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination: - """Return vulnerability data stored in index \"blackberry\" + ) -> RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination: + """Return vulnerability data stored in index \"bitdefender\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` :param page: set the page number of the response :type page: int @@ -56320,7 +56320,7 @@ def index_blackberry_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_blackberry_get_serialize( + _param = self._index_bitdefender_get_serialize( page=page, limit=limit, cursor=cursor, @@ -56352,7 +56352,7 @@ def index_blackberry_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", '404': "str", '500': "str", } @@ -56368,7 +56368,7 @@ def index_blackberry_get( @validate_call - def index_blackberry_get_with_http_info( + def index_bitdefender_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -56406,10 +56406,10 @@ def index_blackberry_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination]: - """Return vulnerability data stored in index \"blackberry\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination]: + """Return vulnerability data stored in index \"bitdefender\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` :param page: set the page number of the response :type page: int @@ -56481,7 +56481,7 @@ def index_blackberry_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_blackberry_get_serialize( + _param = self._index_bitdefender_get_serialize( page=page, limit=limit, cursor=cursor, @@ -56513,7 +56513,7 @@ def index_blackberry_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", '404': "str", '500': "str", } @@ -56529,7 +56529,7 @@ def index_blackberry_get_with_http_info( @validate_call - def index_blackberry_get_without_preload_content( + def index_bitdefender_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -56568,9 +56568,9 @@ def index_blackberry_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"blackberry\" + """Return vulnerability data stored in index \"bitdefender\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bitdefender index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bitdefender Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bitdefender?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bitdefender?cursor=` :param page: set the page number of the response :type page: int @@ -56642,7 +56642,7 @@ def index_blackberry_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_blackberry_get_serialize( + _param = self._index_bitdefender_get_serialize( page=page, limit=limit, cursor=cursor, @@ -56674,7 +56674,7 @@ def index_blackberry_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBitDefenderPaginatePagination", '404': "str", '500': "str", } @@ -56685,7 +56685,7 @@ def index_blackberry_get_without_preload_content( return response_data.response - def _index_blackberry_get_serialize( + def _index_bitdefender_get_serialize( self, page, limit, @@ -56853,7 +56853,7 @@ def _index_blackberry_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/blackberry', + resource_path='/v3/index/bitdefender', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -56870,7 +56870,7 @@ def _index_blackberry_get_serialize( @validate_call - def index_bls_get( + def index_blackberry_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -56908,10 +56908,10 @@ def index_bls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination: - """Return vulnerability data stored in index \"bls\" + ) -> RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination: + """Return vulnerability data stored in index \"blackberry\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` :param page: set the page number of the response :type page: int @@ -56983,7 +56983,7 @@ def index_bls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bls_get_serialize( + _param = self._index_blackberry_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57015,7 +57015,7 @@ def index_bls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", '404': "str", '500': "str", } @@ -57031,7 +57031,7 @@ def index_bls_get( @validate_call - def index_bls_get_with_http_info( + def index_blackberry_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57069,10 +57069,10 @@ def index_bls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination]: - """Return vulnerability data stored in index \"bls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination]: + """Return vulnerability data stored in index \"blackberry\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` :param page: set the page number of the response :type page: int @@ -57144,7 +57144,7 @@ def index_bls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bls_get_serialize( + _param = self._index_blackberry_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57176,7 +57176,7 @@ def index_bls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", '404': "str", '500': "str", } @@ -57192,7 +57192,7 @@ def index_bls_get_with_http_info( @validate_call - def index_bls_get_without_preload_content( + def index_blackberry_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57231,9 +57231,9 @@ def index_bls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bls\" + """Return vulnerability data stored in index \"blackberry\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the blackberry index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** BlackBerry Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/blackberry?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/blackberry?cursor=` :param page: set the page number of the response :type page: int @@ -57305,7 +57305,7 @@ def index_bls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bls_get_serialize( + _param = self._index_blackberry_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57337,7 +57337,7 @@ def index_bls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBlackBerryPaginatePagination", '404': "str", '500': "str", } @@ -57348,7 +57348,7 @@ def index_bls_get_without_preload_content( return response_data.response - def _index_bls_get_serialize( + def _index_blackberry_get_serialize( self, page, limit, @@ -57516,7 +57516,7 @@ def _index_bls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bls', + resource_path='/v3/index/blackberry', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -57533,7 +57533,7 @@ def _index_bls_get_serialize( @validate_call - def index_bosch_get( + def index_bls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57571,10 +57571,10 @@ def index_bosch_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"bosch\" + ) -> RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination: + """Return vulnerability data stored in index \"bls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` :param page: set the page number of the response :type page: int @@ -57646,7 +57646,7 @@ def index_bosch_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bosch_get_serialize( + _param = self._index_bls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57678,7 +57678,7 @@ def index_bosch_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", '404': "str", '500': "str", } @@ -57694,7 +57694,7 @@ def index_bosch_get( @validate_call - def index_bosch_get_with_http_info( + def index_bls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57732,10 +57732,10 @@ def index_bosch_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"bosch\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination]: + """Return vulnerability data stored in index \"bls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` :param page: set the page number of the response :type page: int @@ -57807,7 +57807,7 @@ def index_bosch_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bosch_get_serialize( + _param = self._index_bls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -57839,7 +57839,7 @@ def index_bosch_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", '404': "str", '500': "str", } @@ -57855,7 +57855,7 @@ def index_bosch_get_with_http_info( @validate_call - def index_bosch_get_without_preload_content( + def index_bls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -57894,9 +57894,9 @@ def index_bosch_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"bosch\" + """Return vulnerability data stored in index \"bls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Black Lantern Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bls?cursor=` :param page: set the page number of the response :type page: int @@ -57968,7 +57968,7 @@ def index_bosch_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_bosch_get_serialize( + _param = self._index_bls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -58000,7 +58000,7 @@ def index_bosch_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBLSPaginatePagination", '404': "str", '500': "str", } @@ -58011,7 +58011,7 @@ def index_bosch_get_without_preload_content( return response_data.response - def _index_bosch_get_serialize( + def _index_bls_get_serialize( self, page, limit, @@ -58179,7 +58179,7 @@ def _index_bosch_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/bosch', + resource_path='/v3/index/bls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -58196,7 +58196,7 @@ def _index_bosch_get_serialize( @validate_call - def index_boston_scientific_get( + def index_bosch_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -58234,10 +58234,10 @@ def index_boston_scientific_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"boston-scientific\" + ) -> RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"bosch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` :param page: set the page number of the response :type page: int @@ -58309,7 +58309,7 @@ def index_boston_scientific_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_boston_scientific_get_serialize( + _param = self._index_bosch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -58341,7 +58341,7 @@ def index_boston_scientific_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -58357,7 +58357,7 @@ def index_boston_scientific_get( @validate_call - def index_boston_scientific_get_with_http_info( + def index_bosch_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -58395,10 +58395,10 @@ def index_boston_scientific_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"boston-scientific\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"bosch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` :param page: set the page number of the response :type page: int @@ -58470,7 +58470,7 @@ def index_boston_scientific_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_boston_scientific_get_serialize( + _param = self._index_bosch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -58502,7 +58502,7 @@ def index_boston_scientific_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -58518,7 +58518,7 @@ def index_boston_scientific_get_with_http_info( @validate_call - def index_boston_scientific_get_without_preload_content( + def index_bosch_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -58557,9 +58557,9 @@ def index_boston_scientific_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"boston-scientific\" + """Return vulnerability data stored in index \"bosch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the bosch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Bosch Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/bosch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/bosch?cursor=` :param page: set the page number of the response :type page: int @@ -58631,7 +58631,7 @@ def index_boston_scientific_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_boston_scientific_get_serialize( + _param = self._index_bosch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -58663,7 +58663,7 @@ def index_boston_scientific_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBoschAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -58674,7 +58674,7 @@ def index_boston_scientific_get_without_preload_content( return response_data.response - def _index_boston_scientific_get_serialize( + def _index_bosch_get_serialize( self, page, limit, @@ -58842,7 +58842,7 @@ def _index_boston_scientific_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/boston-scientific', + resource_path='/v3/index/bosch', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -58859,7 +58859,7 @@ def _index_boston_scientific_get_serialize( @validate_call - def index_botnets_get( + def index_boston_scientific_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -58897,10 +58897,10 @@ def index_botnets_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination: - """Return vulnerability data stored in index \"botnets\" + ) -> RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"boston-scientific\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` :param page: set the page number of the response :type page: int @@ -58972,7 +58972,7 @@ def index_botnets_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_botnets_get_serialize( + _param = self._index_boston_scientific_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59004,7 +59004,7 @@ def index_botnets_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -59020,7 +59020,7 @@ def index_botnets_get( @validate_call - def index_botnets_get_with_http_info( + def index_boston_scientific_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59058,10 +59058,10 @@ def index_botnets_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination]: - """Return vulnerability data stored in index \"botnets\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"boston-scientific\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` :param page: set the page number of the response :type page: int @@ -59133,7 +59133,7 @@ def index_botnets_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_botnets_get_serialize( + _param = self._index_boston_scientific_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59165,7 +59165,7 @@ def index_botnets_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -59181,7 +59181,7 @@ def index_botnets_get_with_http_info( @validate_call - def index_botnets_get_without_preload_content( + def index_boston_scientific_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59220,9 +59220,9 @@ def index_botnets_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"botnets\" + """Return vulnerability data stored in index \"boston-scientific\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the boston-scientific index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Boston Scientific Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/boston-scientific?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/boston-scientific?cursor=` :param page: set the page number of the response :type page: int @@ -59294,7 +59294,7 @@ def index_botnets_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_botnets_get_serialize( + _param = self._index_boston_scientific_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59326,7 +59326,7 @@ def index_botnets_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBostonScientificAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -59337,7 +59337,7 @@ def index_botnets_get_without_preload_content( return response_data.response - def _index_botnets_get_serialize( + def _index_boston_scientific_get_serialize( self, page, limit, @@ -59505,7 +59505,7 @@ def _index_botnets_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/botnets', + resource_path='/v3/index/boston-scientific', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -59522,7 +59522,7 @@ def _index_botnets_get_serialize( @validate_call - def index_ca_cyber_centre_get( + def index_botnets_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59560,10 +59560,10 @@ def index_ca_cyber_centre_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ca-cyber-centre\" + ) -> RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination: + """Return vulnerability data stored in index \"botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` :param page: set the page number of the response :type page: int @@ -59635,7 +59635,7 @@ def index_ca_cyber_centre_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ca_cyber_centre_get_serialize( + _param = self._index_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59667,7 +59667,7 @@ def index_ca_cyber_centre_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", '404': "str", '500': "str", } @@ -59683,7 +59683,7 @@ def index_ca_cyber_centre_get( @validate_call - def index_ca_cyber_centre_get_with_http_info( + def index_botnets_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59721,10 +59721,10 @@ def index_ca_cyber_centre_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ca-cyber-centre\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination]: + """Return vulnerability data stored in index \"botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` :param page: set the page number of the response :type page: int @@ -59796,7 +59796,7 @@ def index_ca_cyber_centre_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ca_cyber_centre_get_serialize( + _param = self._index_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59828,7 +59828,7 @@ def index_ca_cyber_centre_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", '404': "str", '500': "str", } @@ -59844,7 +59844,7 @@ def index_ca_cyber_centre_get_with_http_info( @validate_call - def index_ca_cyber_centre_get_without_preload_content( + def index_botnets_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -59883,9 +59883,9 @@ def index_ca_cyber_centre_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ca-cyber-centre\" + """Return vulnerability data stored in index \"botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/botnets?cursor=` :param page: set the page number of the response :type page: int @@ -59957,7 +59957,7 @@ def index_ca_cyber_centre_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ca_cyber_centre_get_serialize( + _param = self._index_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -59989,7 +59989,7 @@ def index_ca_cyber_centre_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryBotnetPaginatePagination", '404': "str", '500': "str", } @@ -60000,7 +60000,7 @@ def index_ca_cyber_centre_get_without_preload_content( return response_data.response - def _index_ca_cyber_centre_get_serialize( + def _index_botnets_get_serialize( self, page, limit, @@ -60168,7 +60168,7 @@ def _index_ca_cyber_centre_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ca-cyber-centre', + resource_path='/v3/index/botnets', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -60185,7 +60185,7 @@ def _index_ca_cyber_centre_get_serialize( @validate_call - def index_canvas_get( + def index_ca_cyber_centre_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -60223,10 +60223,10 @@ def index_canvas_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination: - """Return vulnerability data stored in index \"canvas\" + ) -> RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ca-cyber-centre\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` :param page: set the page number of the response :type page: int @@ -60298,7 +60298,7 @@ def index_canvas_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_canvas_get_serialize( + _param = self._index_ca_cyber_centre_get_serialize( page=page, limit=limit, cursor=cursor, @@ -60330,7 +60330,7 @@ def index_canvas_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -60346,7 +60346,7 @@ def index_canvas_get( @validate_call - def index_canvas_get_with_http_info( + def index_ca_cyber_centre_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -60384,10 +60384,10 @@ def index_canvas_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination]: - """Return vulnerability data stored in index \"canvas\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ca-cyber-centre\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` :param page: set the page number of the response :type page: int @@ -60459,7 +60459,7 @@ def index_canvas_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_canvas_get_serialize( + _param = self._index_ca_cyber_centre_get_serialize( page=page, limit=limit, cursor=cursor, @@ -60491,7 +60491,7 @@ def index_canvas_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -60507,7 +60507,7 @@ def index_canvas_get_with_http_info( @validate_call - def index_canvas_get_without_preload_content( + def index_ca_cyber_centre_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -60546,9 +60546,9 @@ def index_canvas_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"canvas\" + """Return vulnerability data stored in index \"ca-cyber-centre\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ca-cyber-centre index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Canadian Centre for Cyber Security Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ca-cyber-centre?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ca-cyber-centre?cursor=` :param page: set the page number of the response :type page: int @@ -60620,7 +60620,7 @@ def index_canvas_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_canvas_get_serialize( + _param = self._index_ca_cyber_centre_get_serialize( page=page, limit=limit, cursor=cursor, @@ -60652,7 +60652,7 @@ def index_canvas_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCACyberCentreAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -60663,7 +60663,7 @@ def index_canvas_get_without_preload_content( return response_data.response - def _index_canvas_get_serialize( + def _index_ca_cyber_centre_get_serialize( self, page, limit, @@ -60831,7 +60831,7 @@ def _index_canvas_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/canvas', + resource_path='/v3/index/ca-cyber-centre', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -60848,7 +60848,7 @@ def _index_canvas_get_serialize( @validate_call - def index_carestream_get( + def index_canvas_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -60886,10 +60886,10 @@ def index_carestream_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"carestream\" + ) -> RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination: + """Return vulnerability data stored in index \"canvas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` :param page: set the page number of the response :type page: int @@ -60961,7 +60961,7 @@ def index_carestream_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carestream_get_serialize( + _param = self._index_canvas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -60993,7 +60993,7 @@ def index_carestream_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", '404': "str", '500': "str", } @@ -61009,7 +61009,7 @@ def index_carestream_get( @validate_call - def index_carestream_get_with_http_info( + def index_canvas_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61047,10 +61047,10 @@ def index_carestream_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"carestream\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination]: + """Return vulnerability data stored in index \"canvas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` :param page: set the page number of the response :type page: int @@ -61122,7 +61122,7 @@ def index_carestream_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carestream_get_serialize( + _param = self._index_canvas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61154,7 +61154,7 @@ def index_carestream_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", '404': "str", '500': "str", } @@ -61170,7 +61170,7 @@ def index_carestream_get_with_http_info( @validate_call - def index_carestream_get_without_preload_content( + def index_canvas_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61209,9 +61209,9 @@ def index_carestream_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"carestream\" + """Return vulnerability data stored in index \"canvas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the canvas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CANVAS Exploit Packs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/canvas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/canvas?cursor=` :param page: set the page number of the response :type page: int @@ -61283,7 +61283,7 @@ def index_carestream_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carestream_get_serialize( + _param = self._index_canvas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61315,7 +61315,7 @@ def index_carestream_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCanvasExploitPaginatePagination", '404': "str", '500': "str", } @@ -61326,7 +61326,7 @@ def index_carestream_get_without_preload_content( return response_data.response - def _index_carestream_get_serialize( + def _index_canvas_get_serialize( self, page, limit, @@ -61494,7 +61494,7 @@ def _index_carestream_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/carestream', + resource_path='/v3/index/canvas', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -61511,7 +61511,7 @@ def _index_carestream_get_serialize( @validate_call - def index_cargo_get( + def index_carestream_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61549,10 +61549,10 @@ def index_cargo_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"cargo\" + ) -> RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"carestream\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` :param page: set the page number of the response :type page: int @@ -61624,7 +61624,7 @@ def index_cargo_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cargo_get_serialize( + _param = self._index_carestream_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61656,7 +61656,7 @@ def index_cargo_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -61672,7 +61672,7 @@ def index_cargo_get( @validate_call - def index_cargo_get_with_http_info( + def index_carestream_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61710,10 +61710,10 @@ def index_cargo_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"cargo\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"carestream\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` :param page: set the page number of the response :type page: int @@ -61785,7 +61785,7 @@ def index_cargo_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cargo_get_serialize( + _param = self._index_carestream_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61817,7 +61817,7 @@ def index_cargo_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -61833,7 +61833,7 @@ def index_cargo_get_with_http_info( @validate_call - def index_cargo_get_without_preload_content( + def index_carestream_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -61872,9 +61872,9 @@ def index_cargo_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cargo\" + """Return vulnerability data stored in index \"carestream\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carestream index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carestream Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carestream?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carestream?cursor=` :param page: set the page number of the response :type page: int @@ -61946,7 +61946,7 @@ def index_cargo_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cargo_get_serialize( + _param = self._index_carestream_get_serialize( page=page, limit=limit, cursor=cursor, @@ -61978,7 +61978,7 @@ def index_cargo_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarestreamAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -61989,7 +61989,7 @@ def index_cargo_get_without_preload_content( return response_data.response - def _index_cargo_get_serialize( + def _index_carestream_get_serialize( self, page, limit, @@ -62157,7 +62157,7 @@ def _index_cargo_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cargo', + resource_path='/v3/index/carestream', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -62174,7 +62174,7 @@ def _index_cargo_get_serialize( @validate_call - def index_carrier_get( + def index_cargo_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -62212,10 +62212,10 @@ def index_carrier_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination: - """Return vulnerability data stored in index \"carrier\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"cargo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` :param page: set the page number of the response :type page: int @@ -62287,7 +62287,7 @@ def index_carrier_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carrier_get_serialize( + _param = self._index_cargo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -62319,7 +62319,7 @@ def index_carrier_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -62335,7 +62335,7 @@ def index_carrier_get( @validate_call - def index_carrier_get_with_http_info( + def index_cargo_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -62373,10 +62373,10 @@ def index_carrier_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination]: - """Return vulnerability data stored in index \"carrier\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"cargo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` :param page: set the page number of the response :type page: int @@ -62448,7 +62448,7 @@ def index_carrier_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carrier_get_serialize( + _param = self._index_cargo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -62480,7 +62480,7 @@ def index_carrier_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -62496,7 +62496,7 @@ def index_carrier_get_with_http_info( @validate_call - def index_carrier_get_without_preload_content( + def index_cargo_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -62535,9 +62535,9 @@ def index_carrier_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"carrier\" + """Return vulnerability data stored in index \"cargo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cargo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cargo (Rust) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cargo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cargo?cursor=` :param page: set the page number of the response :type page: int @@ -62609,7 +62609,7 @@ def index_carrier_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_carrier_get_serialize( + _param = self._index_cargo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -62641,7 +62641,7 @@ def index_carrier_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -62652,7 +62652,7 @@ def index_carrier_get_without_preload_content( return response_data.response - def _index_carrier_get_serialize( + def _index_cargo_get_serialize( self, page, limit, @@ -62820,7 +62820,7 @@ def _index_carrier_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/carrier', + resource_path='/v3/index/cargo', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -62837,7 +62837,7 @@ def _index_carrier_get_serialize( @validate_call - def index_cbl_mariner_get( + def index_carrier_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -62875,10 +62875,10 @@ def index_cbl_mariner_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination: - """Return vulnerability data stored in index \"cbl-mariner\" + ) -> RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination: + """Return vulnerability data stored in index \"carrier\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` :param page: set the page number of the response :type page: int @@ -62950,7 +62950,7 @@ def index_cbl_mariner_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cbl_mariner_get_serialize( + _param = self._index_carrier_get_serialize( page=page, limit=limit, cursor=cursor, @@ -62982,7 +62982,7 @@ def index_cbl_mariner_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", '404': "str", '500': "str", } @@ -62998,7 +62998,7 @@ def index_cbl_mariner_get( @validate_call - def index_cbl_mariner_get_with_http_info( + def index_carrier_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63036,10 +63036,10 @@ def index_cbl_mariner_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination]: - """Return vulnerability data stored in index \"cbl-mariner\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination]: + """Return vulnerability data stored in index \"carrier\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` :param page: set the page number of the response :type page: int @@ -63111,7 +63111,7 @@ def index_cbl_mariner_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cbl_mariner_get_serialize( + _param = self._index_carrier_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63143,7 +63143,7 @@ def index_cbl_mariner_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", '404': "str", '500': "str", } @@ -63159,7 +63159,7 @@ def index_cbl_mariner_get_with_http_info( @validate_call - def index_cbl_mariner_get_without_preload_content( + def index_carrier_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63198,9 +63198,9 @@ def index_cbl_mariner_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cbl-mariner\" + """Return vulnerability data stored in index \"carrier\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the carrier index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Carrier Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/carrier?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/carrier?cursor=` :param page: set the page number of the response :type page: int @@ -63272,7 +63272,7 @@ def index_cbl_mariner_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cbl_mariner_get_serialize( + _param = self._index_carrier_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63304,7 +63304,7 @@ def index_cbl_mariner_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCarrierPaginatePagination", '404': "str", '500': "str", } @@ -63315,7 +63315,7 @@ def index_cbl_mariner_get_without_preload_content( return response_data.response - def _index_cbl_mariner_get_serialize( + def _index_carrier_get_serialize( self, page, limit, @@ -63483,7 +63483,7 @@ def _index_cbl_mariner_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cbl-mariner', + resource_path='/v3/index/carrier', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -63500,7 +63500,7 @@ def _index_cbl_mariner_get_serialize( @validate_call - def index_centos_get( + def index_cbl_mariner_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63538,10 +63538,10 @@ def index_centos_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination: - """Return vulnerability data stored in index \"centos\" + ) -> RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination: + """Return vulnerability data stored in index \"cbl-mariner\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` :param page: set the page number of the response :type page: int @@ -63613,7 +63613,7 @@ def index_centos_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_centos_get_serialize( + _param = self._index_cbl_mariner_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63645,7 +63645,7 @@ def index_centos_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", '404': "str", '500': "str", } @@ -63661,7 +63661,7 @@ def index_centos_get( @validate_call - def index_centos_get_with_http_info( + def index_cbl_mariner_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63699,10 +63699,10 @@ def index_centos_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination]: - """Return vulnerability data stored in index \"centos\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination]: + """Return vulnerability data stored in index \"cbl-mariner\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` :param page: set the page number of the response :type page: int @@ -63774,7 +63774,7 @@ def index_centos_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_centos_get_serialize( + _param = self._index_cbl_mariner_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63806,7 +63806,7 @@ def index_centos_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", '404': "str", '500': "str", } @@ -63822,7 +63822,7 @@ def index_centos_get_with_http_info( @validate_call - def index_centos_get_without_preload_content( + def index_cbl_mariner_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -63861,9 +63861,9 @@ def index_centos_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"centos\" + """Return vulnerability data stored in index \"cbl-mariner\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cbl-mariner index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CBL-Mariner Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cbl-mariner?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cbl-mariner?cursor=` :param page: set the page number of the response :type page: int @@ -63935,7 +63935,7 @@ def index_centos_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_centos_get_serialize( + _param = self._index_cbl_mariner_get_serialize( page=page, limit=limit, cursor=cursor, @@ -63967,7 +63967,7 @@ def index_centos_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCBLMarinerPaginatePagination", '404': "str", '500': "str", } @@ -63978,7 +63978,7 @@ def index_centos_get_without_preload_content( return response_data.response - def _index_centos_get_serialize( + def _index_cbl_mariner_get_serialize( self, page, limit, @@ -64146,7 +64146,7 @@ def _index_centos_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/centos', + resource_path='/v3/index/cbl-mariner', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -64163,7 +64163,7 @@ def _index_centos_get_serialize( @validate_call - def index_cert_be_get( + def index_centos_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -64201,10 +64201,10 @@ def index_cert_be_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination: - """Return vulnerability data stored in index \"cert-be\" + ) -> RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination: + """Return vulnerability data stored in index \"centos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` :param page: set the page number of the response :type page: int @@ -64276,7 +64276,7 @@ def index_cert_be_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_be_get_serialize( + _param = self._index_centos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -64308,7 +64308,7 @@ def index_cert_be_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", '404': "str", '500': "str", } @@ -64324,7 +64324,7 @@ def index_cert_be_get( @validate_call - def index_cert_be_get_with_http_info( + def index_centos_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -64362,10 +64362,10 @@ def index_cert_be_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination]: - """Return vulnerability data stored in index \"cert-be\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination]: + """Return vulnerability data stored in index \"centos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` :param page: set the page number of the response :type page: int @@ -64437,7 +64437,7 @@ def index_cert_be_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_be_get_serialize( + _param = self._index_centos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -64469,7 +64469,7 @@ def index_cert_be_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", '404': "str", '500': "str", } @@ -64485,7 +64485,7 @@ def index_cert_be_get_with_http_info( @validate_call - def index_cert_be_get_without_preload_content( + def index_centos_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -64524,9 +64524,9 @@ def index_cert_be_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-be\" + """Return vulnerability data stored in index \"centos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the centos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CentOS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/centos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/centos?cursor=` :param page: set the page number of the response :type page: int @@ -64598,7 +64598,7 @@ def index_cert_be_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_be_get_serialize( + _param = self._index_centos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -64630,7 +64630,7 @@ def index_cert_be_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCESAPaginatePagination", '404': "str", '500': "str", } @@ -64641,7 +64641,7 @@ def index_cert_be_get_without_preload_content( return response_data.response - def _index_cert_be_get_serialize( + def _index_centos_get_serialize( self, page, limit, @@ -64809,7 +64809,7 @@ def _index_cert_be_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-be', + resource_path='/v3/index/centos', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -64826,7 +64826,7 @@ def _index_cert_be_get_serialize( @validate_call - def index_cert_in_get( + def index_cert_be_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -64864,10 +64864,10 @@ def index_cert_in_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination: - """Return vulnerability data stored in index \"cert-in\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination: + """Return vulnerability data stored in index \"cert-be\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` :param page: set the page number of the response :type page: int @@ -64939,7 +64939,7 @@ def index_cert_in_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_in_get_serialize( + _param = self._index_cert_be_get_serialize( page=page, limit=limit, cursor=cursor, @@ -64971,7 +64971,7 @@ def index_cert_in_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", '404': "str", '500': "str", } @@ -64987,7 +64987,7 @@ def index_cert_in_get( @validate_call - def index_cert_in_get_with_http_info( + def index_cert_be_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65025,10 +65025,10 @@ def index_cert_in_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination]: - """Return vulnerability data stored in index \"cert-in\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination]: + """Return vulnerability data stored in index \"cert-be\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` :param page: set the page number of the response :type page: int @@ -65100,7 +65100,7 @@ def index_cert_in_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_in_get_serialize( + _param = self._index_cert_be_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65132,7 +65132,7 @@ def index_cert_in_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", '404': "str", '500': "str", } @@ -65148,7 +65148,7 @@ def index_cert_in_get_with_http_info( @validate_call - def index_cert_in_get_without_preload_content( + def index_cert_be_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65187,9 +65187,9 @@ def index_cert_in_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-in\" + """Return vulnerability data stored in index \"cert-be\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-be index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert BE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-be?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-be?cursor=` :param page: set the page number of the response :type page: int @@ -65261,7 +65261,7 @@ def index_cert_in_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_in_get_serialize( + _param = self._index_cert_be_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65293,7 +65293,7 @@ def index_cert_in_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertBEPaginatePagination", '404': "str", '500': "str", } @@ -65304,7 +65304,7 @@ def index_cert_in_get_without_preload_content( return response_data.response - def _index_cert_in_get_serialize( + def _index_cert_be_get_serialize( self, page, limit, @@ -65472,7 +65472,7 @@ def _index_cert_in_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-in', + resource_path='/v3/index/cert-be', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -65489,7 +65489,7 @@ def _index_cert_in_get_serialize( @validate_call - def index_cert_ir_security_alerts_get( + def index_cert_in_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65527,10 +65527,10 @@ def index_cert_ir_security_alerts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination: - """Return vulnerability data stored in index \"cert-ir-security-alerts\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination: + """Return vulnerability data stored in index \"cert-in\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` :param page: set the page number of the response :type page: int @@ -65602,7 +65602,7 @@ def index_cert_ir_security_alerts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ir_security_alerts_get_serialize( + _param = self._index_cert_in_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65634,7 +65634,7 @@ def index_cert_ir_security_alerts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", '404': "str", '500': "str", } @@ -65650,7 +65650,7 @@ def index_cert_ir_security_alerts_get( @validate_call - def index_cert_ir_security_alerts_get_with_http_info( + def index_cert_in_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65688,10 +65688,10 @@ def index_cert_ir_security_alerts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination]: - """Return vulnerability data stored in index \"cert-ir-security-alerts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination]: + """Return vulnerability data stored in index \"cert-in\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` :param page: set the page number of the response :type page: int @@ -65763,7 +65763,7 @@ def index_cert_ir_security_alerts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ir_security_alerts_get_serialize( + _param = self._index_cert_in_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65795,7 +65795,7 @@ def index_cert_ir_security_alerts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", '404': "str", '500': "str", } @@ -65811,7 +65811,7 @@ def index_cert_ir_security_alerts_get_with_http_info( @validate_call - def index_cert_ir_security_alerts_get_without_preload_content( + def index_cert_in_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -65850,9 +65850,9 @@ def index_cert_ir_security_alerts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-ir-security-alerts\" + """Return vulnerability data stored in index \"cert-in\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-in index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT IN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-in?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-in?cursor=` :param page: set the page number of the response :type page: int @@ -65924,7 +65924,7 @@ def index_cert_ir_security_alerts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ir_security_alerts_get_serialize( + _param = self._index_cert_in_get_serialize( page=page, limit=limit, cursor=cursor, @@ -65956,7 +65956,7 @@ def index_cert_ir_security_alerts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertINPaginatePagination", '404': "str", '500': "str", } @@ -65967,7 +65967,7 @@ def index_cert_ir_security_alerts_get_without_preload_content( return response_data.response - def _index_cert_ir_security_alerts_get_serialize( + def _index_cert_in_get_serialize( self, page, limit, @@ -66135,7 +66135,7 @@ def _index_cert_ir_security_alerts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-ir-security-alerts', + resource_path='/v3/index/cert-in', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -66152,7 +66152,7 @@ def _index_cert_ir_security_alerts_get_serialize( @validate_call - def index_cert_se_get( + def index_cert_ir_security_alerts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -66190,10 +66190,10 @@ def index_cert_se_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination: - """Return vulnerability data stored in index \"cert-se\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination: + """Return vulnerability data stored in index \"cert-ir-security-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -66265,7 +66265,7 @@ def index_cert_se_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_se_get_serialize( + _param = self._index_cert_ir_security_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -66297,7 +66297,7 @@ def index_cert_se_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", '404': "str", '500': "str", } @@ -66313,7 +66313,7 @@ def index_cert_se_get( @validate_call - def index_cert_se_get_with_http_info( + def index_cert_ir_security_alerts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -66351,10 +66351,10 @@ def index_cert_se_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination]: - """Return vulnerability data stored in index \"cert-se\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination]: + """Return vulnerability data stored in index \"cert-ir-security-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -66426,7 +66426,7 @@ def index_cert_se_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_se_get_serialize( + _param = self._index_cert_ir_security_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -66458,7 +66458,7 @@ def index_cert_se_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", '404': "str", '500': "str", } @@ -66474,7 +66474,7 @@ def index_cert_se_get_with_http_info( @validate_call - def index_cert_se_get_without_preload_content( + def index_cert_ir_security_alerts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -66513,9 +66513,9 @@ def index_cert_se_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-se\" + """Return vulnerability data stored in index \"cert-ir-security-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ir-security-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert IR Security Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ir-security-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ir-security-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -66587,7 +66587,7 @@ def index_cert_se_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_se_get_serialize( + _param = self._index_cert_ir_security_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -66619,7 +66619,7 @@ def index_cert_se_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertIRSecurityAlertPaginatePagination", '404': "str", '500': "str", } @@ -66630,7 +66630,7 @@ def index_cert_se_get_without_preload_content( return response_data.response - def _index_cert_se_get_serialize( + def _index_cert_ir_security_alerts_get_serialize( self, page, limit, @@ -66798,7 +66798,7 @@ def _index_cert_se_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-se', + resource_path='/v3/index/cert-ir-security-alerts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -66815,7 +66815,7 @@ def _index_cert_se_get_serialize( @validate_call - def index_cert_ua_get( + def index_cert_se_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -66853,10 +66853,10 @@ def index_cert_ua_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination: - """Return vulnerability data stored in index \"cert-ua\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination: + """Return vulnerability data stored in index \"cert-se\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` :param page: set the page number of the response :type page: int @@ -66928,7 +66928,7 @@ def index_cert_ua_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ua_get_serialize( + _param = self._index_cert_se_get_serialize( page=page, limit=limit, cursor=cursor, @@ -66960,7 +66960,7 @@ def index_cert_ua_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", '404': "str", '500': "str", } @@ -66976,7 +66976,7 @@ def index_cert_ua_get( @validate_call - def index_cert_ua_get_with_http_info( + def index_cert_se_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67014,10 +67014,10 @@ def index_cert_ua_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination]: - """Return vulnerability data stored in index \"cert-ua\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination]: + """Return vulnerability data stored in index \"cert-se\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` :param page: set the page number of the response :type page: int @@ -67089,7 +67089,7 @@ def index_cert_ua_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ua_get_serialize( + _param = self._index_cert_se_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67121,7 +67121,7 @@ def index_cert_ua_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", '404': "str", '500': "str", } @@ -67137,7 +67137,7 @@ def index_cert_ua_get_with_http_info( @validate_call - def index_cert_ua_get_without_preload_content( + def index_cert_se_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67176,9 +67176,9 @@ def index_cert_ua_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cert-ua\" + """Return vulnerability data stored in index \"cert-se\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-se index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert SE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-se?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-se?cursor=` :param page: set the page number of the response :type page: int @@ -67250,7 +67250,7 @@ def index_cert_ua_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cert_ua_get_serialize( + _param = self._index_cert_se_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67282,7 +67282,7 @@ def index_cert_ua_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertSEPaginatePagination", '404': "str", '500': "str", } @@ -67293,7 +67293,7 @@ def index_cert_ua_get_without_preload_content( return response_data.response - def _index_cert_ua_get_serialize( + def _index_cert_se_get_serialize( self, page, limit, @@ -67461,7 +67461,7 @@ def _index_cert_ua_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cert-ua', + resource_path='/v3/index/cert-se', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -67478,7 +67478,7 @@ def _index_cert_ua_get_serialize( @validate_call - def index_certeu_get( + def index_cert_ua_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67516,10 +67516,10 @@ def index_certeu_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"certeu\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination: + """Return vulnerability data stored in index \"cert-ua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` :param page: set the page number of the response :type page: int @@ -67591,7 +67591,7 @@ def index_certeu_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certeu_get_serialize( + _param = self._index_cert_ua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67623,7 +67623,7 @@ def index_certeu_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", '404': "str", '500': "str", } @@ -67639,7 +67639,7 @@ def index_certeu_get( @validate_call - def index_certeu_get_with_http_info( + def index_cert_ua_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67677,10 +67677,10 @@ def index_certeu_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"certeu\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination]: + """Return vulnerability data stored in index \"cert-ua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` :param page: set the page number of the response :type page: int @@ -67752,7 +67752,7 @@ def index_certeu_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certeu_get_serialize( + _param = self._index_cert_ua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67784,7 +67784,7 @@ def index_certeu_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", '404': "str", '500': "str", } @@ -67800,7 +67800,7 @@ def index_certeu_get_with_http_info( @validate_call - def index_certeu_get_without_preload_content( + def index_cert_ua_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -67839,9 +67839,9 @@ def index_certeu_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"certeu\" + """Return vulnerability data stored in index \"cert-ua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cert-ua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert UA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cert-ua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cert-ua?cursor=` :param page: set the page number of the response :type page: int @@ -67913,7 +67913,7 @@ def index_certeu_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certeu_get_serialize( + _param = self._index_cert_ua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -67945,7 +67945,7 @@ def index_certeu_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertUAPaginatePagination", '404': "str", '500': "str", } @@ -67956,7 +67956,7 @@ def index_certeu_get_without_preload_content( return response_data.response - def _index_certeu_get_serialize( + def _index_cert_ua_get_serialize( self, page, limit, @@ -68124,7 +68124,7 @@ def _index_certeu_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/certeu', + resource_path='/v3/index/cert-ua', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -68141,7 +68141,7 @@ def _index_certeu_get_serialize( @validate_call - def index_certfr_get( + def index_certeu_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -68179,10 +68179,10 @@ def index_certfr_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"certfr\" + ) -> RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"certeu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` :param page: set the page number of the response :type page: int @@ -68254,7 +68254,7 @@ def index_certfr_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certfr_get_serialize( + _param = self._index_certeu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -68286,7 +68286,7 @@ def index_certfr_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -68302,7 +68302,7 @@ def index_certfr_get( @validate_call - def index_certfr_get_with_http_info( + def index_certeu_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -68340,10 +68340,10 @@ def index_certfr_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"certfr\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"certeu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` :param page: set the page number of the response :type page: int @@ -68415,7 +68415,7 @@ def index_certfr_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certfr_get_serialize( + _param = self._index_certeu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -68447,7 +68447,7 @@ def index_certfr_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -68463,7 +68463,7 @@ def index_certfr_get_with_http_info( @validate_call - def index_certfr_get_without_preload_content( + def index_certeu_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -68502,9 +68502,9 @@ def index_certfr_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"certfr\" + """Return vulnerability data stored in index \"certeu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certeu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT-EU The Computer Emergency Response Team for the EU Institutions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certeu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certeu?cursor=` :param page: set the page number of the response :type page: int @@ -68576,7 +68576,7 @@ def index_certfr_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_certfr_get_serialize( + _param = self._index_certeu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -68608,7 +68608,7 @@ def index_certfr_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCERTEUAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -68619,7 +68619,7 @@ def index_certfr_get_without_preload_content( return response_data.response - def _index_certfr_get_serialize( + def _index_certeu_get_serialize( self, page, limit, @@ -68787,7 +68787,7 @@ def _index_certfr_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/certfr', + resource_path='/v3/index/certeu', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -68804,7 +68804,7 @@ def _index_certfr_get_serialize( @validate_call - def index_chainguard_get( + def index_certfr_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -68842,10 +68842,10 @@ def index_chainguard_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination: - """Return vulnerability data stored in index \"chainguard\" + ) -> RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"certfr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` :param page: set the page number of the response :type page: int @@ -68917,7 +68917,7 @@ def index_chainguard_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chainguard_get_serialize( + _param = self._index_certfr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -68949,7 +68949,7 @@ def index_chainguard_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -68965,7 +68965,7 @@ def index_chainguard_get( @validate_call - def index_chainguard_get_with_http_info( + def index_certfr_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69003,10 +69003,10 @@ def index_chainguard_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination]: - """Return vulnerability data stored in index \"chainguard\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"certfr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` :param page: set the page number of the response :type page: int @@ -69078,7 +69078,7 @@ def index_chainguard_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chainguard_get_serialize( + _param = self._index_certfr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69110,7 +69110,7 @@ def index_chainguard_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -69126,7 +69126,7 @@ def index_chainguard_get_with_http_info( @validate_call - def index_chainguard_get_without_preload_content( + def index_certfr_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69165,9 +69165,9 @@ def index_chainguard_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"chainguard\" + """Return vulnerability data stored in index \"certfr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the certfr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cert FR Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/certfr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/certfr?cursor=` :param page: set the page number of the response :type page: int @@ -69239,7 +69239,7 @@ def index_chainguard_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chainguard_get_serialize( + _param = self._index_certfr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69271,7 +69271,7 @@ def index_chainguard_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCertFRAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -69282,7 +69282,7 @@ def index_chainguard_get_without_preload_content( return response_data.response - def _index_chainguard_get_serialize( + def _index_certfr_get_serialize( self, page, limit, @@ -69450,7 +69450,7 @@ def _index_chainguard_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/chainguard', + resource_path='/v3/index/certfr', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -69467,7 +69467,7 @@ def _index_chainguard_get_serialize( @validate_call - def index_checkpoint_get( + def index_chainguard_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69505,10 +69505,10 @@ def index_checkpoint_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination: - """Return vulnerability data stored in index \"checkpoint\" + ) -> RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination: + """Return vulnerability data stored in index \"chainguard\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` :param page: set the page number of the response :type page: int @@ -69580,7 +69580,7 @@ def index_checkpoint_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_checkpoint_get_serialize( + _param = self._index_chainguard_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69612,7 +69612,7 @@ def index_checkpoint_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", '404': "str", '500': "str", } @@ -69628,7 +69628,7 @@ def index_checkpoint_get( @validate_call - def index_checkpoint_get_with_http_info( + def index_chainguard_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69666,10 +69666,10 @@ def index_checkpoint_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination]: - """Return vulnerability data stored in index \"checkpoint\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination]: + """Return vulnerability data stored in index \"chainguard\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` :param page: set the page number of the response :type page: int @@ -69741,7 +69741,7 @@ def index_checkpoint_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_checkpoint_get_serialize( + _param = self._index_chainguard_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69773,7 +69773,7 @@ def index_checkpoint_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", '404': "str", '500': "str", } @@ -69789,7 +69789,7 @@ def index_checkpoint_get_with_http_info( @validate_call - def index_checkpoint_get_without_preload_content( + def index_chainguard_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -69828,9 +69828,9 @@ def index_checkpoint_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"checkpoint\" + """Return vulnerability data stored in index \"chainguard\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chainguard index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ChainGuard Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chainguard?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chainguard?cursor=` :param page: set the page number of the response :type page: int @@ -69902,7 +69902,7 @@ def index_checkpoint_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_checkpoint_get_serialize( + _param = self._index_chainguard_get_serialize( page=page, limit=limit, cursor=cursor, @@ -69934,7 +69934,7 @@ def index_checkpoint_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChainGuardPaginatePagination", '404': "str", '500': "str", } @@ -69945,7 +69945,7 @@ def index_checkpoint_get_without_preload_content( return response_data.response - def _index_checkpoint_get_serialize( + def _index_chainguard_get_serialize( self, page, limit, @@ -70113,7 +70113,7 @@ def _index_checkpoint_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/checkpoint', + resource_path='/v3/index/chainguard', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -70130,7 +70130,7 @@ def _index_checkpoint_get_serialize( @validate_call - def index_chrome_get( + def index_checkpoint_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70168,10 +70168,10 @@ def index_chrome_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination: - """Return vulnerability data stored in index \"chrome\" + ) -> RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination: + """Return vulnerability data stored in index \"checkpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` :param page: set the page number of the response :type page: int @@ -70243,7 +70243,7 @@ def index_chrome_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chrome_get_serialize( + _param = self._index_checkpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -70275,7 +70275,7 @@ def index_chrome_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", '404': "str", '500': "str", } @@ -70291,7 +70291,7 @@ def index_chrome_get( @validate_call - def index_chrome_get_with_http_info( + def index_checkpoint_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70329,10 +70329,10 @@ def index_chrome_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination]: - """Return vulnerability data stored in index \"chrome\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination]: + """Return vulnerability data stored in index \"checkpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` :param page: set the page number of the response :type page: int @@ -70404,7 +70404,7 @@ def index_chrome_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chrome_get_serialize( + _param = self._index_checkpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -70436,7 +70436,7 @@ def index_chrome_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", '404': "str", '500': "str", } @@ -70452,7 +70452,7 @@ def index_chrome_get_with_http_info( @validate_call - def index_chrome_get_without_preload_content( + def index_checkpoint_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70491,9 +70491,9 @@ def index_chrome_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"chrome\" + """Return vulnerability data stored in index \"checkpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the checkpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CheckPoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/checkpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/checkpoint?cursor=` :param page: set the page number of the response :type page: int @@ -70565,7 +70565,7 @@ def index_chrome_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_chrome_get_serialize( + _param = self._index_checkpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -70597,7 +70597,7 @@ def index_chrome_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCheckPointPaginatePagination", '404': "str", '500': "str", } @@ -70608,7 +70608,7 @@ def index_chrome_get_without_preload_content( return response_data.response - def _index_chrome_get_serialize( + def _index_checkpoint_get_serialize( self, page, limit, @@ -70776,7 +70776,7 @@ def _index_chrome_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/chrome', + resource_path='/v3/index/checkpoint', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -70793,7 +70793,7 @@ def _index_chrome_get_serialize( @validate_call - def index_ciena_get( + def index_chrome_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70831,10 +70831,10 @@ def index_ciena_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination: - """Return vulnerability data stored in index \"ciena\" + ) -> RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination: + """Return vulnerability data stored in index \"chrome\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` :param page: set the page number of the response :type page: int @@ -70906,7 +70906,7 @@ def index_ciena_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ciena_get_serialize( + _param = self._index_chrome_get_serialize( page=page, limit=limit, cursor=cursor, @@ -70938,7 +70938,7 @@ def index_ciena_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", '404': "str", '500': "str", } @@ -70954,7 +70954,7 @@ def index_ciena_get( @validate_call - def index_ciena_get_with_http_info( + def index_chrome_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -70992,10 +70992,10 @@ def index_ciena_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination]: - """Return vulnerability data stored in index \"ciena\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination]: + """Return vulnerability data stored in index \"chrome\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` :param page: set the page number of the response :type page: int @@ -71067,7 +71067,7 @@ def index_ciena_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ciena_get_serialize( + _param = self._index_chrome_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71099,7 +71099,7 @@ def index_ciena_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", '404': "str", '500': "str", } @@ -71115,7 +71115,7 @@ def index_ciena_get_with_http_info( @validate_call - def index_ciena_get_without_preload_content( + def index_chrome_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -71154,9 +71154,9 @@ def index_ciena_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ciena\" + """Return vulnerability data stored in index \"chrome\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the chrome index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Google Chrome Release Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/chrome?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/chrome?cursor=` :param page: set the page number of the response :type page: int @@ -71228,7 +71228,7 @@ def index_ciena_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ciena_get_serialize( + _param = self._index_chrome_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71260,7 +71260,7 @@ def index_ciena_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryChromePaginatePagination", '404': "str", '500': "str", } @@ -71271,7 +71271,7 @@ def index_ciena_get_without_preload_content( return response_data.response - def _index_ciena_get_serialize( + def _index_chrome_get_serialize( self, page, limit, @@ -71439,7 +71439,7 @@ def _index_ciena_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ciena', + resource_path='/v3/index/chrome', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -71456,7 +71456,7 @@ def _index_ciena_get_serialize( @validate_call - def index_circl_get( + def index_ciena_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -71494,10 +71494,10 @@ def index_circl_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"circl\" + ) -> RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination: + """Return vulnerability data stored in index \"ciena\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` :param page: set the page number of the response :type page: int @@ -71569,7 +71569,7 @@ def index_circl_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_circl_get_serialize( + _param = self._index_ciena_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71601,7 +71601,7 @@ def index_circl_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", '404': "str", '500': "str", } @@ -71617,7 +71617,7 @@ def index_circl_get( @validate_call - def index_circl_get_with_http_info( + def index_ciena_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -71655,10 +71655,10 @@ def index_circl_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"circl\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination]: + """Return vulnerability data stored in index \"ciena\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` :param page: set the page number of the response :type page: int @@ -71730,7 +71730,7 @@ def index_circl_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_circl_get_serialize( + _param = self._index_ciena_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71762,7 +71762,7 @@ def index_circl_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", '404': "str", '500': "str", } @@ -71778,7 +71778,7 @@ def index_circl_get_with_http_info( @validate_call - def index_circl_get_without_preload_content( + def index_ciena_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -71817,9 +71817,9 @@ def index_circl_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"circl\" + """Return vulnerability data stored in index \"ciena\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ciena index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ciena ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ciena?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ciena?cursor=` :param page: set the page number of the response :type page: int @@ -71891,7 +71891,7 @@ def index_circl_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_circl_get_serialize( + _param = self._index_ciena_get_serialize( page=page, limit=limit, cursor=cursor, @@ -71923,7 +71923,7 @@ def index_circl_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCienaPaginatePagination", '404': "str", '500': "str", } @@ -71934,7 +71934,7 @@ def index_circl_get_without_preload_content( return response_data.response - def _index_circl_get_serialize( + def _index_ciena_get_serialize( self, page, limit, @@ -72102,7 +72102,7 @@ def _index_circl_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/circl', + resource_path='/v3/index/ciena', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -72119,7 +72119,7 @@ def _index_circl_get_serialize( @validate_call - def index_cisa_alerts_get( + def index_circl_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72157,10 +72157,10 @@ def index_cisa_alerts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination: - """Return vulnerability data stored in index \"cisa-alerts\" + ) -> RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"circl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` :param page: set the page number of the response :type page: int @@ -72232,7 +72232,7 @@ def index_cisa_alerts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_alerts_get_serialize( + _param = self._index_circl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -72264,7 +72264,7 @@ def index_cisa_alerts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -72280,7 +72280,7 @@ def index_cisa_alerts_get( @validate_call - def index_cisa_alerts_get_with_http_info( + def index_circl_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72318,10 +72318,10 @@ def index_cisa_alerts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination]: - """Return vulnerability data stored in index \"cisa-alerts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"circl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` :param page: set the page number of the response :type page: int @@ -72393,7 +72393,7 @@ def index_cisa_alerts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_alerts_get_serialize( + _param = self._index_circl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -72425,7 +72425,7 @@ def index_cisa_alerts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -72441,7 +72441,7 @@ def index_cisa_alerts_get_with_http_info( @validate_call - def index_cisa_alerts_get_without_preload_content( + def index_circl_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72480,9 +72480,9 @@ def index_cisa_alerts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisa-alerts\" + """Return vulnerability data stored in index \"circl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the circl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Computer Incident Response Center Luxembourg (CIRCL) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/circl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/circl?cursor=` :param page: set the page number of the response :type page: int @@ -72554,7 +72554,7 @@ def index_cisa_alerts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_alerts_get_serialize( + _param = self._index_circl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -72586,7 +72586,7 @@ def index_cisa_alerts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCirclAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -72597,7 +72597,7 @@ def index_cisa_alerts_get_without_preload_content( return response_data.response - def _index_cisa_alerts_get_serialize( + def _index_circl_get_serialize( self, page, limit, @@ -72765,7 +72765,7 @@ def _index_cisa_alerts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisa-alerts', + resource_path='/v3/index/circl', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -72782,7 +72782,7 @@ def _index_cisa_alerts_get_serialize( @validate_call - def index_cisa_csaf_get( + def index_cisa_alerts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72820,10 +72820,10 @@ def index_cisa_csaf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination: - """Return vulnerability data stored in index \"cisa-csaf\" + ) -> RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination: + """Return vulnerability data stored in index \"cisa-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -72895,7 +72895,7 @@ def index_cisa_csaf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_csaf_get_serialize( + _param = self._index_cisa_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -72927,7 +72927,7 @@ def index_cisa_csaf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", '404': "str", '500': "str", } @@ -72943,7 +72943,7 @@ def index_cisa_csaf_get( @validate_call - def index_cisa_csaf_get_with_http_info( + def index_cisa_alerts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -72981,10 +72981,10 @@ def index_cisa_csaf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination]: - """Return vulnerability data stored in index \"cisa-csaf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination]: + """Return vulnerability data stored in index \"cisa-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -73056,7 +73056,7 @@ def index_cisa_csaf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_csaf_get_serialize( + _param = self._index_cisa_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73088,7 +73088,7 @@ def index_cisa_csaf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", '404': "str", '500': "str", } @@ -73104,7 +73104,7 @@ def index_cisa_csaf_get_with_http_info( @validate_call - def index_cisa_csaf_get_without_preload_content( + def index_cisa_alerts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -73143,9 +73143,9 @@ def index_cisa_csaf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisa-csaf\" + """Return vulnerability data stored in index \"cisa-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -73217,7 +73217,7 @@ def index_cisa_csaf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_csaf_get_serialize( + _param = self._index_cisa_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73249,7 +73249,7 @@ def index_cisa_csaf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCISAAlertPaginatePagination", '404': "str", '500': "str", } @@ -73260,7 +73260,7 @@ def index_cisa_csaf_get_without_preload_content( return response_data.response - def _index_cisa_csaf_get_serialize( + def _index_cisa_alerts_get_serialize( self, page, limit, @@ -73428,7 +73428,7 @@ def _index_cisa_csaf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisa-csaf', + resource_path='/v3/index/cisa-alerts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -73445,7 +73445,7 @@ def _index_cisa_csaf_get_serialize( @validate_call - def index_cisa_kev_get( + def index_cisa_csaf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -73483,10 +73483,10 @@ def index_cisa_kev_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination: - """Return vulnerability data stored in index \"cisa-kev\" + ) -> RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination: + """Return vulnerability data stored in index \"cisa-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -73558,7 +73558,7 @@ def index_cisa_kev_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_kev_get_serialize( + _param = self._index_cisa_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73590,7 +73590,7 @@ def index_cisa_kev_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", '404': "str", '500': "str", } @@ -73606,7 +73606,7 @@ def index_cisa_kev_get( @validate_call - def index_cisa_kev_get_with_http_info( + def index_cisa_csaf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -73644,10 +73644,10 @@ def index_cisa_kev_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination]: - """Return vulnerability data stored in index \"cisa-kev\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination]: + """Return vulnerability data stored in index \"cisa-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -73719,7 +73719,7 @@ def index_cisa_kev_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_kev_get_serialize( + _param = self._index_cisa_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73751,7 +73751,7 @@ def index_cisa_kev_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", '404': "str", '500': "str", } @@ -73767,7 +73767,7 @@ def index_cisa_kev_get_with_http_info( @validate_call - def index_cisa_kev_get_without_preload_content( + def index_cisa_csaf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -73806,9 +73806,9 @@ def index_cisa_kev_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisa-kev\" + """Return vulnerability data stored in index \"cisa-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA Security Advisories - CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -73880,7 +73880,7 @@ def index_cisa_kev_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisa_kev_get_serialize( + _param = self._index_cisa_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -73912,7 +73912,7 @@ def index_cisa_kev_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCisaCsafAdvPaginatePagination", '404': "str", '500': "str", } @@ -73923,7 +73923,7 @@ def index_cisa_kev_get_without_preload_content( return response_data.response - def _index_cisa_kev_get_serialize( + def _index_cisa_csaf_get_serialize( self, page, limit, @@ -74091,7 +74091,7 @@ def _index_cisa_kev_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisa-kev', + resource_path='/v3/index/cisa-csaf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -74108,7 +74108,7 @@ def _index_cisa_kev_get_serialize( @validate_call - def index_cisco_csaf_get( + def index_cisa_kev_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74146,10 +74146,10 @@ def index_cisco_csaf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination: - """Return vulnerability data stored in index \"cisco-csaf\" + ) -> RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination: + """Return vulnerability data stored in index \"cisa-kev\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` :param page: set the page number of the response :type page: int @@ -74221,7 +74221,7 @@ def index_cisco_csaf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_csaf_get_serialize( + _param = self._index_cisa_kev_get_serialize( page=page, limit=limit, cursor=cursor, @@ -74253,7 +74253,7 @@ def index_cisco_csaf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -74269,7 +74269,7 @@ def index_cisco_csaf_get( @validate_call - def index_cisco_csaf_get_with_http_info( + def index_cisa_kev_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74307,10 +74307,10 @@ def index_cisco_csaf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination]: - """Return vulnerability data stored in index \"cisco-csaf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination]: + """Return vulnerability data stored in index \"cisa-kev\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` :param page: set the page number of the response :type page: int @@ -74382,7 +74382,7 @@ def index_cisco_csaf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_csaf_get_serialize( + _param = self._index_cisa_kev_get_serialize( page=page, limit=limit, cursor=cursor, @@ -74414,7 +74414,7 @@ def index_cisco_csaf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -74430,7 +74430,7 @@ def index_cisco_csaf_get_with_http_info( @validate_call - def index_cisco_csaf_get_without_preload_content( + def index_cisa_kev_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74469,9 +74469,9 @@ def index_cisco_csaf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisco-csaf\" + """Return vulnerability data stored in index \"cisa-kev\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisa-kev index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CISA KEV (Known Exploited Vulnerabilities) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisa-kev?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisa-kev?cursor=` :param page: set the page number of the response :type page: int @@ -74543,7 +74543,7 @@ def index_cisco_csaf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_csaf_get_serialize( + _param = self._index_cisa_kev_get_serialize( page=page, limit=limit, cursor=cursor, @@ -74575,7 +74575,7 @@ def index_cisco_csaf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKEVCatalogVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -74586,7 +74586,7 @@ def index_cisco_csaf_get_without_preload_content( return response_data.response - def _index_cisco_csaf_get_serialize( + def _index_cisa_kev_get_serialize( self, page, limit, @@ -74754,7 +74754,7 @@ def _index_cisco_csaf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisco-csaf', + resource_path='/v3/index/cisa-kev', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -74771,7 +74771,7 @@ def _index_cisco_csaf_get_serialize( @validate_call - def index_cisco_get( + def index_cisco_csaf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74809,10 +74809,10 @@ def index_cisco_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"cisco\" + ) -> RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination: + """Return vulnerability data stored in index \"cisco-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -74884,7 +74884,7 @@ def index_cisco_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_get_serialize( + _param = self._index_cisco_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -74916,7 +74916,7 @@ def index_cisco_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", '404': "str", '500': "str", } @@ -74932,7 +74932,7 @@ def index_cisco_get( @validate_call - def index_cisco_get_with_http_info( + def index_cisco_csaf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -74970,10 +74970,10 @@ def index_cisco_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"cisco\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination]: + """Return vulnerability data stored in index \"cisco-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -75045,7 +75045,7 @@ def index_cisco_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_get_serialize( + _param = self._index_cisco_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75077,7 +75077,7 @@ def index_cisco_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", '404': "str", '500': "str", } @@ -75093,7 +75093,7 @@ def index_cisco_get_with_http_info( @validate_call - def index_cisco_get_without_preload_content( + def index_cisco_csaf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -75132,9 +75132,9 @@ def index_cisco_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisco\" + """Return vulnerability data stored in index \"cisco-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -75206,7 +75206,7 @@ def index_cisco_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_get_serialize( + _param = self._index_cisco_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75238,7 +75238,7 @@ def index_cisco_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoCSAFPaginatePagination", '404': "str", '500': "str", } @@ -75249,7 +75249,7 @@ def index_cisco_get_without_preload_content( return response_data.response - def _index_cisco_get_serialize( + def _index_cisco_csaf_get_serialize( self, page, limit, @@ -75417,7 +75417,7 @@ def _index_cisco_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisco', + resource_path='/v3/index/cisco-csaf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -75434,7 +75434,7 @@ def _index_cisco_get_serialize( @validate_call - def index_cisco_known_good_values_get( + def index_cisco_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -75472,10 +75472,10 @@ def index_cisco_known_good_values_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination: - """Return vulnerability data stored in index \"cisco-known-good-values\" + ) -> RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"cisco\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` :param page: set the page number of the response :type page: int @@ -75547,7 +75547,7 @@ def index_cisco_known_good_values_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_known_good_values_get_serialize( + _param = self._index_cisco_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75579,7 +75579,7 @@ def index_cisco_known_good_values_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -75595,7 +75595,7 @@ def index_cisco_known_good_values_get( @validate_call - def index_cisco_known_good_values_get_with_http_info( + def index_cisco_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -75633,10 +75633,10 @@ def index_cisco_known_good_values_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination]: - """Return vulnerability data stored in index \"cisco-known-good-values\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"cisco\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` :param page: set the page number of the response :type page: int @@ -75708,7 +75708,7 @@ def index_cisco_known_good_values_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_known_good_values_get_serialize( + _param = self._index_cisco_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75740,7 +75740,7 @@ def index_cisco_known_good_values_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -75756,7 +75756,7 @@ def index_cisco_known_good_values_get_with_http_info( @validate_call - def index_cisco_known_good_values_get_without_preload_content( + def index_cisco_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -75795,9 +75795,9 @@ def index_cisco_known_good_values_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisco-known-good-values\" + """Return vulnerability data stored in index \"cisco\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco?cursor=` :param page: set the page number of the response :type page: int @@ -75869,7 +75869,7 @@ def index_cisco_known_good_values_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_known_good_values_get_serialize( + _param = self._index_cisco_get_serialize( page=page, limit=limit, cursor=cursor, @@ -75901,7 +75901,7 @@ def index_cisco_known_good_values_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -75912,7 +75912,7 @@ def index_cisco_known_good_values_get_without_preload_content( return response_data.response - def _index_cisco_known_good_values_get_serialize( + def _index_cisco_get_serialize( self, page, limit, @@ -76080,7 +76080,7 @@ def _index_cisco_known_good_values_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisco-known-good-values', + resource_path='/v3/index/cisco', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -76097,7 +76097,7 @@ def _index_cisco_known_good_values_get_serialize( @validate_call - def index_cisco_talos_get( + def index_cisco_known_good_values_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76135,10 +76135,10 @@ def index_cisco_talos_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"cisco-talos\" + ) -> RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination: + """Return vulnerability data stored in index \"cisco-known-good-values\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` :param page: set the page number of the response :type page: int @@ -76210,7 +76210,7 @@ def index_cisco_talos_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_talos_get_serialize( + _param = self._index_cisco_known_good_values_get_serialize( page=page, limit=limit, cursor=cursor, @@ -76242,7 +76242,7 @@ def index_cisco_talos_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", '404': "str", '500': "str", } @@ -76258,7 +76258,7 @@ def index_cisco_talos_get( @validate_call - def index_cisco_talos_get_with_http_info( + def index_cisco_known_good_values_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76296,10 +76296,10 @@ def index_cisco_talos_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"cisco-talos\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination]: + """Return vulnerability data stored in index \"cisco-known-good-values\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` :param page: set the page number of the response :type page: int @@ -76371,7 +76371,7 @@ def index_cisco_talos_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_talos_get_serialize( + _param = self._index_cisco_known_good_values_get_serialize( page=page, limit=limit, cursor=cursor, @@ -76403,7 +76403,7 @@ def index_cisco_talos_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", '404': "str", '500': "str", } @@ -76419,7 +76419,7 @@ def index_cisco_talos_get_with_http_info( @validate_call - def index_cisco_talos_get_without_preload_content( + def index_cisco_known_good_values_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76458,9 +76458,9 @@ def index_cisco_talos_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cisco-talos\" + """Return vulnerability data stored in index \"cisco-known-good-values\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-known-good-values index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Known Good Values ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-known-good-values?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-known-good-values?cursor=` :param page: set the page number of the response :type page: int @@ -76532,7 +76532,7 @@ def index_cisco_talos_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cisco_talos_get_serialize( + _param = self._index_cisco_known_good_values_get_serialize( page=page, limit=limit, cursor=cursor, @@ -76564,7 +76564,7 @@ def index_cisco_talos_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCiscoKnownGoodValuePaginatePagination", '404': "str", '500': "str", } @@ -76575,7 +76575,7 @@ def index_cisco_talos_get_without_preload_content( return response_data.response - def _index_cisco_talos_get_serialize( + def _index_cisco_known_good_values_get_serialize( self, page, limit, @@ -76743,7 +76743,7 @@ def _index_cisco_talos_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cisco-talos', + resource_path='/v3/index/cisco-known-good-values', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -76760,7 +76760,7 @@ def _index_cisco_talos_get_serialize( @validate_call - def index_citrix_get( + def index_cisco_talos_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76798,10 +76798,10 @@ def index_citrix_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"citrix\" + ) -> RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"cisco-talos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` :param page: set the page number of the response :type page: int @@ -76873,7 +76873,7 @@ def index_citrix_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_citrix_get_serialize( + _param = self._index_cisco_talos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -76905,7 +76905,7 @@ def index_citrix_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -76921,7 +76921,7 @@ def index_citrix_get( @validate_call - def index_citrix_get_with_http_info( + def index_cisco_talos_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -76959,10 +76959,10 @@ def index_citrix_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"citrix\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"cisco-talos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` :param page: set the page number of the response :type page: int @@ -77034,7 +77034,7 @@ def index_citrix_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_citrix_get_serialize( + _param = self._index_cisco_talos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77066,7 +77066,7 @@ def index_citrix_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77082,7 +77082,7 @@ def index_citrix_get_with_http_info( @validate_call - def index_citrix_get_without_preload_content( + def index_cisco_talos_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -77121,9 +77121,9 @@ def index_citrix_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"citrix\" + """Return vulnerability data stored in index \"cisco-talos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cisco-talos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Cisco Talos Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cisco-talos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cisco-talos?cursor=` :param page: set the page number of the response :type page: int @@ -77195,7 +77195,7 @@ def index_citrix_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_citrix_get_serialize( + _param = self._index_cisco_talos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77227,7 +77227,7 @@ def index_citrix_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTalosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77238,7 +77238,7 @@ def index_citrix_get_without_preload_content( return response_data.response - def _index_citrix_get_serialize( + def _index_cisco_talos_get_serialize( self, page, limit, @@ -77406,7 +77406,7 @@ def _index_citrix_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/citrix', + resource_path='/v3/index/cisco-talos', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -77423,7 +77423,7 @@ def _index_citrix_get_serialize( @validate_call - def index_claroty_get( + def index_citrix_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -77461,10 +77461,10 @@ def index_claroty_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination: - """Return vulnerability data stored in index \"claroty\" + ) -> RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"citrix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` :param page: set the page number of the response :type page: int @@ -77536,7 +77536,7 @@ def index_claroty_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_claroty_get_serialize( + _param = self._index_citrix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77568,7 +77568,7 @@ def index_claroty_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77584,7 +77584,7 @@ def index_claroty_get( @validate_call - def index_claroty_get_with_http_info( + def index_citrix_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -77622,10 +77622,10 @@ def index_claroty_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination]: - """Return vulnerability data stored in index \"claroty\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"citrix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` :param page: set the page number of the response :type page: int @@ -77697,7 +77697,7 @@ def index_claroty_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_claroty_get_serialize( + _param = self._index_citrix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77729,7 +77729,7 @@ def index_claroty_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77745,7 +77745,7 @@ def index_claroty_get_with_http_info( @validate_call - def index_claroty_get_without_preload_content( + def index_citrix_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -77784,9 +77784,9 @@ def index_claroty_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"claroty\" + """Return vulnerability data stored in index \"citrix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the citrix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Citrix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/citrix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/citrix?cursor=` :param page: set the page number of the response :type page: int @@ -77858,7 +77858,7 @@ def index_claroty_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_claroty_get_serialize( + _param = self._index_citrix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -77890,7 +77890,7 @@ def index_claroty_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCitrixAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -77901,7 +77901,7 @@ def index_claroty_get_without_preload_content( return response_data.response - def _index_claroty_get_serialize( + def _index_citrix_get_serialize( self, page, limit, @@ -78069,7 +78069,7 @@ def _index_claroty_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/claroty', + resource_path='/v3/index/citrix', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -78086,7 +78086,7 @@ def _index_claroty_get_serialize( @validate_call - def index_cloudbees_get( + def index_claroty_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78124,10 +78124,10 @@ def index_cloudbees_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination: - """Return vulnerability data stored in index \"cloudbees\" + ) -> RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination: + """Return vulnerability data stored in index \"claroty\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` :param page: set the page number of the response :type page: int @@ -78199,7 +78199,7 @@ def index_cloudbees_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudbees_get_serialize( + _param = self._index_claroty_get_serialize( page=page, limit=limit, cursor=cursor, @@ -78231,7 +78231,7 @@ def index_cloudbees_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -78247,7 +78247,7 @@ def index_cloudbees_get( @validate_call - def index_cloudbees_get_with_http_info( + def index_claroty_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78285,10 +78285,10 @@ def index_cloudbees_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination]: - """Return vulnerability data stored in index \"cloudbees\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination]: + """Return vulnerability data stored in index \"claroty\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` :param page: set the page number of the response :type page: int @@ -78360,7 +78360,7 @@ def index_cloudbees_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudbees_get_serialize( + _param = self._index_claroty_get_serialize( page=page, limit=limit, cursor=cursor, @@ -78392,7 +78392,7 @@ def index_cloudbees_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -78408,7 +78408,7 @@ def index_cloudbees_get_with_http_info( @validate_call - def index_cloudbees_get_without_preload_content( + def index_claroty_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78447,9 +78447,9 @@ def index_cloudbees_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cloudbees\" + """Return vulnerability data stored in index \"claroty\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the claroty index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Team 82: The Claroty Research Team ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/claroty?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/claroty?cursor=` :param page: set the page number of the response :type page: int @@ -78521,7 +78521,7 @@ def index_cloudbees_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudbees_get_serialize( + _param = self._index_claroty_get_serialize( page=page, limit=limit, cursor=cursor, @@ -78553,7 +78553,7 @@ def index_cloudbees_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryClarotyVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -78564,7 +78564,7 @@ def index_cloudbees_get_without_preload_content( return response_data.response - def _index_cloudbees_get_serialize( + def _index_claroty_get_serialize( self, page, limit, @@ -78732,7 +78732,7 @@ def _index_cloudbees_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cloudbees', + resource_path='/v3/index/claroty', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -78749,7 +78749,7 @@ def _index_cloudbees_get_serialize( @validate_call - def index_cloudvulndb_get( + def index_cloudbees_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78787,10 +78787,10 @@ def index_cloudvulndb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"cloudvulndb\" + ) -> RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination: + """Return vulnerability data stored in index \"cloudbees\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` :param page: set the page number of the response :type page: int @@ -78862,7 +78862,7 @@ def index_cloudvulndb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudvulndb_get_serialize( + _param = self._index_cloudbees_get_serialize( page=page, limit=limit, cursor=cursor, @@ -78894,7 +78894,7 @@ def index_cloudvulndb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", '404': "str", '500': "str", } @@ -78910,7 +78910,7 @@ def index_cloudvulndb_get( @validate_call - def index_cloudvulndb_get_with_http_info( + def index_cloudbees_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -78948,10 +78948,10 @@ def index_cloudvulndb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"cloudvulndb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination]: + """Return vulnerability data stored in index \"cloudbees\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` :param page: set the page number of the response :type page: int @@ -79023,7 +79023,7 @@ def index_cloudvulndb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudvulndb_get_serialize( + _param = self._index_cloudbees_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79055,7 +79055,7 @@ def index_cloudvulndb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", '404': "str", '500': "str", } @@ -79071,7 +79071,7 @@ def index_cloudvulndb_get_with_http_info( @validate_call - def index_cloudvulndb_get_without_preload_content( + def index_cloudbees_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -79110,9 +79110,9 @@ def index_cloudvulndb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cloudvulndb\" + """Return vulnerability data stored in index \"cloudbees\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudbees index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudBees Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudbees?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudbees?cursor=` :param page: set the page number of the response :type page: int @@ -79184,7 +79184,7 @@ def index_cloudvulndb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cloudvulndb_get_serialize( + _param = self._index_cloudbees_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79216,7 +79216,7 @@ def index_cloudvulndb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudBeesPaginatePagination", '404': "str", '500': "str", } @@ -79227,7 +79227,7 @@ def index_cloudvulndb_get_without_preload_content( return response_data.response - def _index_cloudvulndb_get_serialize( + def _index_cloudbees_get_serialize( self, page, limit, @@ -79395,7 +79395,7 @@ def _index_cloudvulndb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cloudvulndb', + resource_path='/v3/index/cloudbees', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -79412,7 +79412,7 @@ def _index_cloudvulndb_get_serialize( @validate_call - def index_cnnvd_get( + def index_cloudvulndb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -79450,10 +79450,10 @@ def index_cnnvd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination: - """Return vulnerability data stored in index \"cnnvd\" + ) -> RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"cloudvulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` :param page: set the page number of the response :type page: int @@ -79525,7 +79525,7 @@ def index_cnnvd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnnvd_get_serialize( + _param = self._index_cloudvulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79557,7 +79557,7 @@ def index_cnnvd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -79573,7 +79573,7 @@ def index_cnnvd_get( @validate_call - def index_cnnvd_get_with_http_info( + def index_cloudvulndb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -79611,10 +79611,10 @@ def index_cnnvd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination]: - """Return vulnerability data stored in index \"cnnvd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"cloudvulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` :param page: set the page number of the response :type page: int @@ -79686,7 +79686,7 @@ def index_cnnvd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnnvd_get_serialize( + _param = self._index_cloudvulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79718,7 +79718,7 @@ def index_cnnvd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -79734,7 +79734,7 @@ def index_cnnvd_get_with_http_info( @validate_call - def index_cnnvd_get_without_preload_content( + def index_cloudvulndb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -79773,9 +79773,9 @@ def index_cnnvd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cnnvd\" + """Return vulnerability data stored in index \"cloudvulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cloudvulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CloudVulnDB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cloudvulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cloudvulndb?cursor=` :param page: set the page number of the response :type page: int @@ -79847,7 +79847,7 @@ def index_cnnvd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnnvd_get_serialize( + _param = self._index_cloudvulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -79879,7 +79879,7 @@ def index_cnnvd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCloudVulnDBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -79890,7 +79890,7 @@ def index_cnnvd_get_without_preload_content( return response_data.response - def _index_cnnvd_get_serialize( + def _index_cloudvulndb_get_serialize( self, page, limit, @@ -80058,7 +80058,7 @@ def _index_cnnvd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cnnvd', + resource_path='/v3/index/cloudvulndb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -80075,7 +80075,7 @@ def _index_cnnvd_get_serialize( @validate_call - def index_cnvd_bulletins_get( + def index_cnnvd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80113,10 +80113,10 @@ def index_cnvd_bulletins_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination: - """Return vulnerability data stored in index \"cnvd-bulletins\" + ) -> RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination: + """Return vulnerability data stored in index \"cnnvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` :param page: set the page number of the response :type page: int @@ -80188,7 +80188,7 @@ def index_cnvd_bulletins_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_bulletins_get_serialize( + _param = self._index_cnnvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -80220,7 +80220,7 @@ def index_cnvd_bulletins_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", '404': "str", '500': "str", } @@ -80236,7 +80236,7 @@ def index_cnvd_bulletins_get( @validate_call - def index_cnvd_bulletins_get_with_http_info( + def index_cnnvd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80274,10 +80274,10 @@ def index_cnvd_bulletins_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination]: - """Return vulnerability data stored in index \"cnvd-bulletins\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination]: + """Return vulnerability data stored in index \"cnnvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` :param page: set the page number of the response :type page: int @@ -80349,7 +80349,7 @@ def index_cnvd_bulletins_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_bulletins_get_serialize( + _param = self._index_cnnvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -80381,7 +80381,7 @@ def index_cnvd_bulletins_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", '404': "str", '500': "str", } @@ -80397,7 +80397,7 @@ def index_cnvd_bulletins_get_with_http_info( @validate_call - def index_cnvd_bulletins_get_without_preload_content( + def index_cnnvd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80436,9 +80436,9 @@ def index_cnvd_bulletins_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cnvd-bulletins\" + """Return vulnerability data stored in index \"cnnvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnnvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Chinese National Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnnvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnnvd?cursor=` :param page: set the page number of the response :type page: int @@ -80510,7 +80510,7 @@ def index_cnvd_bulletins_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_bulletins_get_serialize( + _param = self._index_cnnvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -80542,7 +80542,7 @@ def index_cnvd_bulletins_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNNVDEntryJSONPaginatePagination", '404': "str", '500': "str", } @@ -80553,7 +80553,7 @@ def index_cnvd_bulletins_get_without_preload_content( return response_data.response - def _index_cnvd_bulletins_get_serialize( + def _index_cnnvd_get_serialize( self, page, limit, @@ -80721,7 +80721,7 @@ def _index_cnvd_bulletins_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cnvd-bulletins', + resource_path='/v3/index/cnnvd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -80738,7 +80738,7 @@ def _index_cnvd_bulletins_get_serialize( @validate_call - def index_cnvd_flaws_get( + def index_cnvd_bulletins_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80776,10 +80776,10 @@ def index_cnvd_flaws_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination: - """Return vulnerability data stored in index \"cnvd-flaws\" + ) -> RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination: + """Return vulnerability data stored in index \"cnvd-bulletins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` :param page: set the page number of the response :type page: int @@ -80851,7 +80851,7 @@ def index_cnvd_flaws_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_flaws_get_serialize( + _param = self._index_cnvd_bulletins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -80883,7 +80883,7 @@ def index_cnvd_flaws_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", '404': "str", '500': "str", } @@ -80899,7 +80899,7 @@ def index_cnvd_flaws_get( @validate_call - def index_cnvd_flaws_get_with_http_info( + def index_cnvd_bulletins_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -80937,10 +80937,10 @@ def index_cnvd_flaws_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination]: - """Return vulnerability data stored in index \"cnvd-flaws\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination]: + """Return vulnerability data stored in index \"cnvd-bulletins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` :param page: set the page number of the response :type page: int @@ -81012,7 +81012,7 @@ def index_cnvd_flaws_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_flaws_get_serialize( + _param = self._index_cnvd_bulletins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81044,7 +81044,7 @@ def index_cnvd_flaws_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", '404': "str", '500': "str", } @@ -81060,7 +81060,7 @@ def index_cnvd_flaws_get_with_http_info( @validate_call - def index_cnvd_flaws_get_without_preload_content( + def index_cnvd_bulletins_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -81099,9 +81099,9 @@ def index_cnvd_flaws_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cnvd-flaws\" + """Return vulnerability data stored in index \"cnvd-bulletins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-bulletins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-bulletins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-bulletins?cursor=` :param page: set the page number of the response :type page: int @@ -81173,7 +81173,7 @@ def index_cnvd_flaws_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cnvd_flaws_get_serialize( + _param = self._index_cnvd_bulletins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81205,7 +81205,7 @@ def index_cnvd_flaws_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDBulletinPaginatePagination", '404': "str", '500': "str", } @@ -81216,7 +81216,7 @@ def index_cnvd_flaws_get_without_preload_content( return response_data.response - def _index_cnvd_flaws_get_serialize( + def _index_cnvd_bulletins_get_serialize( self, page, limit, @@ -81384,7 +81384,7 @@ def _index_cnvd_flaws_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cnvd-flaws', + resource_path='/v3/index/cnvd-bulletins', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -81401,7 +81401,7 @@ def _index_cnvd_flaws_get_serialize( @validate_call - def index_cocoapods_get( + def index_cnvd_flaws_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -81439,10 +81439,10 @@ def index_cocoapods_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"cocoapods\" + ) -> RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination: + """Return vulnerability data stored in index \"cnvd-flaws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` :param page: set the page number of the response :type page: int @@ -81514,7 +81514,7 @@ def index_cocoapods_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cocoapods_get_serialize( + _param = self._index_cnvd_flaws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81546,7 +81546,7 @@ def index_cocoapods_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", '404': "str", '500': "str", } @@ -81562,7 +81562,7 @@ def index_cocoapods_get( @validate_call - def index_cocoapods_get_with_http_info( + def index_cnvd_flaws_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -81600,10 +81600,10 @@ def index_cocoapods_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"cocoapods\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination]: + """Return vulnerability data stored in index \"cnvd-flaws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` :param page: set the page number of the response :type page: int @@ -81675,7 +81675,7 @@ def index_cocoapods_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cocoapods_get_serialize( + _param = self._index_cnvd_flaws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81707,7 +81707,7 @@ def index_cocoapods_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", '404': "str", '500': "str", } @@ -81723,7 +81723,7 @@ def index_cocoapods_get_with_http_info( @validate_call - def index_cocoapods_get_without_preload_content( + def index_cnvd_flaws_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -81762,9 +81762,9 @@ def index_cocoapods_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cocoapods\" + """Return vulnerability data stored in index \"cnvd-flaws\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cnvd-flaws index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CNVD Flaws ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cnvd-flaws?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cnvd-flaws?cursor=` :param page: set the page number of the response :type page: int @@ -81836,7 +81836,7 @@ def index_cocoapods_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cocoapods_get_serialize( + _param = self._index_cnvd_flaws_get_serialize( page=page, limit=limit, cursor=cursor, @@ -81868,7 +81868,7 @@ def index_cocoapods_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCNVDFlawPaginatePagination", '404': "str", '500': "str", } @@ -81879,7 +81879,7 @@ def index_cocoapods_get_without_preload_content( return response_data.response - def _index_cocoapods_get_serialize( + def _index_cnvd_flaws_get_serialize( self, page, limit, @@ -82047,7 +82047,7 @@ def _index_cocoapods_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cocoapods', + resource_path='/v3/index/cnvd-flaws', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -82064,7 +82064,7 @@ def _index_cocoapods_get_serialize( @validate_call - def index_codesys_get( + def index_cocoapods_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82102,10 +82102,10 @@ def index_codesys_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"codesys\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"cocoapods\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` :param page: set the page number of the response :type page: int @@ -82177,7 +82177,7 @@ def index_codesys_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_codesys_get_serialize( + _param = self._index_cocoapods_get_serialize( page=page, limit=limit, cursor=cursor, @@ -82209,7 +82209,7 @@ def index_codesys_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -82225,7 +82225,7 @@ def index_codesys_get( @validate_call - def index_codesys_get_with_http_info( + def index_cocoapods_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82263,10 +82263,10 @@ def index_codesys_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"codesys\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"cocoapods\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` :param page: set the page number of the response :type page: int @@ -82338,7 +82338,7 @@ def index_codesys_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_codesys_get_serialize( + _param = self._index_cocoapods_get_serialize( page=page, limit=limit, cursor=cursor, @@ -82370,7 +82370,7 @@ def index_codesys_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -82386,7 +82386,7 @@ def index_codesys_get_with_http_info( @validate_call - def index_codesys_get_without_preload_content( + def index_cocoapods_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82425,9 +82425,9 @@ def index_codesys_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"codesys\" + """Return vulnerability data stored in index \"cocoapods\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cocoapods index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CocoaPods packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cocoapods?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cocoapods?cursor=` :param page: set the page number of the response :type page: int @@ -82499,7 +82499,7 @@ def index_codesys_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_codesys_get_serialize( + _param = self._index_cocoapods_get_serialize( page=page, limit=limit, cursor=cursor, @@ -82531,7 +82531,7 @@ def index_codesys_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -82542,7 +82542,7 @@ def index_codesys_get_without_preload_content( return response_data.response - def _index_codesys_get_serialize( + def _index_cocoapods_get_serialize( self, page, limit, @@ -82710,7 +82710,7 @@ def _index_codesys_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/codesys', + resource_path='/v3/index/cocoapods', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -82727,7 +82727,7 @@ def _index_codesys_get_serialize( @validate_call - def index_commvault_get( + def index_codesys_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82765,10 +82765,10 @@ def index_commvault_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination: - """Return vulnerability data stored in index \"commvault\" + ) -> RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"codesys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` :param page: set the page number of the response :type page: int @@ -82840,7 +82840,7 @@ def index_commvault_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_commvault_get_serialize( + _param = self._index_codesys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -82872,7 +82872,7 @@ def index_commvault_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -82888,7 +82888,7 @@ def index_commvault_get( @validate_call - def index_commvault_get_with_http_info( + def index_codesys_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -82926,10 +82926,10 @@ def index_commvault_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination]: - """Return vulnerability data stored in index \"commvault\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"codesys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` :param page: set the page number of the response :type page: int @@ -83001,7 +83001,7 @@ def index_commvault_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_commvault_get_serialize( + _param = self._index_codesys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83033,7 +83033,7 @@ def index_commvault_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -83049,7 +83049,7 @@ def index_commvault_get_with_http_info( @validate_call - def index_commvault_get_without_preload_content( + def index_codesys_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -83088,9 +83088,9 @@ def index_commvault_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"commvault\" + """Return vulnerability data stored in index \"codesys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the codesys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Codesys Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/codesys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/codesys?cursor=` :param page: set the page number of the response :type page: int @@ -83162,7 +83162,7 @@ def index_commvault_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_commvault_get_serialize( + _param = self._index_codesys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83194,7 +83194,7 @@ def index_commvault_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCodesysAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -83205,7 +83205,7 @@ def index_commvault_get_without_preload_content( return response_data.response - def _index_commvault_get_serialize( + def _index_codesys_get_serialize( self, page, limit, @@ -83373,7 +83373,7 @@ def _index_commvault_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/commvault', + resource_path='/v3/index/codesys', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -83390,7 +83390,7 @@ def _index_commvault_get_serialize( @validate_call - def index_compass_security_get( + def index_commvault_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -83428,10 +83428,10 @@ def index_compass_security_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination: - """Return vulnerability data stored in index \"compass-security\" + ) -> RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination: + """Return vulnerability data stored in index \"commvault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` :param page: set the page number of the response :type page: int @@ -83503,7 +83503,7 @@ def index_compass_security_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_compass_security_get_serialize( + _param = self._index_commvault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83535,7 +83535,7 @@ def index_compass_security_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", '404': "str", '500': "str", } @@ -83551,7 +83551,7 @@ def index_compass_security_get( @validate_call - def index_compass_security_get_with_http_info( + def index_commvault_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -83589,10 +83589,10 @@ def index_compass_security_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination]: - """Return vulnerability data stored in index \"compass-security\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination]: + """Return vulnerability data stored in index \"commvault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` :param page: set the page number of the response :type page: int @@ -83664,7 +83664,7 @@ def index_compass_security_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_compass_security_get_serialize( + _param = self._index_commvault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83696,7 +83696,7 @@ def index_compass_security_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", '404': "str", '500': "str", } @@ -83712,7 +83712,7 @@ def index_compass_security_get_with_http_info( @validate_call - def index_compass_security_get_without_preload_content( + def index_commvault_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -83751,9 +83751,9 @@ def index_compass_security_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"compass-security\" + """Return vulnerability data stored in index \"commvault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the commvault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Commvault Cloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/commvault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/commvault?cursor=` :param page: set the page number of the response :type page: int @@ -83825,7 +83825,7 @@ def index_compass_security_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_compass_security_get_serialize( + _param = self._index_commvault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -83857,7 +83857,7 @@ def index_compass_security_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCommVaultPaginatePagination", '404': "str", '500': "str", } @@ -83868,7 +83868,7 @@ def index_compass_security_get_without_preload_content( return response_data.response - def _index_compass_security_get_serialize( + def _index_commvault_get_serialize( self, page, limit, @@ -84036,7 +84036,7 @@ def _index_compass_security_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/compass-security', + resource_path='/v3/index/commvault', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -84053,7 +84053,7 @@ def _index_compass_security_get_serialize( @validate_call - def index_composer_get( + def index_compass_security_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84091,10 +84091,10 @@ def index_composer_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"composer\" + ) -> RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination: + """Return vulnerability data stored in index \"compass-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` :param page: set the page number of the response :type page: int @@ -84166,7 +84166,7 @@ def index_composer_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_composer_get_serialize( + _param = self._index_compass_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -84198,7 +84198,7 @@ def index_composer_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", '404': "str", '500': "str", } @@ -84214,7 +84214,7 @@ def index_composer_get( @validate_call - def index_composer_get_with_http_info( + def index_compass_security_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84252,10 +84252,10 @@ def index_composer_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"composer\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination]: + """Return vulnerability data stored in index \"compass-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` :param page: set the page number of the response :type page: int @@ -84327,7 +84327,7 @@ def index_composer_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_composer_get_serialize( + _param = self._index_compass_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -84359,7 +84359,7 @@ def index_composer_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", '404': "str", '500': "str", } @@ -84375,7 +84375,7 @@ def index_composer_get_with_http_info( @validate_call - def index_composer_get_without_preload_content( + def index_compass_security_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84414,9 +84414,9 @@ def index_composer_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"composer\" + """Return vulnerability data stored in index \"compass-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the compass-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Compass Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/compass-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/compass-security?cursor=` :param page: set the page number of the response :type page: int @@ -84488,7 +84488,7 @@ def index_composer_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_composer_get_serialize( + _param = self._index_compass_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -84520,7 +84520,7 @@ def index_composer_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCompassSecurityPaginatePagination", '404': "str", '500': "str", } @@ -84531,7 +84531,7 @@ def index_composer_get_without_preload_content( return response_data.response - def _index_composer_get_serialize( + def _index_compass_security_get_serialize( self, page, limit, @@ -84699,7 +84699,7 @@ def _index_composer_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/composer', + resource_path='/v3/index/compass-security', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -84716,7 +84716,7 @@ def _index_composer_get_serialize( @validate_call - def index_conan_get( + def index_composer_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84755,9 +84755,9 @@ def index_conan_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"conan\" + """Return vulnerability data stored in index \"composer\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` :param page: set the page number of the response :type page: int @@ -84829,7 +84829,7 @@ def index_conan_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_conan_get_serialize( + _param = self._index_composer_get_serialize( page=page, limit=limit, cursor=cursor, @@ -84877,7 +84877,7 @@ def index_conan_get( @validate_call - def index_conan_get_with_http_info( + def index_composer_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -84916,9 +84916,9 @@ def index_conan_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"conan\" + """Return vulnerability data stored in index \"composer\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` :param page: set the page number of the response :type page: int @@ -84990,7 +84990,7 @@ def index_conan_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_conan_get_serialize( + _param = self._index_composer_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85038,7 +85038,7 @@ def index_conan_get_with_http_info( @validate_call - def index_conan_get_without_preload_content( + def index_composer_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -85077,9 +85077,9 @@ def index_conan_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"conan\" + """Return vulnerability data stored in index \"composer\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the composer index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PHP Composer packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/composer?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/composer?cursor=` :param page: set the page number of the response :type page: int @@ -85151,7 +85151,7 @@ def index_conan_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_conan_get_serialize( + _param = self._index_composer_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85194,7 +85194,7 @@ def index_conan_get_without_preload_content( return response_data.response - def _index_conan_get_serialize( + def _index_composer_get_serialize( self, page, limit, @@ -85362,7 +85362,7 @@ def _index_conan_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/conan', + resource_path='/v3/index/composer', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -85379,7 +85379,7 @@ def _index_conan_get_serialize( @validate_call - def index_coreimpact_get( + def index_conan_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -85417,10 +85417,10 @@ def index_coreimpact_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination: - """Return vulnerability data stored in index \"coreimpact\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"conan\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` :param page: set the page number of the response :type page: int @@ -85492,7 +85492,7 @@ def index_coreimpact_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_coreimpact_get_serialize( + _param = self._index_conan_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85524,7 +85524,7 @@ def index_coreimpact_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -85540,7 +85540,7 @@ def index_coreimpact_get( @validate_call - def index_coreimpact_get_with_http_info( + def index_conan_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -85578,10 +85578,10 @@ def index_coreimpact_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination]: - """Return vulnerability data stored in index \"coreimpact\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"conan\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` :param page: set the page number of the response :type page: int @@ -85653,7 +85653,7 @@ def index_coreimpact_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_coreimpact_get_serialize( + _param = self._index_conan_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85685,7 +85685,7 @@ def index_coreimpact_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -85701,7 +85701,7 @@ def index_coreimpact_get_with_http_info( @validate_call - def index_coreimpact_get_without_preload_content( + def index_conan_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -85740,9 +85740,9 @@ def index_coreimpact_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"coreimpact\" + """Return vulnerability data stored in index \"conan\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the conan index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** C/C++ packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/conan?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/conan?cursor=` :param page: set the page number of the response :type page: int @@ -85814,7 +85814,7 @@ def index_coreimpact_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_coreimpact_get_serialize( + _param = self._index_conan_get_serialize( page=page, limit=limit, cursor=cursor, @@ -85846,7 +85846,7 @@ def index_coreimpact_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -85857,7 +85857,7 @@ def index_coreimpact_get_without_preload_content( return response_data.response - def _index_coreimpact_get_serialize( + def _index_conan_get_serialize( self, page, limit, @@ -86025,7 +86025,7 @@ def _index_coreimpact_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/coreimpact', + resource_path='/v3/index/conan', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -86042,7 +86042,7 @@ def _index_coreimpact_get_serialize( @validate_call - def index_cpe_vulnerable_get( + def index_coreimpact_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86080,10 +86080,10 @@ def index_cpe_vulnerable_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination: - """Return vulnerability data stored in index \"cpe-vulnerable\" + ) -> RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination: + """Return vulnerability data stored in index \"coreimpact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` :param page: set the page number of the response :type page: int @@ -86155,7 +86155,7 @@ def index_cpe_vulnerable_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cpe_vulnerable_get_serialize( + _param = self._index_coreimpact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -86187,7 +86187,7 @@ def index_cpe_vulnerable_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", '404': "str", '500': "str", } @@ -86203,7 +86203,7 @@ def index_cpe_vulnerable_get( @validate_call - def index_cpe_vulnerable_get_with_http_info( + def index_coreimpact_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86241,10 +86241,10 @@ def index_cpe_vulnerable_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination]: - """Return vulnerability data stored in index \"cpe-vulnerable\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination]: + """Return vulnerability data stored in index \"coreimpact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` :param page: set the page number of the response :type page: int @@ -86316,7 +86316,7 @@ def index_cpe_vulnerable_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cpe_vulnerable_get_serialize( + _param = self._index_coreimpact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -86348,7 +86348,7 @@ def index_cpe_vulnerable_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", '404': "str", '500': "str", } @@ -86364,7 +86364,7 @@ def index_cpe_vulnerable_get_with_http_info( @validate_call - def index_cpe_vulnerable_get_without_preload_content( + def index_coreimpact_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86403,9 +86403,9 @@ def index_cpe_vulnerable_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cpe-vulnerable\" + """Return vulnerability data stored in index \"coreimpact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the coreimpact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Core Impact ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/coreimpact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/coreimpact?cursor=` :param page: set the page number of the response :type page: int @@ -86477,7 +86477,7 @@ def index_cpe_vulnerable_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cpe_vulnerable_get_serialize( + _param = self._index_coreimpact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -86509,7 +86509,7 @@ def index_cpe_vulnerable_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCoreImpactExploitPaginatePagination", '404': "str", '500': "str", } @@ -86520,7 +86520,7 @@ def index_cpe_vulnerable_get_without_preload_content( return response_data.response - def _index_cpe_vulnerable_get_serialize( + def _index_coreimpact_get_serialize( self, page, limit, @@ -86688,7 +86688,7 @@ def _index_cpe_vulnerable_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cpe-vulnerable', + resource_path='/v3/index/coreimpact', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -86705,7 +86705,7 @@ def _index_cpe_vulnerable_get_serialize( @validate_call - def index_crestron_get( + def index_cpe_vulnerable_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86743,10 +86743,10 @@ def index_crestron_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination: - """Return vulnerability data stored in index \"crestron\" + ) -> RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination: + """Return vulnerability data stored in index \"cpe-vulnerable\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` :param page: set the page number of the response :type page: int @@ -86818,7 +86818,7 @@ def index_crestron_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crestron_get_serialize( + _param = self._index_cpe_vulnerable_get_serialize( page=page, limit=limit, cursor=cursor, @@ -86850,7 +86850,7 @@ def index_crestron_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", '404': "str", '500': "str", } @@ -86866,7 +86866,7 @@ def index_crestron_get( @validate_call - def index_crestron_get_with_http_info( + def index_cpe_vulnerable_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -86904,10 +86904,10 @@ def index_crestron_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination]: - """Return vulnerability data stored in index \"crestron\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination]: + """Return vulnerability data stored in index \"cpe-vulnerable\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` :param page: set the page number of the response :type page: int @@ -86979,7 +86979,7 @@ def index_crestron_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crestron_get_serialize( + _param = self._index_cpe_vulnerable_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87011,7 +87011,7 @@ def index_crestron_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", '404': "str", '500': "str", } @@ -87027,7 +87027,7 @@ def index_crestron_get_with_http_info( @validate_call - def index_crestron_get_without_preload_content( + def index_cpe_vulnerable_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -87066,9 +87066,9 @@ def index_crestron_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"crestron\" + """Return vulnerability data stored in index \"cpe-vulnerable\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cpe-vulnerable index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Unrolled VulnCheck CPEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cpe-vulnerable?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cpe-vulnerable?cursor=` :param page: set the page number of the response :type page: int @@ -87140,7 +87140,7 @@ def index_crestron_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crestron_get_serialize( + _param = self._index_cpe_vulnerable_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87172,7 +87172,7 @@ def index_crestron_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVCVulnerableCPEsPaginatePagination", '404': "str", '500': "str", } @@ -87183,7 +87183,7 @@ def index_crestron_get_without_preload_content( return response_data.response - def _index_crestron_get_serialize( + def _index_cpe_vulnerable_get_serialize( self, page, limit, @@ -87351,7 +87351,7 @@ def _index_crestron_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/crestron', + resource_path='/v3/index/cpe-vulnerable', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -87368,7 +87368,7 @@ def _index_crestron_get_serialize( @validate_call - def index_crowdsec_get( + def index_crestron_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -87406,10 +87406,10 @@ def index_crowdsec_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination: - """Return vulnerability data stored in index \"crowdsec\" + ) -> RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination: + """Return vulnerability data stored in index \"crestron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` :param page: set the page number of the response :type page: int @@ -87481,7 +87481,7 @@ def index_crowdsec_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crowdsec_get_serialize( + _param = self._index_crestron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87513,7 +87513,7 @@ def index_crowdsec_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", '404': "str", '500': "str", } @@ -87529,7 +87529,7 @@ def index_crowdsec_get( @validate_call - def index_crowdsec_get_with_http_info( + def index_crestron_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -87567,10 +87567,10 @@ def index_crowdsec_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination]: - """Return vulnerability data stored in index \"crowdsec\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination]: + """Return vulnerability data stored in index \"crestron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` :param page: set the page number of the response :type page: int @@ -87642,7 +87642,7 @@ def index_crowdsec_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crowdsec_get_serialize( + _param = self._index_crestron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87674,7 +87674,7 @@ def index_crowdsec_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", '404': "str", '500': "str", } @@ -87690,7 +87690,7 @@ def index_crowdsec_get_with_http_info( @validate_call - def index_crowdsec_get_without_preload_content( + def index_crestron_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -87729,9 +87729,9 @@ def index_crowdsec_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"crowdsec\" + """Return vulnerability data stored in index \"crestron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crestron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Crestron Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crestron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crestron?cursor=` :param page: set the page number of the response :type page: int @@ -87803,7 +87803,7 @@ def index_crowdsec_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_crowdsec_get_serialize( + _param = self._index_crestron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -87835,7 +87835,7 @@ def index_crowdsec_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrestronPaginatePagination", '404': "str", '500': "str", } @@ -87846,7 +87846,7 @@ def index_crowdsec_get_without_preload_content( return response_data.response - def _index_crowdsec_get_serialize( + def _index_crestron_get_serialize( self, page, limit, @@ -88014,7 +88014,7 @@ def _index_crowdsec_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/crowdsec', + resource_path='/v3/index/crestron', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -88031,7 +88031,7 @@ def _index_crowdsec_get_serialize( @validate_call - def index_curl_get( + def index_crowdsec_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88069,10 +88069,10 @@ def index_curl_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination: - """Return vulnerability data stored in index \"curl\" + ) -> RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination: + """Return vulnerability data stored in index \"crowdsec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` :param page: set the page number of the response :type page: int @@ -88144,7 +88144,7 @@ def index_curl_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_curl_get_serialize( + _param = self._index_crowdsec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -88176,7 +88176,7 @@ def index_curl_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", '404': "str", '500': "str", } @@ -88192,7 +88192,7 @@ def index_curl_get( @validate_call - def index_curl_get_with_http_info( + def index_crowdsec_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88230,10 +88230,10 @@ def index_curl_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination]: - """Return vulnerability data stored in index \"curl\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination]: + """Return vulnerability data stored in index \"crowdsec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` :param page: set the page number of the response :type page: int @@ -88305,7 +88305,7 @@ def index_curl_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_curl_get_serialize( + _param = self._index_crowdsec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -88337,7 +88337,7 @@ def index_curl_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", '404': "str", '500': "str", } @@ -88353,7 +88353,7 @@ def index_curl_get_with_http_info( @validate_call - def index_curl_get_without_preload_content( + def index_crowdsec_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88392,9 +88392,9 @@ def index_curl_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"curl\" + """Return vulnerability data stored in index \"crowdsec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the crowdsec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CrowdSec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/crowdsec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/crowdsec?cursor=` :param page: set the page number of the response :type page: int @@ -88466,7 +88466,7 @@ def index_curl_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_curl_get_serialize( + _param = self._index_crowdsec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -88498,7 +88498,7 @@ def index_curl_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCrowdSecPaginatePagination", '404': "str", '500': "str", } @@ -88509,7 +88509,7 @@ def index_curl_get_without_preload_content( return response_data.response - def _index_curl_get_serialize( + def _index_crowdsec_get_serialize( self, page, limit, @@ -88677,7 +88677,7 @@ def _index_curl_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/curl', + resource_path='/v3/index/crowdsec', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -88694,7 +88694,7 @@ def _index_curl_get_serialize( @validate_call - def index_cves_identity_mappings_get( + def index_curl_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88732,10 +88732,10 @@ def index_cves_identity_mappings_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination: - """Return vulnerability data stored in index \"cves_identity_mappings\" + ) -> RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination: + """Return vulnerability data stored in index \"curl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` :param page: set the page number of the response :type page: int @@ -88807,7 +88807,7 @@ def index_cves_identity_mappings_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cves_identity_mappings_get_serialize( + _param = self._index_curl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -88839,7 +88839,7 @@ def index_cves_identity_mappings_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", '404': "str", '500': "str", } @@ -88855,7 +88855,7 @@ def index_cves_identity_mappings_get( @validate_call - def index_cves_identity_mappings_get_with_http_info( + def index_curl_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -88893,10 +88893,10 @@ def index_cves_identity_mappings_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination]: - """Return vulnerability data stored in index \"cves_identity_mappings\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination]: + """Return vulnerability data stored in index \"curl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` :param page: set the page number of the response :type page: int @@ -88968,7 +88968,7 @@ def index_cves_identity_mappings_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cves_identity_mappings_get_serialize( + _param = self._index_curl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89000,7 +89000,7 @@ def index_cves_identity_mappings_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", '404': "str", '500': "str", } @@ -89016,7 +89016,7 @@ def index_cves_identity_mappings_get_with_http_info( @validate_call - def index_cves_identity_mappings_get_without_preload_content( + def index_curl_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -89055,9 +89055,9 @@ def index_cves_identity_mappings_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cves_identity_mappings\" + """Return vulnerability data stored in index \"curl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the curl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Curl CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/curl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/curl?cursor=` :param page: set the page number of the response :type page: int @@ -89129,7 +89129,7 @@ def index_cves_identity_mappings_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cves_identity_mappings_get_serialize( + _param = self._index_curl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89161,7 +89161,7 @@ def index_cves_identity_mappings_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCurlPaginatePagination", '404': "str", '500': "str", } @@ -89172,7 +89172,7 @@ def index_cves_identity_mappings_get_without_preload_content( return response_data.response - def _index_cves_identity_mappings_get_serialize( + def _index_curl_get_serialize( self, page, limit, @@ -89340,7 +89340,7 @@ def _index_cves_identity_mappings_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cves_identity_mappings', + resource_path='/v3/index/curl', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -89357,7 +89357,7 @@ def _index_cves_identity_mappings_get_serialize( @validate_call - def index_cwe_get( + def index_cves_identity_mappings_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -89395,10 +89395,10 @@ def index_cwe_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiCWEPaginatePagination: - """Return vulnerability data stored in index \"cwe\" + ) -> RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination: + """Return vulnerability data stored in index \"cves_identity_mappings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` :param page: set the page number of the response :type page: int @@ -89470,7 +89470,7 @@ def index_cwe_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cwe_get_serialize( + _param = self._index_cves_identity_mappings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89502,7 +89502,7 @@ def index_cwe_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", '404': "str", '500': "str", } @@ -89518,7 +89518,7 @@ def index_cwe_get( @validate_call - def index_cwe_get_with_http_info( + def index_cves_identity_mappings_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -89556,10 +89556,10 @@ def index_cwe_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiCWEPaginatePagination]: - """Return vulnerability data stored in index \"cwe\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination]: + """Return vulnerability data stored in index \"cves_identity_mappings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` :param page: set the page number of the response :type page: int @@ -89631,7 +89631,7 @@ def index_cwe_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cwe_get_serialize( + _param = self._index_cves_identity_mappings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89663,7 +89663,7 @@ def index_cwe_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", '404': "str", '500': "str", } @@ -89679,7 +89679,7 @@ def index_cwe_get_with_http_info( @validate_call - def index_cwe_get_without_preload_content( + def index_cves_identity_mappings_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -89718,9 +89718,9 @@ def index_cwe_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"cwe\" + """Return vulnerability data stored in index \"cves_identity_mappings\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cves_identity_mappings index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CVE To Various IDs Mapping. This index holds cves to different ids mappings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cves_identity_mappings?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cves_identity_mappings?cursor=` :param page: set the page number of the response :type page: int @@ -89792,7 +89792,7 @@ def index_cwe_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_cwe_get_serialize( + _param = self._index_cves_identity_mappings_get_serialize( page=page, limit=limit, cursor=cursor, @@ -89824,7 +89824,7 @@ def index_cwe_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCVEIdentityMappingsPaginatePagination", '404': "str", '500': "str", } @@ -89835,7 +89835,7 @@ def index_cwe_get_without_preload_content( return response_data.response - def _index_cwe_get_serialize( + def _index_cves_identity_mappings_get_serialize( self, page, limit, @@ -90003,7 +90003,7 @@ def _index_cwe_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/cwe', + resource_path='/v3/index/cves_identity_mappings', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -90020,7 +90020,7 @@ def _index_cwe_get_serialize( @validate_call - def index_dahua_get( + def index_cwe_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90058,10 +90058,10 @@ def index_dahua_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination: - """Return vulnerability data stored in index \"dahua\" + ) -> RenderResponseWithMetadataArrayApiCWEPaginatePagination: + """Return vulnerability data stored in index \"cwe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` :param page: set the page number of the response :type page: int @@ -90133,7 +90133,7 @@ def index_dahua_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dahua_get_serialize( + _param = self._index_cwe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90165,7 +90165,7 @@ def index_dahua_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", '404': "str", '500': "str", } @@ -90181,7 +90181,7 @@ def index_dahua_get( @validate_call - def index_dahua_get_with_http_info( + def index_cwe_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90219,10 +90219,10 @@ def index_dahua_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination]: - """Return vulnerability data stored in index \"dahua\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiCWEPaginatePagination]: + """Return vulnerability data stored in index \"cwe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` :param page: set the page number of the response :type page: int @@ -90294,7 +90294,7 @@ def index_dahua_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dahua_get_serialize( + _param = self._index_cwe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90326,7 +90326,7 @@ def index_dahua_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", '404': "str", '500': "str", } @@ -90342,7 +90342,7 @@ def index_dahua_get_with_http_info( @validate_call - def index_dahua_get_without_preload_content( + def index_cwe_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90381,9 +90381,9 @@ def index_dahua_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dahua\" + """Return vulnerability data stored in index \"cwe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the cwe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Common Weakness Enumeration Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/cwe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/cwe?cursor=` :param page: set the page number of the response :type page: int @@ -90455,7 +90455,7 @@ def index_dahua_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dahua_get_serialize( + _param = self._index_cwe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90487,7 +90487,7 @@ def index_dahua_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCWEPaginatePagination", '404': "str", '500': "str", } @@ -90498,7 +90498,7 @@ def index_dahua_get_without_preload_content( return response_data.response - def _index_dahua_get_serialize( + def _index_cwe_get_serialize( self, page, limit, @@ -90666,7 +90666,7 @@ def _index_dahua_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dahua', + resource_path='/v3/index/cwe', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -90683,7 +90683,7 @@ def _index_dahua_get_serialize( @validate_call - def index_danfoss_get( + def index_dahua_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90721,10 +90721,10 @@ def index_danfoss_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination: - """Return vulnerability data stored in index \"danfoss\" + ) -> RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination: + """Return vulnerability data stored in index \"dahua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` :param page: set the page number of the response :type page: int @@ -90796,7 +90796,7 @@ def index_danfoss_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_danfoss_get_serialize( + _param = self._index_dahua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90828,7 +90828,7 @@ def index_danfoss_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", '404': "str", '500': "str", } @@ -90844,7 +90844,7 @@ def index_danfoss_get( @validate_call - def index_danfoss_get_with_http_info( + def index_dahua_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -90882,10 +90882,10 @@ def index_danfoss_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination]: - """Return vulnerability data stored in index \"danfoss\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination]: + """Return vulnerability data stored in index \"dahua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` :param page: set the page number of the response :type page: int @@ -90957,7 +90957,7 @@ def index_danfoss_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_danfoss_get_serialize( + _param = self._index_dahua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -90989,7 +90989,7 @@ def index_danfoss_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", '404': "str", '500': "str", } @@ -91005,7 +91005,7 @@ def index_danfoss_get_with_http_info( @validate_call - def index_danfoss_get_without_preload_content( + def index_dahua_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -91044,9 +91044,9 @@ def index_danfoss_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"danfoss\" + """Return vulnerability data stored in index \"dahua\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dahua index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dahua Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dahua?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dahua?cursor=` :param page: set the page number of the response :type page: int @@ -91118,7 +91118,7 @@ def index_danfoss_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_danfoss_get_serialize( + _param = self._index_dahua_get_serialize( page=page, limit=limit, cursor=cursor, @@ -91150,7 +91150,7 @@ def index_danfoss_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDahuaPaginatePagination", '404': "str", '500': "str", } @@ -91161,7 +91161,7 @@ def index_danfoss_get_without_preload_content( return response_data.response - def _index_danfoss_get_serialize( + def _index_dahua_get_serialize( self, page, limit, @@ -91329,7 +91329,7 @@ def _index_danfoss_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/danfoss', + resource_path='/v3/index/dahua', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -91346,7 +91346,7 @@ def _index_danfoss_get_serialize( @validate_call - def index_dassault_get( + def index_danfoss_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -91384,10 +91384,10 @@ def index_dassault_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination: - """Return vulnerability data stored in index \"dassault\" + ) -> RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination: + """Return vulnerability data stored in index \"danfoss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` :param page: set the page number of the response :type page: int @@ -91459,7 +91459,7 @@ def index_dassault_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dassault_get_serialize( + _param = self._index_danfoss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -91491,7 +91491,7 @@ def index_dassault_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", '404': "str", '500': "str", } @@ -91507,7 +91507,7 @@ def index_dassault_get( @validate_call - def index_dassault_get_with_http_info( + def index_danfoss_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -91545,10 +91545,10 @@ def index_dassault_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination]: - """Return vulnerability data stored in index \"dassault\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination]: + """Return vulnerability data stored in index \"danfoss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` :param page: set the page number of the response :type page: int @@ -91620,7 +91620,7 @@ def index_dassault_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dassault_get_serialize( + _param = self._index_danfoss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -91652,7 +91652,7 @@ def index_dassault_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", '404': "str", '500': "str", } @@ -91668,7 +91668,7 @@ def index_dassault_get_with_http_info( @validate_call - def index_dassault_get_without_preload_content( + def index_danfoss_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -91707,9 +91707,9 @@ def index_dassault_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dassault\" + """Return vulnerability data stored in index \"danfoss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the danfoss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Danfoss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/danfoss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/danfoss?cursor=` :param page: set the page number of the response :type page: int @@ -91781,7 +91781,7 @@ def index_dassault_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dassault_get_serialize( + _param = self._index_danfoss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -91813,7 +91813,7 @@ def index_dassault_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDanfossPaginatePagination", '404': "str", '500': "str", } @@ -91824,7 +91824,7 @@ def index_dassault_get_without_preload_content( return response_data.response - def _index_dassault_get_serialize( + def _index_danfoss_get_serialize( self, page, limit, @@ -91992,7 +91992,7 @@ def _index_dassault_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dassault', + resource_path='/v3/index/danfoss', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -92009,7 +92009,7 @@ def _index_dassault_get_serialize( @validate_call - def index_debian_dsa_get( + def index_dassault_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92047,10 +92047,10 @@ def index_debian_dsa_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"debian-dsa\" + ) -> RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination: + """Return vulnerability data stored in index \"dassault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` :param page: set the page number of the response :type page: int @@ -92122,7 +92122,7 @@ def index_debian_dsa_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_dsa_get_serialize( + _param = self._index_dassault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92154,7 +92154,7 @@ def index_debian_dsa_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", '404': "str", '500': "str", } @@ -92170,7 +92170,7 @@ def index_debian_dsa_get( @validate_call - def index_debian_dsa_get_with_http_info( + def index_dassault_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92208,10 +92208,10 @@ def index_debian_dsa_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"debian-dsa\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination]: + """Return vulnerability data stored in index \"dassault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` :param page: set the page number of the response :type page: int @@ -92283,7 +92283,7 @@ def index_debian_dsa_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_dsa_get_serialize( + _param = self._index_dassault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92315,7 +92315,7 @@ def index_debian_dsa_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", '404': "str", '500': "str", } @@ -92331,7 +92331,7 @@ def index_debian_dsa_get_with_http_info( @validate_call - def index_debian_dsa_get_without_preload_content( + def index_dassault_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92370,9 +92370,9 @@ def index_debian_dsa_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"debian-dsa\" + """Return vulnerability data stored in index \"dassault\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dassault index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dassault Systèmes Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dassault?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dassault?cursor=` :param page: set the page number of the response :type page: int @@ -92444,7 +92444,7 @@ def index_debian_dsa_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_dsa_get_serialize( + _param = self._index_dassault_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92476,7 +92476,7 @@ def index_debian_dsa_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDassaultPaginatePagination", '404': "str", '500': "str", } @@ -92487,7 +92487,7 @@ def index_debian_dsa_get_without_preload_content( return response_data.response - def _index_debian_dsa_get_serialize( + def _index_dassault_get_serialize( self, page, limit, @@ -92655,7 +92655,7 @@ def _index_debian_dsa_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/debian-dsa', + resource_path='/v3/index/dassault', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -92672,7 +92672,7 @@ def _index_debian_dsa_get_serialize( @validate_call - def index_debian_get( + def index_debian_dsa_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92710,10 +92710,10 @@ def index_debian_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination: - """Return vulnerability data stored in index \"debian\" + ) -> RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"debian-dsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` :param page: set the page number of the response :type page: int @@ -92785,7 +92785,7 @@ def index_debian_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_get_serialize( + _param = self._index_debian_dsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92817,7 +92817,7 @@ def index_debian_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -92833,7 +92833,7 @@ def index_debian_get( @validate_call - def index_debian_get_with_http_info( + def index_debian_dsa_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -92871,10 +92871,10 @@ def index_debian_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination]: - """Return vulnerability data stored in index \"debian\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"debian-dsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` :param page: set the page number of the response :type page: int @@ -92946,7 +92946,7 @@ def index_debian_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_get_serialize( + _param = self._index_debian_dsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -92978,7 +92978,7 @@ def index_debian_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -92994,7 +92994,7 @@ def index_debian_get_with_http_info( @validate_call - def index_debian_get_without_preload_content( + def index_debian_dsa_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -93033,9 +93033,9 @@ def index_debian_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"debian\" + """Return vulnerability data stored in index \"debian-dsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-dsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-dsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-dsa?cursor=` :param page: set the page number of the response :type page: int @@ -93107,7 +93107,7 @@ def index_debian_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_get_serialize( + _param = self._index_debian_dsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -93139,7 +93139,7 @@ def index_debian_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDebianSecurityAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -93150,7 +93150,7 @@ def index_debian_get_without_preload_content( return response_data.response - def _index_debian_get_serialize( + def _index_debian_dsa_get_serialize( self, page, limit, @@ -93318,7 +93318,7 @@ def _index_debian_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/debian', + resource_path='/v3/index/debian-dsa', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -93335,7 +93335,7 @@ def _index_debian_get_serialize( @validate_call - def index_debian_packages_get( + def index_debian_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -93373,10 +93373,10 @@ def index_debian_packages_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination: - """Return vulnerability data stored in index \"debian-packages\" + ) -> RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination: + """Return vulnerability data stored in index \"debian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` :param page: set the page number of the response :type page: int @@ -93448,7 +93448,7 @@ def index_debian_packages_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_packages_get_serialize( + _param = self._index_debian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -93480,7 +93480,7 @@ def index_debian_packages_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", '404': "str", '500': "str", } @@ -93496,7 +93496,7 @@ def index_debian_packages_get( @validate_call - def index_debian_packages_get_with_http_info( + def index_debian_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -93534,10 +93534,10 @@ def index_debian_packages_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination]: - """Return vulnerability data stored in index \"debian-packages\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination]: + """Return vulnerability data stored in index \"debian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` :param page: set the page number of the response :type page: int @@ -93609,7 +93609,7 @@ def index_debian_packages_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_packages_get_serialize( + _param = self._index_debian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -93641,7 +93641,7 @@ def index_debian_packages_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", '404': "str", '500': "str", } @@ -93657,7 +93657,7 @@ def index_debian_packages_get_with_http_info( @validate_call - def index_debian_packages_get_without_preload_content( + def index_debian_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -93696,9 +93696,9 @@ def index_debian_packages_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"debian-packages\" + """Return vulnerability data stored in index \"debian\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian?cursor=` :param page: set the page number of the response :type page: int @@ -93770,7 +93770,7 @@ def index_debian_packages_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_packages_get_serialize( + _param = self._index_debian_get_serialize( page=page, limit=limit, cursor=cursor, @@ -93802,7 +93802,7 @@ def index_debian_packages_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryVulnerableDebianPackagePaginatePagination", '404': "str", '500': "str", } @@ -93813,7 +93813,7 @@ def index_debian_packages_get_without_preload_content( return response_data.response - def _index_debian_packages_get_serialize( + def _index_debian_get_serialize( self, page, limit, @@ -93981,7 +93981,7 @@ def _index_debian_packages_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/debian-packages', + resource_path='/v3/index/debian', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -93998,7 +93998,7 @@ def _index_debian_packages_get_serialize( @validate_call - def index_debian_purls_get( + def index_debian_packages_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94036,10 +94036,10 @@ def index_debian_purls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination: - """Return vulnerability data stored in index \"debian-purls\" + ) -> RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination: + """Return vulnerability data stored in index \"debian-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` :param page: set the page number of the response :type page: int @@ -94111,7 +94111,7 @@ def index_debian_purls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_purls_get_serialize( + _param = self._index_debian_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94143,7 +94143,7 @@ def index_debian_purls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", '404': "str", '500': "str", } @@ -94159,7 +94159,7 @@ def index_debian_purls_get( @validate_call - def index_debian_purls_get_with_http_info( + def index_debian_packages_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94197,10 +94197,10 @@ def index_debian_purls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination]: - """Return vulnerability data stored in index \"debian-purls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination]: + """Return vulnerability data stored in index \"debian-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` :param page: set the page number of the response :type page: int @@ -94272,7 +94272,7 @@ def index_debian_purls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_purls_get_serialize( + _param = self._index_debian_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94304,7 +94304,7 @@ def index_debian_purls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", '404': "str", '500': "str", } @@ -94320,7 +94320,7 @@ def index_debian_purls_get_with_http_info( @validate_call - def index_debian_purls_get_without_preload_content( + def index_debian_packages_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94359,9 +94359,9 @@ def index_debian_purls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"debian-purls\" + """Return vulnerability data stored in index \"debian-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-packages?cursor=` :param page: set the page number of the response :type page: int @@ -94433,7 +94433,7 @@ def index_debian_purls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_debian_purls_get_serialize( + _param = self._index_debian_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94465,7 +94465,7 @@ def index_debian_purls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDistroPackagePaginatePagination", '404': "str", '500': "str", } @@ -94476,7 +94476,7 @@ def index_debian_purls_get_without_preload_content( return response_data.response - def _index_debian_purls_get_serialize( + def _index_debian_packages_get_serialize( self, page, limit, @@ -94644,7 +94644,7 @@ def _index_debian_purls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/debian-purls', + resource_path='/v3/index/debian-packages', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -94661,7 +94661,7 @@ def _index_debian_purls_get_serialize( @validate_call - def index_dell_get( + def index_debian_purls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94699,10 +94699,10 @@ def index_dell_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination: - """Return vulnerability data stored in index \"dell\" + ) -> RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination: + """Return vulnerability data stored in index \"debian-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` :param page: set the page number of the response :type page: int @@ -94774,7 +94774,7 @@ def index_dell_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dell_get_serialize( + _param = self._index_debian_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94806,7 +94806,7 @@ def index_dell_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -94822,7 +94822,7 @@ def index_dell_get( @validate_call - def index_dell_get_with_http_info( + def index_debian_purls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -94860,10 +94860,10 @@ def index_dell_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination]: - """Return vulnerability data stored in index \"dell\" + ) -> ApiResponse[RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination]: + """Return vulnerability data stored in index \"debian-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` :param page: set the page number of the response :type page: int @@ -94935,7 +94935,7 @@ def index_dell_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dell_get_serialize( + _param = self._index_debian_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -94967,7 +94967,7 @@ def index_dell_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -94983,7 +94983,7 @@ def index_dell_get_with_http_info( @validate_call - def index_dell_get_without_preload_content( + def index_debian_purls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -95022,9 +95022,9 @@ def index_dell_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dell\" + """Return vulnerability data stored in index \"debian-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the debian-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Debian PURLs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/debian-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/debian-purls?cursor=` :param page: set the page number of the response :type page: int @@ -95096,7 +95096,7 @@ def index_dell_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dell_get_serialize( + _param = self._index_debian_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -95128,7 +95128,7 @@ def index_dell_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -95139,7 +95139,7 @@ def index_dell_get_without_preload_content( return response_data.response - def _index_dell_get_serialize( + def _index_debian_purls_get_serialize( self, page, limit, @@ -95307,7 +95307,7 @@ def _index_dell_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dell', + resource_path='/v3/index/debian-purls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -95324,7 +95324,7 @@ def _index_dell_get_serialize( @validate_call - def index_delta_get( + def index_dell_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -95362,10 +95362,10 @@ def index_delta_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"delta\" + ) -> RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination: + """Return vulnerability data stored in index \"dell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` :param page: set the page number of the response :type page: int @@ -95437,7 +95437,7 @@ def index_delta_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_delta_get_serialize( + _param = self._index_dell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -95469,7 +95469,7 @@ def index_delta_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", '404': "str", '500': "str", } @@ -95485,7 +95485,7 @@ def index_delta_get( @validate_call - def index_delta_get_with_http_info( + def index_dell_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -95523,10 +95523,10 @@ def index_delta_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"delta\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination]: + """Return vulnerability data stored in index \"dell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` :param page: set the page number of the response :type page: int @@ -95598,7 +95598,7 @@ def index_delta_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_delta_get_serialize( + _param = self._index_dell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -95630,7 +95630,7 @@ def index_delta_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", '404': "str", '500': "str", } @@ -95646,7 +95646,7 @@ def index_delta_get_with_http_info( @validate_call - def index_delta_get_without_preload_content( + def index_dell_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -95685,9 +95685,9 @@ def index_delta_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"delta\" + """Return vulnerability data stored in index \"dell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dell Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dell?cursor=` :param page: set the page number of the response :type page: int @@ -95759,7 +95759,7 @@ def index_delta_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_delta_get_serialize( + _param = self._index_dell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -95791,7 +95791,7 @@ def index_delta_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDellPaginatePagination", '404': "str", '500': "str", } @@ -95802,7 +95802,7 @@ def index_delta_get_without_preload_content( return response_data.response - def _index_delta_get_serialize( + def _index_dell_get_serialize( self, page, limit, @@ -95970,7 +95970,7 @@ def _index_delta_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/delta', + resource_path='/v3/index/dell', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -95987,7 +95987,7 @@ def _index_delta_get_serialize( @validate_call - def index_dfn_cert_get( + def index_delta_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96025,10 +96025,10 @@ def index_dfn_cert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination: - """Return vulnerability data stored in index \"dfn-cert\" + ) -> RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"delta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` :param page: set the page number of the response :type page: int @@ -96100,7 +96100,7 @@ def index_dfn_cert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dfn_cert_get_serialize( + _param = self._index_delta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96132,7 +96132,7 @@ def index_dfn_cert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -96148,7 +96148,7 @@ def index_dfn_cert_get( @validate_call - def index_dfn_cert_get_with_http_info( + def index_delta_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96186,10 +96186,10 @@ def index_dfn_cert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination]: - """Return vulnerability data stored in index \"dfn-cert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"delta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` :param page: set the page number of the response :type page: int @@ -96261,7 +96261,7 @@ def index_dfn_cert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dfn_cert_get_serialize( + _param = self._index_delta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96293,7 +96293,7 @@ def index_dfn_cert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -96309,7 +96309,7 @@ def index_dfn_cert_get_with_http_info( @validate_call - def index_dfn_cert_get_without_preload_content( + def index_delta_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96348,9 +96348,9 @@ def index_dfn_cert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dfn-cert\" + """Return vulnerability data stored in index \"delta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the delta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Delta Controls Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/delta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/delta?cursor=` :param page: set the page number of the response :type page: int @@ -96422,7 +96422,7 @@ def index_dfn_cert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dfn_cert_get_serialize( + _param = self._index_delta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96454,7 +96454,7 @@ def index_dfn_cert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDeltaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -96465,7 +96465,7 @@ def index_dfn_cert_get_without_preload_content( return response_data.response - def _index_dfn_cert_get_serialize( + def _index_delta_get_serialize( self, page, limit, @@ -96633,7 +96633,7 @@ def _index_dfn_cert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dfn-cert', + resource_path='/v3/index/delta', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -96650,7 +96650,7 @@ def _index_dfn_cert_get_serialize( @validate_call - def index_django_get( + def index_dfn_cert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96688,10 +96688,10 @@ def index_django_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination: - """Return vulnerability data stored in index \"django\" + ) -> RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination: + """Return vulnerability data stored in index \"dfn-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` :param page: set the page number of the response :type page: int @@ -96763,7 +96763,7 @@ def index_django_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_django_get_serialize( + _param = self._index_dfn_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96795,7 +96795,7 @@ def index_django_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", '404': "str", '500': "str", } @@ -96811,7 +96811,7 @@ def index_django_get( @validate_call - def index_django_get_with_http_info( + def index_dfn_cert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -96849,10 +96849,10 @@ def index_django_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination]: - """Return vulnerability data stored in index \"django\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination]: + """Return vulnerability data stored in index \"dfn-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` :param page: set the page number of the response :type page: int @@ -96924,7 +96924,7 @@ def index_django_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_django_get_serialize( + _param = self._index_dfn_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -96956,7 +96956,7 @@ def index_django_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", '404': "str", '500': "str", } @@ -96972,7 +96972,7 @@ def index_django_get_with_http_info( @validate_call - def index_django_get_without_preload_content( + def index_dfn_cert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -97011,9 +97011,9 @@ def index_django_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"django\" + """Return vulnerability data stored in index \"dfn-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dfn-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DFN-CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dfn-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dfn-cert?cursor=` :param page: set the page number of the response :type page: int @@ -97085,7 +97085,7 @@ def index_django_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_django_get_serialize( + _param = self._index_dfn_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -97117,7 +97117,7 @@ def index_django_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDFNCertPaginatePagination", '404': "str", '500': "str", } @@ -97128,7 +97128,7 @@ def index_django_get_without_preload_content( return response_data.response - def _index_django_get_serialize( + def _index_dfn_cert_get_serialize( self, page, limit, @@ -97296,7 +97296,7 @@ def _index_django_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/django', + resource_path='/v3/index/dfn-cert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -97313,7 +97313,7 @@ def _index_django_get_serialize( @validate_call - def index_dlink_get( + def index_django_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -97351,10 +97351,10 @@ def index_dlink_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination: - """Return vulnerability data stored in index \"dlink\" + ) -> RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination: + """Return vulnerability data stored in index \"django\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` :param page: set the page number of the response :type page: int @@ -97426,7 +97426,7 @@ def index_dlink_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dlink_get_serialize( + _param = self._index_django_get_serialize( page=page, limit=limit, cursor=cursor, @@ -97458,7 +97458,7 @@ def index_dlink_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", '404': "str", '500': "str", } @@ -97474,7 +97474,7 @@ def index_dlink_get( @validate_call - def index_dlink_get_with_http_info( + def index_django_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -97512,10 +97512,10 @@ def index_dlink_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination]: - """Return vulnerability data stored in index \"dlink\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination]: + """Return vulnerability data stored in index \"django\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` :param page: set the page number of the response :type page: int @@ -97587,7 +97587,7 @@ def index_dlink_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dlink_get_serialize( + _param = self._index_django_get_serialize( page=page, limit=limit, cursor=cursor, @@ -97619,7 +97619,7 @@ def index_dlink_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", '404': "str", '500': "str", } @@ -97635,7 +97635,7 @@ def index_dlink_get_with_http_info( @validate_call - def index_dlink_get_without_preload_content( + def index_django_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -97674,9 +97674,9 @@ def index_dlink_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dlink\" + """Return vulnerability data stored in index \"django\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the django index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Django Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/django?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/django?cursor=` :param page: set the page number of the response :type page: int @@ -97748,7 +97748,7 @@ def index_dlink_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dlink_get_serialize( + _param = self._index_django_get_serialize( page=page, limit=limit, cursor=cursor, @@ -97780,7 +97780,7 @@ def index_dlink_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDjangoPaginatePagination", '404': "str", '500': "str", } @@ -97791,7 +97791,7 @@ def index_dlink_get_without_preload_content( return response_data.response - def _index_dlink_get_serialize( + def _index_django_get_serialize( self, page, limit, @@ -97959,7 +97959,7 @@ def _index_dlink_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dlink', + resource_path='/v3/index/django', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -97976,7 +97976,7 @@ def _index_dlink_get_serialize( @validate_call - def index_dnn_get( + def index_dlink_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98014,10 +98014,10 @@ def index_dnn_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination: - """Return vulnerability data stored in index \"dnn\" + ) -> RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination: + """Return vulnerability data stored in index \"dlink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` :param page: set the page number of the response :type page: int @@ -98089,7 +98089,7 @@ def index_dnn_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dnn_get_serialize( + _param = self._index_dlink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98121,7 +98121,7 @@ def index_dnn_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", '404': "str", '500': "str", } @@ -98137,7 +98137,7 @@ def index_dnn_get( @validate_call - def index_dnn_get_with_http_info( + def index_dlink_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98175,10 +98175,10 @@ def index_dnn_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination]: - """Return vulnerability data stored in index \"dnn\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination]: + """Return vulnerability data stored in index \"dlink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` :param page: set the page number of the response :type page: int @@ -98250,7 +98250,7 @@ def index_dnn_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dnn_get_serialize( + _param = self._index_dlink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98282,7 +98282,7 @@ def index_dnn_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", '404': "str", '500': "str", } @@ -98298,7 +98298,7 @@ def index_dnn_get_with_http_info( @validate_call - def index_dnn_get_without_preload_content( + def index_dlink_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98337,9 +98337,9 @@ def index_dnn_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dnn\" + """Return vulnerability data stored in index \"dlink\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dlink index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DLink Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dlink?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dlink?cursor=` :param page: set the page number of the response :type page: int @@ -98411,7 +98411,7 @@ def index_dnn_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dnn_get_serialize( + _param = self._index_dlink_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98443,7 +98443,7 @@ def index_dnn_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDLinkPaginatePagination", '404': "str", '500': "str", } @@ -98454,7 +98454,7 @@ def index_dnn_get_without_preload_content( return response_data.response - def _index_dnn_get_serialize( + def _index_dlink_get_serialize( self, page, limit, @@ -98622,7 +98622,7 @@ def _index_dnn_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dnn', + resource_path='/v3/index/dlink', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -98639,7 +98639,7 @@ def _index_dnn_get_serialize( @validate_call - def index_dotcms_get( + def index_dnn_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98677,10 +98677,10 @@ def index_dotcms_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination: - """Return vulnerability data stored in index \"dotcms\" + ) -> RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination: + """Return vulnerability data stored in index \"dnn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` :param page: set the page number of the response :type page: int @@ -98752,7 +98752,7 @@ def index_dotcms_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dotcms_get_serialize( + _param = self._index_dnn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98784,7 +98784,7 @@ def index_dotcms_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", '404': "str", '500': "str", } @@ -98800,7 +98800,7 @@ def index_dotcms_get( @validate_call - def index_dotcms_get_with_http_info( + def index_dnn_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -98838,10 +98838,10 @@ def index_dotcms_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination]: - """Return vulnerability data stored in index \"dotcms\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination]: + """Return vulnerability data stored in index \"dnn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` :param page: set the page number of the response :type page: int @@ -98913,7 +98913,7 @@ def index_dotcms_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dotcms_get_serialize( + _param = self._index_dnn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -98945,7 +98945,7 @@ def index_dotcms_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", '404': "str", '500': "str", } @@ -98961,7 +98961,7 @@ def index_dotcms_get_with_http_info( @validate_call - def index_dotcms_get_without_preload_content( + def index_dnn_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -99000,9 +99000,9 @@ def index_dotcms_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dotcms\" + """Return vulnerability data stored in index \"dnn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dnn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DNN Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dnn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dnn?cursor=` :param page: set the page number of the response :type page: int @@ -99074,7 +99074,7 @@ def index_dotcms_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dotcms_get_serialize( + _param = self._index_dnn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -99106,7 +99106,7 @@ def index_dotcms_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDNNPaginatePagination", '404': "str", '500': "str", } @@ -99117,7 +99117,7 @@ def index_dotcms_get_without_preload_content( return response_data.response - def _index_dotcms_get_serialize( + def _index_dnn_get_serialize( self, page, limit, @@ -99285,7 +99285,7 @@ def _index_dotcms_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dotcms', + resource_path='/v3/index/dnn', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -99302,7 +99302,7 @@ def _index_dotcms_get_serialize( @validate_call - def index_draeger_get( + def index_dotcms_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -99340,10 +99340,10 @@ def index_draeger_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"draeger\" + ) -> RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination: + """Return vulnerability data stored in index \"dotcms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` :param page: set the page number of the response :type page: int @@ -99415,7 +99415,7 @@ def index_draeger_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draeger_get_serialize( + _param = self._index_dotcms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -99447,7 +99447,7 @@ def index_draeger_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", '404': "str", '500': "str", } @@ -99463,7 +99463,7 @@ def index_draeger_get( @validate_call - def index_draeger_get_with_http_info( + def index_dotcms_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -99501,10 +99501,10 @@ def index_draeger_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"draeger\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination]: + """Return vulnerability data stored in index \"dotcms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` :param page: set the page number of the response :type page: int @@ -99576,7 +99576,7 @@ def index_draeger_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draeger_get_serialize( + _param = self._index_dotcms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -99608,7 +99608,7 @@ def index_draeger_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", '404': "str", '500': "str", } @@ -99624,7 +99624,7 @@ def index_draeger_get_with_http_info( @validate_call - def index_draeger_get_without_preload_content( + def index_dotcms_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -99663,9 +99663,9 @@ def index_draeger_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"draeger\" + """Return vulnerability data stored in index \"dotcms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dotcms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DotCMS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dotcms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dotcms?cursor=` :param page: set the page number of the response :type page: int @@ -99737,7 +99737,7 @@ def index_draeger_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draeger_get_serialize( + _param = self._index_dotcms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -99769,7 +99769,7 @@ def index_draeger_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDotCMSPaginatePagination", '404': "str", '500': "str", } @@ -99780,7 +99780,7 @@ def index_draeger_get_without_preload_content( return response_data.response - def _index_draeger_get_serialize( + def _index_dotcms_get_serialize( self, page, limit, @@ -99948,7 +99948,7 @@ def _index_draeger_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/draeger', + resource_path='/v3/index/dotcms', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -99965,7 +99965,7 @@ def _index_draeger_get_serialize( @validate_call - def index_dragos_get( + def index_draeger_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100003,10 +100003,10 @@ def index_dragos_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"dragos\" + ) -> RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"draeger\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` :param page: set the page number of the response :type page: int @@ -100078,7 +100078,7 @@ def index_dragos_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dragos_get_serialize( + _param = self._index_draeger_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100110,7 +100110,7 @@ def index_dragos_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100126,7 +100126,7 @@ def index_dragos_get( @validate_call - def index_dragos_get_with_http_info( + def index_draeger_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100164,10 +100164,10 @@ def index_dragos_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"dragos\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"draeger\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` :param page: set the page number of the response :type page: int @@ -100239,7 +100239,7 @@ def index_dragos_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dragos_get_serialize( + _param = self._index_draeger_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100271,7 +100271,7 @@ def index_dragos_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100287,7 +100287,7 @@ def index_dragos_get_with_http_info( @validate_call - def index_dragos_get_without_preload_content( + def index_draeger_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100326,9 +100326,9 @@ def index_dragos_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"dragos\" + """Return vulnerability data stored in index \"draeger\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draeger index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Draeger Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draeger?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draeger?cursor=` :param page: set the page number of the response :type page: int @@ -100400,7 +100400,7 @@ def index_dragos_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_dragos_get_serialize( + _param = self._index_draeger_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100432,7 +100432,7 @@ def index_dragos_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraegerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100443,7 +100443,7 @@ def index_dragos_get_without_preload_content( return response_data.response - def _index_dragos_get_serialize( + def _index_draeger_get_serialize( self, page, limit, @@ -100611,7 +100611,7 @@ def _index_dragos_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/dragos', + resource_path='/v3/index/draeger', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -100628,7 +100628,7 @@ def _index_dragos_get_serialize( @validate_call - def index_draytek_get( + def index_dragos_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100666,10 +100666,10 @@ def index_draytek_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination: - """Return vulnerability data stored in index \"draytek\" + ) -> RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"dragos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` :param page: set the page number of the response :type page: int @@ -100741,7 +100741,7 @@ def index_draytek_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draytek_get_serialize( + _param = self._index_dragos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100773,7 +100773,7 @@ def index_draytek_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100789,7 +100789,7 @@ def index_draytek_get( @validate_call - def index_draytek_get_with_http_info( + def index_dragos_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100827,10 +100827,10 @@ def index_draytek_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination]: - """Return vulnerability data stored in index \"draytek\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"dragos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` :param page: set the page number of the response :type page: int @@ -100902,7 +100902,7 @@ def index_draytek_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draytek_get_serialize( + _param = self._index_dragos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -100934,7 +100934,7 @@ def index_draytek_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -100950,7 +100950,7 @@ def index_draytek_get_with_http_info( @validate_call - def index_draytek_get_without_preload_content( + def index_dragos_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -100989,9 +100989,9 @@ def index_draytek_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"draytek\" + """Return vulnerability data stored in index \"dragos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the dragos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Dragos Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/dragos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/dragos?cursor=` :param page: set the page number of the response :type page: int @@ -101063,7 +101063,7 @@ def index_draytek_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_draytek_get_serialize( + _param = self._index_dragos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -101095,7 +101095,7 @@ def index_draytek_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDragosAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -101106,7 +101106,7 @@ def index_draytek_get_without_preload_content( return response_data.response - def _index_draytek_get_serialize( + def _index_dragos_get_serialize( self, page, limit, @@ -101274,7 +101274,7 @@ def _index_draytek_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/draytek', + resource_path='/v3/index/dragos', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -101291,7 +101291,7 @@ def _index_draytek_get_serialize( @validate_call - def index_drupal_get( + def index_draytek_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -101329,10 +101329,10 @@ def index_drupal_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination: - """Return vulnerability data stored in index \"drupal\" + ) -> RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination: + """Return vulnerability data stored in index \"draytek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` :param page: set the page number of the response :type page: int @@ -101404,7 +101404,7 @@ def index_drupal_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_drupal_get_serialize( + _param = self._index_draytek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -101436,7 +101436,7 @@ def index_drupal_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", '404': "str", '500': "str", } @@ -101452,7 +101452,7 @@ def index_drupal_get( @validate_call - def index_drupal_get_with_http_info( + def index_draytek_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -101490,10 +101490,10 @@ def index_drupal_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination]: - """Return vulnerability data stored in index \"drupal\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination]: + """Return vulnerability data stored in index \"draytek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` :param page: set the page number of the response :type page: int @@ -101565,7 +101565,7 @@ def index_drupal_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_drupal_get_serialize( + _param = self._index_draytek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -101597,7 +101597,7 @@ def index_drupal_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", '404': "str", '500': "str", } @@ -101613,7 +101613,7 @@ def index_drupal_get_with_http_info( @validate_call - def index_drupal_get_without_preload_content( + def index_draytek_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -101652,9 +101652,9 @@ def index_drupal_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"drupal\" + """Return vulnerability data stored in index \"draytek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the draytek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** DrayTek Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/draytek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/draytek?cursor=` :param page: set the page number of the response :type page: int @@ -101726,7 +101726,7 @@ def index_drupal_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_drupal_get_serialize( + _param = self._index_draytek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -101758,7 +101758,7 @@ def index_drupal_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDraytekPaginatePagination", '404': "str", '500': "str", } @@ -101769,7 +101769,7 @@ def index_drupal_get_without_preload_content( return response_data.response - def _index_drupal_get_serialize( + def _index_draytek_get_serialize( self, page, limit, @@ -101937,7 +101937,7 @@ def _index_drupal_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/drupal', + resource_path='/v3/index/draytek', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -101954,7 +101954,7 @@ def _index_drupal_get_serialize( @validate_call - def index_eaton_get( + def index_drupal_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -101992,10 +101992,10 @@ def index_eaton_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"eaton\" + ) -> RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination: + """Return vulnerability data stored in index \"drupal\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` :param page: set the page number of the response :type page: int @@ -102067,7 +102067,7 @@ def index_eaton_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eaton_get_serialize( + _param = self._index_drupal_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102099,7 +102099,7 @@ def index_eaton_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", '404': "str", '500': "str", } @@ -102115,7 +102115,7 @@ def index_eaton_get( @validate_call - def index_eaton_get_with_http_info( + def index_drupal_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102153,10 +102153,10 @@ def index_eaton_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"eaton\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination]: + """Return vulnerability data stored in index \"drupal\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` :param page: set the page number of the response :type page: int @@ -102228,7 +102228,7 @@ def index_eaton_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eaton_get_serialize( + _param = self._index_drupal_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102260,7 +102260,7 @@ def index_eaton_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", '404': "str", '500': "str", } @@ -102276,7 +102276,7 @@ def index_eaton_get_with_http_info( @validate_call - def index_eaton_get_without_preload_content( + def index_drupal_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102315,9 +102315,9 @@ def index_eaton_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"eaton\" + """Return vulnerability data stored in index \"drupal\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the drupal index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Drupal Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/drupal?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/drupal?cursor=` :param page: set the page number of the response :type page: int @@ -102389,7 +102389,7 @@ def index_eaton_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eaton_get_serialize( + _param = self._index_drupal_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102421,7 +102421,7 @@ def index_eaton_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryDrupalPaginatePagination", '404': "str", '500': "str", } @@ -102432,7 +102432,7 @@ def index_eaton_get_without_preload_content( return response_data.response - def _index_eaton_get_serialize( + def _index_drupal_get_serialize( self, page, limit, @@ -102600,7 +102600,7 @@ def _index_eaton_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/eaton', + resource_path='/v3/index/drupal', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -102617,7 +102617,7 @@ def _index_eaton_get_serialize( @validate_call - def index_elastic_get( + def index_eaton_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102655,10 +102655,10 @@ def index_elastic_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination: - """Return vulnerability data stored in index \"elastic\" + ) -> RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"eaton\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` :param page: set the page number of the response :type page: int @@ -102730,7 +102730,7 @@ def index_elastic_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elastic_get_serialize( + _param = self._index_eaton_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102762,7 +102762,7 @@ def index_elastic_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -102778,7 +102778,7 @@ def index_elastic_get( @validate_call - def index_elastic_get_with_http_info( + def index_eaton_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102816,10 +102816,10 @@ def index_elastic_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination]: - """Return vulnerability data stored in index \"elastic\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"eaton\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` :param page: set the page number of the response :type page: int @@ -102891,7 +102891,7 @@ def index_elastic_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elastic_get_serialize( + _param = self._index_eaton_get_serialize( page=page, limit=limit, cursor=cursor, @@ -102923,7 +102923,7 @@ def index_elastic_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -102939,7 +102939,7 @@ def index_elastic_get_with_http_info( @validate_call - def index_elastic_get_without_preload_content( + def index_eaton_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -102978,9 +102978,9 @@ def index_elastic_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"elastic\" + """Return vulnerability data stored in index \"eaton\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eaton index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Eaton Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eaton?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eaton?cursor=` :param page: set the page number of the response :type page: int @@ -103052,7 +103052,7 @@ def index_elastic_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elastic_get_serialize( + _param = self._index_eaton_get_serialize( page=page, limit=limit, cursor=cursor, @@ -103084,7 +103084,7 @@ def index_elastic_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEatonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -103095,7 +103095,7 @@ def index_elastic_get_without_preload_content( return response_data.response - def _index_elastic_get_serialize( + def _index_eaton_get_serialize( self, page, limit, @@ -103263,7 +103263,7 @@ def _index_elastic_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/elastic', + resource_path='/v3/index/eaton', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -103280,7 +103280,7 @@ def _index_elastic_get_serialize( @validate_call - def index_elspec_get( + def index_elastic_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -103318,10 +103318,10 @@ def index_elspec_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination: - """Return vulnerability data stored in index \"elspec\" + ) -> RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination: + """Return vulnerability data stored in index \"elastic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` :param page: set the page number of the response :type page: int @@ -103393,7 +103393,7 @@ def index_elspec_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elspec_get_serialize( + _param = self._index_elastic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -103425,7 +103425,7 @@ def index_elspec_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", '404': "str", '500': "str", } @@ -103441,7 +103441,7 @@ def index_elspec_get( @validate_call - def index_elspec_get_with_http_info( + def index_elastic_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -103479,10 +103479,10 @@ def index_elspec_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination]: - """Return vulnerability data stored in index \"elspec\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination]: + """Return vulnerability data stored in index \"elastic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` :param page: set the page number of the response :type page: int @@ -103554,7 +103554,7 @@ def index_elspec_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elspec_get_serialize( + _param = self._index_elastic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -103586,7 +103586,7 @@ def index_elspec_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", '404': "str", '500': "str", } @@ -103602,7 +103602,7 @@ def index_elspec_get_with_http_info( @validate_call - def index_elspec_get_without_preload_content( + def index_elastic_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -103641,9 +103641,9 @@ def index_elspec_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"elspec\" + """Return vulnerability data stored in index \"elastic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elastic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elastic Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elastic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elastic?cursor=` :param page: set the page number of the response :type page: int @@ -103715,7 +103715,7 @@ def index_elspec_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_elspec_get_serialize( + _param = self._index_elastic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -103747,7 +103747,7 @@ def index_elspec_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElasticPaginatePagination", '404': "str", '500': "str", } @@ -103758,7 +103758,7 @@ def index_elspec_get_without_preload_content( return response_data.response - def _index_elspec_get_serialize( + def _index_elastic_get_serialize( self, page, limit, @@ -103926,7 +103926,7 @@ def _index_elspec_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/elspec', + resource_path='/v3/index/elastic', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -103943,7 +103943,7 @@ def _index_elspec_get_serialize( @validate_call - def index_emerging_threats_snort_get( + def index_elspec_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -103981,10 +103981,10 @@ def index_emerging_threats_snort_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination: - """Return vulnerability data stored in index \"emerging-threats-snort\" + ) -> RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination: + """Return vulnerability data stored in index \"elspec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` :param page: set the page number of the response :type page: int @@ -104056,7 +104056,7 @@ def index_emerging_threats_snort_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerging_threats_snort_get_serialize( + _param = self._index_elspec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104088,7 +104088,7 @@ def index_emerging_threats_snort_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", '404': "str", '500': "str", } @@ -104104,7 +104104,7 @@ def index_emerging_threats_snort_get( @validate_call - def index_emerging_threats_snort_get_with_http_info( + def index_elspec_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104142,10 +104142,10 @@ def index_emerging_threats_snort_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination]: - """Return vulnerability data stored in index \"emerging-threats-snort\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination]: + """Return vulnerability data stored in index \"elspec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` :param page: set the page number of the response :type page: int @@ -104217,7 +104217,7 @@ def index_emerging_threats_snort_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerging_threats_snort_get_serialize( + _param = self._index_elspec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104249,7 +104249,7 @@ def index_emerging_threats_snort_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", '404': "str", '500': "str", } @@ -104265,7 +104265,7 @@ def index_emerging_threats_snort_get_with_http_info( @validate_call - def index_emerging_threats_snort_get_without_preload_content( + def index_elspec_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104304,9 +104304,9 @@ def index_emerging_threats_snort_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"emerging-threats-snort\" + """Return vulnerability data stored in index \"elspec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the elspec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Elspec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/elspec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/elspec?cursor=` :param page: set the page number of the response :type page: int @@ -104378,7 +104378,7 @@ def index_emerging_threats_snort_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerging_threats_snort_get_serialize( + _param = self._index_elspec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104410,7 +104410,7 @@ def index_emerging_threats_snort_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryElspecPaginatePagination", '404': "str", '500': "str", } @@ -104421,7 +104421,7 @@ def index_emerging_threats_snort_get_without_preload_content( return response_data.response - def _index_emerging_threats_snort_get_serialize( + def _index_elspec_get_serialize( self, page, limit, @@ -104589,7 +104589,7 @@ def _index_emerging_threats_snort_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/emerging-threats-snort', + resource_path='/v3/index/elspec', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -104606,7 +104606,7 @@ def _index_emerging_threats_snort_get_serialize( @validate_call - def index_emerson_get( + def index_emerging_threats_snort_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104644,10 +104644,10 @@ def index_emerson_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"emerson\" + ) -> RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination: + """Return vulnerability data stored in index \"emerging-threats-snort\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` :param page: set the page number of the response :type page: int @@ -104719,7 +104719,7 @@ def index_emerson_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerson_get_serialize( + _param = self._index_emerging_threats_snort_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104751,7 +104751,7 @@ def index_emerson_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", '404': "str", '500': "str", } @@ -104767,7 +104767,7 @@ def index_emerson_get( @validate_call - def index_emerson_get_with_http_info( + def index_emerging_threats_snort_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104805,10 +104805,10 @@ def index_emerson_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"emerson\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination]: + """Return vulnerability data stored in index \"emerging-threats-snort\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` :param page: set the page number of the response :type page: int @@ -104880,7 +104880,7 @@ def index_emerson_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerson_get_serialize( + _param = self._index_emerging_threats_snort_get_serialize( page=page, limit=limit, cursor=cursor, @@ -104912,7 +104912,7 @@ def index_emerson_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", '404': "str", '500': "str", } @@ -104928,7 +104928,7 @@ def index_emerson_get_with_http_info( @validate_call - def index_emerson_get_without_preload_content( + def index_emerging_threats_snort_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -104967,9 +104967,9 @@ def index_emerson_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"emerson\" + """Return vulnerability data stored in index \"emerging-threats-snort\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerging-threats-snort index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerging Threats Snort ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerging-threats-snort?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerging-threats-snort?cursor=` :param page: set the page number of the response :type page: int @@ -105041,7 +105041,7 @@ def index_emerson_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_emerson_get_serialize( + _param = self._index_emerging_threats_snort_get_serialize( page=page, limit=limit, cursor=cursor, @@ -105073,7 +105073,7 @@ def index_emerson_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmergingThreatsSnortPaginatePagination", '404': "str", '500': "str", } @@ -105084,7 +105084,7 @@ def index_emerson_get_without_preload_content( return response_data.response - def _index_emerson_get_serialize( + def _index_emerging_threats_snort_get_serialize( self, page, limit, @@ -105252,7 +105252,7 @@ def _index_emerson_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/emerson', + resource_path='/v3/index/emerging-threats-snort', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -105269,7 +105269,7 @@ def _index_emerson_get_serialize( @validate_call - def index_endoflife_get( + def index_emerson_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -105307,10 +105307,10 @@ def index_endoflife_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination: - """Return vulnerability data stored in index \"endoflife\" + ) -> RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"emerson\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` :param page: set the page number of the response :type page: int @@ -105382,7 +105382,7 @@ def index_endoflife_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endoflife_get_serialize( + _param = self._index_emerson_get_serialize( page=page, limit=limit, cursor=cursor, @@ -105414,7 +105414,7 @@ def index_endoflife_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -105430,7 +105430,7 @@ def index_endoflife_get( @validate_call - def index_endoflife_get_with_http_info( + def index_emerson_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -105468,10 +105468,10 @@ def index_endoflife_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination]: - """Return vulnerability data stored in index \"endoflife\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"emerson\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` :param page: set the page number of the response :type page: int @@ -105543,7 +105543,7 @@ def index_endoflife_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endoflife_get_serialize( + _param = self._index_emerson_get_serialize( page=page, limit=limit, cursor=cursor, @@ -105575,7 +105575,7 @@ def index_endoflife_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -105591,7 +105591,7 @@ def index_endoflife_get_with_http_info( @validate_call - def index_endoflife_get_without_preload_content( + def index_emerson_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -105630,9 +105630,9 @@ def index_endoflife_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"endoflife\" + """Return vulnerability data stored in index \"emerson\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the emerson index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Emerson Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/emerson?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/emerson?cursor=` :param page: set the page number of the response :type page: int @@ -105704,7 +105704,7 @@ def index_endoflife_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endoflife_get_serialize( + _param = self._index_emerson_get_serialize( page=page, limit=limit, cursor=cursor, @@ -105736,7 +105736,7 @@ def index_endoflife_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEmersonAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -105747,7 +105747,7 @@ def index_endoflife_get_without_preload_content( return response_data.response - def _index_endoflife_get_serialize( + def _index_emerson_get_serialize( self, page, limit, @@ -105915,7 +105915,7 @@ def _index_endoflife_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/endoflife', + resource_path='/v3/index/emerson', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -105932,7 +105932,7 @@ def _index_endoflife_get_serialize( @validate_call - def index_endress_get( + def index_endoflife_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -105970,10 +105970,10 @@ def index_endress_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination: - """Return vulnerability data stored in index \"endress\" + ) -> RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination: + """Return vulnerability data stored in index \"endoflife\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` :param page: set the page number of the response :type page: int @@ -106045,7 +106045,7 @@ def index_endress_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endress_get_serialize( + _param = self._index_endoflife_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106077,7 +106077,7 @@ def index_endress_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", '404': "str", '500': "str", } @@ -106093,7 +106093,7 @@ def index_endress_get( @validate_call - def index_endress_get_with_http_info( + def index_endoflife_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106131,10 +106131,10 @@ def index_endress_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination]: - """Return vulnerability data stored in index \"endress\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination]: + """Return vulnerability data stored in index \"endoflife\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` :param page: set the page number of the response :type page: int @@ -106206,7 +106206,7 @@ def index_endress_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endress_get_serialize( + _param = self._index_endoflife_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106238,7 +106238,7 @@ def index_endress_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", '404': "str", '500': "str", } @@ -106254,7 +106254,7 @@ def index_endress_get_with_http_info( @validate_call - def index_endress_get_without_preload_content( + def index_endoflife_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106293,9 +106293,9 @@ def index_endress_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"endress\" + """Return vulnerability data stored in index \"endoflife\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endoflife index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End Of Life ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endoflife?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endoflife?cursor=` :param page: set the page number of the response :type page: int @@ -106367,7 +106367,7 @@ def index_endress_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_endress_get_serialize( + _param = self._index_endoflife_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106399,7 +106399,7 @@ def index_endress_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndOfLifePaginatePagination", '404': "str", '500': "str", } @@ -106410,7 +106410,7 @@ def index_endress_get_without_preload_content( return response_data.response - def _index_endress_get_serialize( + def _index_endoflife_get_serialize( self, page, limit, @@ -106578,7 +106578,7 @@ def _index_endress_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/endress', + resource_path='/v3/index/endoflife', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -106595,7 +106595,7 @@ def _index_endress_get_serialize( @validate_call - def index_eol_alibaba_get( + def index_endress_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106633,10 +106633,10 @@ def index_eol_alibaba_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination: - """Return vulnerability data stored in index \"eol-alibaba\" + ) -> RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination: + """Return vulnerability data stored in index \"endress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` :param page: set the page number of the response :type page: int @@ -106708,7 +106708,7 @@ def index_eol_alibaba_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_alibaba_get_serialize( + _param = self._index_endress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106740,7 +106740,7 @@ def index_eol_alibaba_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", '404': "str", '500': "str", } @@ -106756,7 +106756,7 @@ def index_eol_alibaba_get( @validate_call - def index_eol_alibaba_get_with_http_info( + def index_endress_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106794,10 +106794,10 @@ def index_eol_alibaba_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination]: - """Return vulnerability data stored in index \"eol-alibaba\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination]: + """Return vulnerability data stored in index \"endress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` :param page: set the page number of the response :type page: int @@ -106869,7 +106869,7 @@ def index_eol_alibaba_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_alibaba_get_serialize( + _param = self._index_endress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -106901,7 +106901,7 @@ def index_eol_alibaba_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", '404': "str", '500': "str", } @@ -106917,7 +106917,7 @@ def index_eol_alibaba_get_with_http_info( @validate_call - def index_eol_alibaba_get_without_preload_content( + def index_endress_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -106956,9 +106956,9 @@ def index_eol_alibaba_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"eol-alibaba\" + """Return vulnerability data stored in index \"endress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the endress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Endress & Hauser Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/endress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/endress?cursor=` :param page: set the page number of the response :type page: int @@ -107030,7 +107030,7 @@ def index_eol_alibaba_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_alibaba_get_serialize( + _param = self._index_endress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -107062,7 +107062,7 @@ def index_eol_alibaba_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEndressPaginatePagination", '404': "str", '500': "str", } @@ -107073,7 +107073,7 @@ def index_eol_alibaba_get_without_preload_content( return response_data.response - def _index_eol_alibaba_get_serialize( + def _index_endress_get_serialize( self, page, limit, @@ -107241,7 +107241,7 @@ def _index_eol_alibaba_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/eol-alibaba', + resource_path='/v3/index/endress', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -107258,7 +107258,7 @@ def _index_eol_alibaba_get_serialize( @validate_call - def index_eol_get( + def index_eol_alibaba_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -107296,10 +107296,10 @@ def index_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination: - """Return vulnerability data stored in index \"eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination: + """Return vulnerability data stored in index \"eol-alibaba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` :param page: set the page number of the response :type page: int @@ -107371,7 +107371,7 @@ def index_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_get_serialize( + _param = self._index_eol_alibaba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -107403,7 +107403,7 @@ def index_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", '404': "str", '500': "str", } @@ -107419,7 +107419,7 @@ def index_eol_get( @validate_call - def index_eol_get_with_http_info( + def index_eol_alibaba_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -107457,10 +107457,10 @@ def index_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination]: - """Return vulnerability data stored in index \"eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination]: + """Return vulnerability data stored in index \"eol-alibaba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` :param page: set the page number of the response :type page: int @@ -107532,7 +107532,7 @@ def index_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_get_serialize( + _param = self._index_eol_alibaba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -107564,7 +107564,7 @@ def index_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", '404': "str", '500': "str", } @@ -107580,7 +107580,7 @@ def index_eol_get_with_http_info( @validate_call - def index_eol_get_without_preload_content( + def index_eol_alibaba_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -107619,9 +107619,9 @@ def index_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"eol\" + """Return vulnerability data stored in index \"eol-alibaba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-alibaba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Alibaba EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-alibaba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-alibaba?cursor=` :param page: set the page number of the response :type page: int @@ -107693,7 +107693,7 @@ def index_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_get_serialize( + _param = self._index_eol_alibaba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -107725,7 +107725,7 @@ def index_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLAlibabaPaginatePagination", '404': "str", '500': "str", } @@ -107736,7 +107736,7 @@ def index_eol_get_without_preload_content( return response_data.response - def _index_eol_get_serialize( + def _index_eol_alibaba_get_serialize( self, page, limit, @@ -107904,7 +107904,7 @@ def _index_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/eol', + resource_path='/v3/index/eol-alibaba', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -107921,7 +107921,7 @@ def _index_eol_get_serialize( @validate_call - def index_eol_microsoft_get( + def index_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -107959,10 +107959,10 @@ def index_eol_microsoft_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination: - """Return vulnerability data stored in index \"eol-microsoft\" + ) -> RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination: + """Return vulnerability data stored in index \"eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` :param page: set the page number of the response :type page: int @@ -108034,7 +108034,7 @@ def index_eol_microsoft_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_microsoft_get_serialize( + _param = self._index_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108066,7 +108066,7 @@ def index_eol_microsoft_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", '404': "str", '500': "str", } @@ -108082,7 +108082,7 @@ def index_eol_microsoft_get( @validate_call - def index_eol_microsoft_get_with_http_info( + def index_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108120,10 +108120,10 @@ def index_eol_microsoft_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination]: - """Return vulnerability data stored in index \"eol-microsoft\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination]: + """Return vulnerability data stored in index \"eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` :param page: set the page number of the response :type page: int @@ -108195,7 +108195,7 @@ def index_eol_microsoft_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_microsoft_get_serialize( + _param = self._index_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108227,7 +108227,7 @@ def index_eol_microsoft_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", '404': "str", '500': "str", } @@ -108243,7 +108243,7 @@ def index_eol_microsoft_get_with_http_info( @validate_call - def index_eol_microsoft_get_without_preload_content( + def index_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108282,9 +108282,9 @@ def index_eol_microsoft_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"eol-microsoft\" + """Return vulnerability data stored in index \"eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck EOL Coverage ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol?cursor=` :param page: set the page number of the response :type page: int @@ -108356,7 +108356,7 @@ def index_eol_microsoft_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_eol_microsoft_get_serialize( + _param = self._index_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108388,7 +108388,7 @@ def index_eol_microsoft_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLReleaseDataPaginatePagination", '404': "str", '500': "str", } @@ -108399,7 +108399,7 @@ def index_eol_microsoft_get_without_preload_content( return response_data.response - def _index_eol_microsoft_get_serialize( + def _index_eol_get_serialize( self, page, limit, @@ -108567,7 +108567,7 @@ def _index_eol_microsoft_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/eol-microsoft', + resource_path='/v3/index/eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -108584,7 +108584,7 @@ def _index_eol_microsoft_get_serialize( @validate_call - def index_epss_get( + def index_eol_microsoft_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108622,10 +108622,10 @@ def index_epss_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination: - """Return vulnerability data stored in index \"epss\" + ) -> RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination: + """Return vulnerability data stored in index \"eol-microsoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` :param page: set the page number of the response :type page: int @@ -108697,7 +108697,7 @@ def index_epss_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_epss_get_serialize( + _param = self._index_eol_microsoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108729,7 +108729,7 @@ def index_epss_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", '404': "str", '500': "str", } @@ -108745,7 +108745,7 @@ def index_epss_get( @validate_call - def index_epss_get_with_http_info( + def index_eol_microsoft_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108783,10 +108783,10 @@ def index_epss_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination]: - """Return vulnerability data stored in index \"epss\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination]: + """Return vulnerability data stored in index \"eol-microsoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` :param page: set the page number of the response :type page: int @@ -108858,7 +108858,7 @@ def index_epss_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_epss_get_serialize( + _param = self._index_eol_microsoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -108890,7 +108890,7 @@ def index_epss_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", '404': "str", '500': "str", } @@ -108906,7 +108906,7 @@ def index_epss_get_with_http_info( @validate_call - def index_epss_get_without_preload_content( + def index_eol_microsoft_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -108945,9 +108945,9 @@ def index_epss_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"epss\" + """Return vulnerability data stored in index \"eol-microsoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the eol-microsoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft EOL ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/eol-microsoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/eol-microsoft?cursor=` :param page: set the page number of the response :type page: int @@ -109019,7 +109019,7 @@ def index_epss_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_epss_get_serialize( + _param = self._index_eol_microsoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -109051,7 +109051,7 @@ def index_epss_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEOLMicrosoftPaginatePagination", '404': "str", '500': "str", } @@ -109062,7 +109062,7 @@ def index_epss_get_without_preload_content( return response_data.response - def _index_epss_get_serialize( + def _index_eol_microsoft_get_serialize( self, page, limit, @@ -109230,7 +109230,7 @@ def _index_epss_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/epss', + resource_path='/v3/index/eol-microsoft', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -109247,7 +109247,7 @@ def _index_epss_get_serialize( @validate_call - def index_euvd_get( + def index_epss_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -109285,10 +109285,10 @@ def index_euvd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination: - """Return vulnerability data stored in index \"euvd\" + ) -> RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination: + """Return vulnerability data stored in index \"epss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` :param page: set the page number of the response :type page: int @@ -109360,7 +109360,7 @@ def index_euvd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_euvd_get_serialize( + _param = self._index_epss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -109392,7 +109392,7 @@ def index_euvd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", '404': "str", '500': "str", } @@ -109408,7 +109408,7 @@ def index_euvd_get( @validate_call - def index_euvd_get_with_http_info( + def index_epss_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -109446,10 +109446,10 @@ def index_euvd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination]: - """Return vulnerability data stored in index \"euvd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination]: + """Return vulnerability data stored in index \"epss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` :param page: set the page number of the response :type page: int @@ -109521,7 +109521,7 @@ def index_euvd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_euvd_get_serialize( + _param = self._index_epss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -109553,7 +109553,7 @@ def index_euvd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", '404': "str", '500': "str", } @@ -109569,7 +109569,7 @@ def index_euvd_get_with_http_info( @validate_call - def index_euvd_get_without_preload_content( + def index_epss_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -109608,9 +109608,9 @@ def index_euvd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"euvd\" + """Return vulnerability data stored in index \"epss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the epss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** EPSS Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/epss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/epss?cursor=` :param page: set the page number of the response :type page: int @@ -109682,7 +109682,7 @@ def index_euvd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_euvd_get_serialize( + _param = self._index_epss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -109714,7 +109714,7 @@ def index_euvd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiEPSSDataPaginatePagination", '404': "str", '500': "str", } @@ -109725,7 +109725,7 @@ def index_euvd_get_without_preload_content( return response_data.response - def _index_euvd_get_serialize( + def _index_epss_get_serialize( self, page, limit, @@ -109893,7 +109893,7 @@ def _index_euvd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/euvd', + resource_path='/v3/index/epss', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -109910,7 +109910,7 @@ def _index_euvd_get_serialize( @validate_call - def index_exodus_intel_get( + def index_euvd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -109948,10 +109948,10 @@ def index_exodus_intel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination: - """Return vulnerability data stored in index \"exodus-intel\" + ) -> RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination: + """Return vulnerability data stored in index \"euvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` :param page: set the page number of the response :type page: int @@ -110023,7 +110023,7 @@ def index_exodus_intel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exodus_intel_get_serialize( + _param = self._index_euvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110055,7 +110055,7 @@ def index_exodus_intel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", '404': "str", '500': "str", } @@ -110071,7 +110071,7 @@ def index_exodus_intel_get( @validate_call - def index_exodus_intel_get_with_http_info( + def index_euvd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110109,10 +110109,10 @@ def index_exodus_intel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination]: - """Return vulnerability data stored in index \"exodus-intel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination]: + """Return vulnerability data stored in index \"euvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` :param page: set the page number of the response :type page: int @@ -110184,7 +110184,7 @@ def index_exodus_intel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exodus_intel_get_serialize( + _param = self._index_euvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110216,7 +110216,7 @@ def index_exodus_intel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", '404': "str", '500': "str", } @@ -110232,7 +110232,7 @@ def index_exodus_intel_get_with_http_info( @validate_call - def index_exodus_intel_get_without_preload_content( + def index_euvd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110271,9 +110271,9 @@ def index_exodus_intel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exodus-intel\" + """Return vulnerability data stored in index \"euvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the euvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** European Union Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/euvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/euvd?cursor=` :param page: set the page number of the response :type page: int @@ -110345,7 +110345,7 @@ def index_exodus_intel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exodus_intel_get_serialize( + _param = self._index_euvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110377,7 +110377,7 @@ def index_exodus_intel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryEUVDPaginatePagination", '404': "str", '500': "str", } @@ -110388,7 +110388,7 @@ def index_exodus_intel_get_without_preload_content( return response_data.response - def _index_exodus_intel_get_serialize( + def _index_euvd_get_serialize( self, page, limit, @@ -110556,7 +110556,7 @@ def _index_exodus_intel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exodus-intel', + resource_path='/v3/index/euvd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -110573,7 +110573,7 @@ def _index_exodus_intel_get_serialize( @validate_call - def index_exploit_chains_get( + def index_exodus_intel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110611,10 +110611,10 @@ def index_exploit_chains_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiExploitChainPaginatePagination: - """Return vulnerability data stored in index \"exploit-chains\" + ) -> RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination: + """Return vulnerability data stored in index \"exodus-intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` :param page: set the page number of the response :type page: int @@ -110686,7 +110686,7 @@ def index_exploit_chains_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploit_chains_get_serialize( + _param = self._index_exodus_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110718,7 +110718,7 @@ def index_exploit_chains_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", '404': "str", '500': "str", } @@ -110734,7 +110734,7 @@ def index_exploit_chains_get( @validate_call - def index_exploit_chains_get_with_http_info( + def index_exodus_intel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110772,10 +110772,10 @@ def index_exploit_chains_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitChainPaginatePagination]: - """Return vulnerability data stored in index \"exploit-chains\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination]: + """Return vulnerability data stored in index \"exodus-intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` :param page: set the page number of the response :type page: int @@ -110847,7 +110847,7 @@ def index_exploit_chains_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploit_chains_get_serialize( + _param = self._index_exodus_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -110879,7 +110879,7 @@ def index_exploit_chains_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", '404': "str", '500': "str", } @@ -110895,7 +110895,7 @@ def index_exploit_chains_get_with_http_info( @validate_call - def index_exploit_chains_get_without_preload_content( + def index_exodus_intel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -110934,9 +110934,9 @@ def index_exploit_chains_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exploit-chains\" + """Return vulnerability data stored in index \"exodus-intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exodus-intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Exodus Intelligence Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exodus-intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exodus-intel?cursor=` :param page: set the page number of the response :type page: int @@ -111008,7 +111008,7 @@ def index_exploit_chains_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploit_chains_get_serialize( + _param = self._index_exodus_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -111040,7 +111040,7 @@ def index_exploit_chains_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExodusIntelPaginatePagination", '404': "str", '500': "str", } @@ -111051,7 +111051,7 @@ def index_exploit_chains_get_without_preload_content( return response_data.response - def _index_exploit_chains_get_serialize( + def _index_exodus_intel_get_serialize( self, page, limit, @@ -111219,7 +111219,7 @@ def _index_exploit_chains_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exploit-chains', + resource_path='/v3/index/exodus-intel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -111236,7 +111236,7 @@ def _index_exploit_chains_get_serialize( @validate_call - def index_exploitdb_get( + def index_exploit_chains_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -111274,10 +111274,10 @@ def index_exploitdb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination: - """Return vulnerability data stored in index \"exploitdb\" + ) -> RenderResponseWithMetadataArrayApiExploitChainPaginatePagination: + """Return vulnerability data stored in index \"exploit-chains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` :param page: set the page number of the response :type page: int @@ -111349,7 +111349,7 @@ def index_exploitdb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploitdb_get_serialize( + _param = self._index_exploit_chains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -111381,7 +111381,7 @@ def index_exploitdb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", '404': "str", '500': "str", } @@ -111397,7 +111397,7 @@ def index_exploitdb_get( @validate_call - def index_exploitdb_get_with_http_info( + def index_exploit_chains_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -111435,10 +111435,10 @@ def index_exploitdb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination]: - """Return vulnerability data stored in index \"exploitdb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitChainPaginatePagination]: + """Return vulnerability data stored in index \"exploit-chains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` :param page: set the page number of the response :type page: int @@ -111510,7 +111510,7 @@ def index_exploitdb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploitdb_get_serialize( + _param = self._index_exploit_chains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -111542,7 +111542,7 @@ def index_exploitdb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", '404': "str", '500': "str", } @@ -111558,7 +111558,7 @@ def index_exploitdb_get_with_http_info( @validate_call - def index_exploitdb_get_without_preload_content( + def index_exploit_chains_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -111597,9 +111597,9 @@ def index_exploitdb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exploitdb\" + """Return vulnerability data stored in index \"exploit-chains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploit-chains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Chains ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploit-chains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploit-chains?cursor=` :param page: set the page number of the response :type page: int @@ -111671,7 +111671,7 @@ def index_exploitdb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploitdb_get_serialize( + _param = self._index_exploit_chains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -111703,7 +111703,7 @@ def index_exploitdb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitChainPaginatePagination", '404': "str", '500': "str", } @@ -111714,7 +111714,7 @@ def index_exploitdb_get_without_preload_content( return response_data.response - def _index_exploitdb_get_serialize( + def _index_exploit_chains_get_serialize( self, page, limit, @@ -111882,7 +111882,7 @@ def _index_exploitdb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exploitdb', + resource_path='/v3/index/exploit-chains', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -111899,7 +111899,7 @@ def _index_exploitdb_get_serialize( @validate_call - def index_exploits_changelog_get( + def index_exploitdb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -111937,10 +111937,10 @@ def index_exploits_changelog_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination: - """Return vulnerability data stored in index \"exploits-changelog\" + ) -> RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination: + """Return vulnerability data stored in index \"exploitdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` :param page: set the page number of the response :type page: int @@ -112012,7 +112012,7 @@ def index_exploits_changelog_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_changelog_get_serialize( + _param = self._index_exploitdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112044,7 +112044,7 @@ def index_exploits_changelog_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", '404': "str", '500': "str", } @@ -112060,7 +112060,7 @@ def index_exploits_changelog_get( @validate_call - def index_exploits_changelog_get_with_http_info( + def index_exploitdb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112098,10 +112098,10 @@ def index_exploits_changelog_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination]: - """Return vulnerability data stored in index \"exploits-changelog\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination]: + """Return vulnerability data stored in index \"exploitdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` :param page: set the page number of the response :type page: int @@ -112173,7 +112173,7 @@ def index_exploits_changelog_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_changelog_get_serialize( + _param = self._index_exploitdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112205,7 +112205,7 @@ def index_exploits_changelog_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", '404': "str", '500': "str", } @@ -112221,7 +112221,7 @@ def index_exploits_changelog_get_with_http_info( @validate_call - def index_exploits_changelog_get_without_preload_content( + def index_exploitdb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112260,9 +112260,9 @@ def index_exploits_changelog_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exploits-changelog\" + """Return vulnerability data stored in index \"exploitdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploitdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Exploit Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploitdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploitdb?cursor=` :param page: set the page number of the response :type page: int @@ -112334,7 +112334,7 @@ def index_exploits_changelog_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_changelog_get_serialize( + _param = self._index_exploitdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112366,7 +112366,7 @@ def index_exploits_changelog_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryExploitDBExploitv2PaginatePagination", '404': "str", '500': "str", } @@ -112377,7 +112377,7 @@ def index_exploits_changelog_get_without_preload_content( return response_data.response - def _index_exploits_changelog_get_serialize( + def _index_exploitdb_get_serialize( self, page, limit, @@ -112545,7 +112545,7 @@ def _index_exploits_changelog_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exploits-changelog', + resource_path='/v3/index/exploitdb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -112562,7 +112562,7 @@ def _index_exploits_changelog_get_serialize( @validate_call - def index_exploits_get( + def index_exploits_changelog_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112600,10 +112600,10 @@ def index_exploits_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination: - """Return vulnerability data stored in index \"exploits\" + ) -> RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination: + """Return vulnerability data stored in index \"exploits-changelog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` :param page: set the page number of the response :type page: int @@ -112675,7 +112675,7 @@ def index_exploits_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_get_serialize( + _param = self._index_exploits_changelog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112707,7 +112707,7 @@ def index_exploits_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", '404': "str", '500': "str", } @@ -112723,7 +112723,7 @@ def index_exploits_get( @validate_call - def index_exploits_get_with_http_info( + def index_exploits_changelog_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112761,10 +112761,10 @@ def index_exploits_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination]: - """Return vulnerability data stored in index \"exploits\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination]: + """Return vulnerability data stored in index \"exploits-changelog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` :param page: set the page number of the response :type page: int @@ -112836,7 +112836,7 @@ def index_exploits_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_get_serialize( + _param = self._index_exploits_changelog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -112868,7 +112868,7 @@ def index_exploits_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", '404': "str", '500': "str", } @@ -112884,7 +112884,7 @@ def index_exploits_get_with_http_info( @validate_call - def index_exploits_get_without_preload_content( + def index_exploits_changelog_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -112923,9 +112923,9 @@ def index_exploits_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"exploits\" + """Return vulnerability data stored in index \"exploits-changelog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits-changelog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Changelog for VC Exploits Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits-changelog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits-changelog?cursor=` :param page: set the page number of the response :type page: int @@ -112997,7 +112997,7 @@ def index_exploits_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_exploits_get_serialize( + _param = self._index_exploits_changelog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -113029,7 +113029,7 @@ def index_exploits_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitsChangelogPaginatePagination", '404': "str", '500': "str", } @@ -113040,7 +113040,7 @@ def index_exploits_get_without_preload_content( return response_data.response - def _index_exploits_get_serialize( + def _index_exploits_changelog_get_serialize( self, page, limit, @@ -113208,7 +113208,7 @@ def _index_exploits_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/exploits', + resource_path='/v3/index/exploits-changelog', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -113225,7 +113225,7 @@ def _index_exploits_get_serialize( @validate_call - def index_f5_get( + def index_exploits_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -113263,10 +113263,10 @@ def index_f5_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination: - """Return vulnerability data stored in index \"f5\" + ) -> RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination: + """Return vulnerability data stored in index \"exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` :param page: set the page number of the response :type page: int @@ -113338,7 +113338,7 @@ def index_f5_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f5_get_serialize( + _param = self._index_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -113370,7 +113370,7 @@ def index_f5_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", '404': "str", '500': "str", } @@ -113386,7 +113386,7 @@ def index_f5_get( @validate_call - def index_f5_get_with_http_info( + def index_exploits_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -113424,10 +113424,10 @@ def index_f5_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination]: - """Return vulnerability data stored in index \"f5\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination]: + """Return vulnerability data stored in index \"exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` :param page: set the page number of the response :type page: int @@ -113499,7 +113499,7 @@ def index_f5_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f5_get_serialize( + _param = self._index_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -113531,7 +113531,7 @@ def index_f5_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", '404': "str", '500': "str", } @@ -113547,7 +113547,7 @@ def index_f5_get_with_http_info( @validate_call - def index_f5_get_without_preload_content( + def index_exploits_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -113586,9 +113586,9 @@ def index_f5_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"f5\" + """Return vulnerability data stored in index \"exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Exploit Intelligence Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/exploits?cursor=` :param page: set the page number of the response :type page: int @@ -113660,7 +113660,7 @@ def index_f5_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f5_get_serialize( + _param = self._index_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -113692,7 +113692,7 @@ def index_f5_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiExploitV3ResultPaginatePagination", '404': "str", '500': "str", } @@ -113703,7 +113703,7 @@ def index_f5_get_without_preload_content( return response_data.response - def _index_f5_get_serialize( + def _index_exploits_get_serialize( self, page, limit, @@ -113871,7 +113871,7 @@ def _index_f5_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/f5', + resource_path='/v3/index/exploits', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -113888,7 +113888,7 @@ def _index_f5_get_serialize( @validate_call - def index_f_secure_get( + def index_f5_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -113926,10 +113926,10 @@ def index_f_secure_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination: - """Return vulnerability data stored in index \"f-secure\" + ) -> RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination: + """Return vulnerability data stored in index \"f5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` :param page: set the page number of the response :type page: int @@ -114001,7 +114001,7 @@ def index_f_secure_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f_secure_get_serialize( + _param = self._index_f5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114033,7 +114033,7 @@ def index_f_secure_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", '404': "str", '500': "str", } @@ -114049,7 +114049,7 @@ def index_f_secure_get( @validate_call - def index_f_secure_get_with_http_info( + def index_f5_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114087,10 +114087,10 @@ def index_f_secure_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination]: - """Return vulnerability data stored in index \"f-secure\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination]: + """Return vulnerability data stored in index \"f5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` :param page: set the page number of the response :type page: int @@ -114162,7 +114162,7 @@ def index_f_secure_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f_secure_get_serialize( + _param = self._index_f5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114194,7 +114194,7 @@ def index_f_secure_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", '404': "str", '500': "str", } @@ -114210,7 +114210,7 @@ def index_f_secure_get_with_http_info( @validate_call - def index_f_secure_get_without_preload_content( + def index_f5_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114249,9 +114249,9 @@ def index_f_secure_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"f-secure\" + """Return vulnerability data stored in index \"f5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F5 Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f5?cursor=` :param page: set the page number of the response :type page: int @@ -114323,7 +114323,7 @@ def index_f_secure_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_f_secure_get_serialize( + _param = self._index_f5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114355,7 +114355,7 @@ def index_f_secure_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryF5PaginatePagination", '404': "str", '500': "str", } @@ -114366,7 +114366,7 @@ def index_f_secure_get_without_preload_content( return response_data.response - def _index_f_secure_get_serialize( + def _index_f5_get_serialize( self, page, limit, @@ -114534,7 +114534,7 @@ def _index_f_secure_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/f-secure', + resource_path='/v3/index/f5', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -114551,7 +114551,7 @@ def _index_f_secure_get_serialize( @validate_call - def index_fanuc_get( + def index_f_secure_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114589,10 +114589,10 @@ def index_fanuc_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination: - """Return vulnerability data stored in index \"fanuc\" + ) -> RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination: + """Return vulnerability data stored in index \"f-secure\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` :param page: set the page number of the response :type page: int @@ -114664,7 +114664,7 @@ def index_fanuc_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fanuc_get_serialize( + _param = self._index_f_secure_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114696,7 +114696,7 @@ def index_fanuc_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", '404': "str", '500': "str", } @@ -114712,7 +114712,7 @@ def index_fanuc_get( @validate_call - def index_fanuc_get_with_http_info( + def index_f_secure_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114750,10 +114750,10 @@ def index_fanuc_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination]: - """Return vulnerability data stored in index \"fanuc\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination]: + """Return vulnerability data stored in index \"f-secure\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` :param page: set the page number of the response :type page: int @@ -114825,7 +114825,7 @@ def index_fanuc_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fanuc_get_serialize( + _param = self._index_f_secure_get_serialize( page=page, limit=limit, cursor=cursor, @@ -114857,7 +114857,7 @@ def index_fanuc_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", '404': "str", '500': "str", } @@ -114873,7 +114873,7 @@ def index_fanuc_get_with_http_info( @validate_call - def index_fanuc_get_without_preload_content( + def index_f_secure_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -114912,9 +114912,9 @@ def index_fanuc_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fanuc\" + """Return vulnerability data stored in index \"f-secure\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the f-secure index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** F-Secure Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/f-secure?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/f-secure?cursor=` :param page: set the page number of the response :type page: int @@ -114986,7 +114986,7 @@ def index_fanuc_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fanuc_get_serialize( + _param = self._index_f_secure_get_serialize( page=page, limit=limit, cursor=cursor, @@ -115018,7 +115018,7 @@ def index_fanuc_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFSecurePaginatePagination", '404': "str", '500': "str", } @@ -115029,7 +115029,7 @@ def index_fanuc_get_without_preload_content( return response_data.response - def _index_fanuc_get_serialize( + def _index_f_secure_get_serialize( self, page, limit, @@ -115197,7 +115197,7 @@ def _index_fanuc_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fanuc', + resource_path='/v3/index/f-secure', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -115214,7 +115214,7 @@ def _index_fanuc_get_serialize( @validate_call - def index_fastly_get( + def index_fanuc_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -115252,10 +115252,10 @@ def index_fastly_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination: - """Return vulnerability data stored in index \"fastly\" + ) -> RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination: + """Return vulnerability data stored in index \"fanuc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` :param page: set the page number of the response :type page: int @@ -115327,7 +115327,7 @@ def index_fastly_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fastly_get_serialize( + _param = self._index_fanuc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -115359,7 +115359,7 @@ def index_fastly_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", '404': "str", '500': "str", } @@ -115375,7 +115375,7 @@ def index_fastly_get( @validate_call - def index_fastly_get_with_http_info( + def index_fanuc_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -115413,10 +115413,10 @@ def index_fastly_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination]: - """Return vulnerability data stored in index \"fastly\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination]: + """Return vulnerability data stored in index \"fanuc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` :param page: set the page number of the response :type page: int @@ -115488,7 +115488,7 @@ def index_fastly_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fastly_get_serialize( + _param = self._index_fanuc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -115520,7 +115520,7 @@ def index_fastly_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", '404': "str", '500': "str", } @@ -115536,7 +115536,7 @@ def index_fastly_get_with_http_info( @validate_call - def index_fastly_get_without_preload_content( + def index_fanuc_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -115575,9 +115575,9 @@ def index_fastly_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fastly\" + """Return vulnerability data stored in index \"fanuc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fanuc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fanuc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fanuc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fanuc?cursor=` :param page: set the page number of the response :type page: int @@ -115649,7 +115649,7 @@ def index_fastly_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fastly_get_serialize( + _param = self._index_fanuc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -115681,7 +115681,7 @@ def index_fastly_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFanucPaginatePagination", '404': "str", '500': "str", } @@ -115692,7 +115692,7 @@ def index_fastly_get_without_preload_content( return response_data.response - def _index_fastly_get_serialize( + def _index_fanuc_get_serialize( self, page, limit, @@ -115860,7 +115860,7 @@ def _index_fastly_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fastly', + resource_path='/v3/index/fanuc', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -115877,7 +115877,7 @@ def _index_fastly_get_serialize( @validate_call - def index_fedora_get( + def index_fastly_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -115915,10 +115915,10 @@ def index_fedora_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination: - """Return vulnerability data stored in index \"fedora\" + ) -> RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination: + """Return vulnerability data stored in index \"fastly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` :param page: set the page number of the response :type page: int @@ -115990,7 +115990,7 @@ def index_fedora_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fedora_get_serialize( + _param = self._index_fastly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116022,7 +116022,7 @@ def index_fedora_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", '404': "str", '500': "str", } @@ -116038,7 +116038,7 @@ def index_fedora_get( @validate_call - def index_fedora_get_with_http_info( + def index_fastly_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116076,10 +116076,10 @@ def index_fedora_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination]: - """Return vulnerability data stored in index \"fedora\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination]: + """Return vulnerability data stored in index \"fastly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` :param page: set the page number of the response :type page: int @@ -116151,7 +116151,7 @@ def index_fedora_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fedora_get_serialize( + _param = self._index_fastly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116183,7 +116183,7 @@ def index_fedora_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", '404': "str", '500': "str", } @@ -116199,7 +116199,7 @@ def index_fedora_get_with_http_info( @validate_call - def index_fedora_get_without_preload_content( + def index_fastly_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116238,9 +116238,9 @@ def index_fedora_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fedora\" + """Return vulnerability data stored in index \"fastly\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fastly index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fastly Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fastly?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fastly?cursor=` :param page: set the page number of the response :type page: int @@ -116312,7 +116312,7 @@ def index_fedora_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fedora_get_serialize( + _param = self._index_fastly_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116344,7 +116344,7 @@ def index_fedora_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFastlyPaginatePagination", '404': "str", '500': "str", } @@ -116355,7 +116355,7 @@ def index_fedora_get_without_preload_content( return response_data.response - def _index_fedora_get_serialize( + def _index_fastly_get_serialize( self, page, limit, @@ -116523,7 +116523,7 @@ def _index_fedora_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fedora', + resource_path='/v3/index/fastly', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -116540,7 +116540,7 @@ def _index_fedora_get_serialize( @validate_call - def index_festo_get( + def index_fedora_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116578,10 +116578,10 @@ def index_festo_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination: - """Return vulnerability data stored in index \"festo\" + ) -> RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination: + """Return vulnerability data stored in index \"fedora\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` :param page: set the page number of the response :type page: int @@ -116653,7 +116653,7 @@ def index_festo_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_festo_get_serialize( + _param = self._index_fedora_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116685,7 +116685,7 @@ def index_festo_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", '404': "str", '500': "str", } @@ -116701,7 +116701,7 @@ def index_festo_get( @validate_call - def index_festo_get_with_http_info( + def index_fedora_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116739,10 +116739,10 @@ def index_festo_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination]: - """Return vulnerability data stored in index \"festo\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination]: + """Return vulnerability data stored in index \"fedora\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` :param page: set the page number of the response :type page: int @@ -116814,7 +116814,7 @@ def index_festo_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_festo_get_serialize( + _param = self._index_fedora_get_serialize( page=page, limit=limit, cursor=cursor, @@ -116846,7 +116846,7 @@ def index_festo_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", '404': "str", '500': "str", } @@ -116862,7 +116862,7 @@ def index_festo_get_with_http_info( @validate_call - def index_festo_get_without_preload_content( + def index_fedora_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -116901,9 +116901,9 @@ def index_festo_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"festo\" + """Return vulnerability data stored in index \"fedora\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fedora index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fedora Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fedora?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fedora?cursor=` :param page: set the page number of the response :type page: int @@ -116975,7 +116975,7 @@ def index_festo_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_festo_get_serialize( + _param = self._index_fedora_get_serialize( page=page, limit=limit, cursor=cursor, @@ -117007,7 +117007,7 @@ def index_festo_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryUpdatePaginatePagination", '404': "str", '500': "str", } @@ -117018,7 +117018,7 @@ def index_festo_get_without_preload_content( return response_data.response - def _index_festo_get_serialize( + def _index_fedora_get_serialize( self, page, limit, @@ -117186,7 +117186,7 @@ def _index_festo_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/festo', + resource_path='/v3/index/fedora', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -117203,7 +117203,7 @@ def _index_festo_get_serialize( @validate_call - def index_filecloud_get( + def index_festo_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -117241,10 +117241,10 @@ def index_filecloud_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination: - """Return vulnerability data stored in index \"filecloud\" + ) -> RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination: + """Return vulnerability data stored in index \"festo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` :param page: set the page number of the response :type page: int @@ -117316,7 +117316,7 @@ def index_filecloud_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filecloud_get_serialize( + _param = self._index_festo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -117348,7 +117348,7 @@ def index_filecloud_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", '404': "str", '500': "str", } @@ -117364,7 +117364,7 @@ def index_filecloud_get( @validate_call - def index_filecloud_get_with_http_info( + def index_festo_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -117402,10 +117402,10 @@ def index_filecloud_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination]: - """Return vulnerability data stored in index \"filecloud\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination]: + """Return vulnerability data stored in index \"festo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` :param page: set the page number of the response :type page: int @@ -117477,7 +117477,7 @@ def index_filecloud_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filecloud_get_serialize( + _param = self._index_festo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -117509,7 +117509,7 @@ def index_filecloud_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", '404': "str", '500': "str", } @@ -117525,7 +117525,7 @@ def index_filecloud_get_with_http_info( @validate_call - def index_filecloud_get_without_preload_content( + def index_festo_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -117564,9 +117564,9 @@ def index_filecloud_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"filecloud\" + """Return vulnerability data stored in index \"festo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the festo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Festo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/festo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/festo?cursor=` :param page: set the page number of the response :type page: int @@ -117638,7 +117638,7 @@ def index_filecloud_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filecloud_get_serialize( + _param = self._index_festo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -117670,7 +117670,7 @@ def index_filecloud_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFestoPaginatePagination", '404': "str", '500': "str", } @@ -117681,7 +117681,7 @@ def index_filecloud_get_without_preload_content( return response_data.response - def _index_filecloud_get_serialize( + def _index_festo_get_serialize( self, page, limit, @@ -117849,7 +117849,7 @@ def _index_filecloud_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/filecloud', + resource_path='/v3/index/festo', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -117866,7 +117866,7 @@ def _index_filecloud_get_serialize( @validate_call - def index_filezilla_get( + def index_filecloud_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -117904,10 +117904,10 @@ def index_filezilla_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination: - """Return vulnerability data stored in index \"filezilla\" + ) -> RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination: + """Return vulnerability data stored in index \"filecloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` :param page: set the page number of the response :type page: int @@ -117979,7 +117979,7 @@ def index_filezilla_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filezilla_get_serialize( + _param = self._index_filecloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118011,7 +118011,7 @@ def index_filezilla_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", '404': "str", '500': "str", } @@ -118027,7 +118027,7 @@ def index_filezilla_get( @validate_call - def index_filezilla_get_with_http_info( + def index_filecloud_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118065,10 +118065,10 @@ def index_filezilla_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination]: - """Return vulnerability data stored in index \"filezilla\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination]: + """Return vulnerability data stored in index \"filecloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` :param page: set the page number of the response :type page: int @@ -118140,7 +118140,7 @@ def index_filezilla_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filezilla_get_serialize( + _param = self._index_filecloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118172,7 +118172,7 @@ def index_filezilla_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", '404': "str", '500': "str", } @@ -118188,7 +118188,7 @@ def index_filezilla_get_with_http_info( @validate_call - def index_filezilla_get_without_preload_content( + def index_filecloud_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118227,9 +118227,9 @@ def index_filezilla_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"filezilla\" + """Return vulnerability data stored in index \"filecloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filecloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filecloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filecloud?cursor=` :param page: set the page number of the response :type page: int @@ -118301,7 +118301,7 @@ def index_filezilla_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_filezilla_get_serialize( + _param = self._index_filecloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118333,7 +118333,7 @@ def index_filezilla_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileCloudPaginatePagination", '404': "str", '500': "str", } @@ -118344,7 +118344,7 @@ def index_filezilla_get_without_preload_content( return response_data.response - def _index_filezilla_get_serialize( + def _index_filecloud_get_serialize( self, page, limit, @@ -118512,7 +118512,7 @@ def _index_filezilla_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/filezilla', + resource_path='/v3/index/filecloud', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -118529,7 +118529,7 @@ def _index_filezilla_get_serialize( @validate_call - def index_flatt_security_get( + def index_filezilla_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118567,10 +118567,10 @@ def index_flatt_security_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination: - """Return vulnerability data stored in index \"flatt-security\" + ) -> RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination: + """Return vulnerability data stored in index \"filezilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` :param page: set the page number of the response :type page: int @@ -118642,7 +118642,7 @@ def index_flatt_security_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_flatt_security_get_serialize( + _param = self._index_filezilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118674,7 +118674,7 @@ def index_flatt_security_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", '404': "str", '500': "str", } @@ -118690,7 +118690,7 @@ def index_flatt_security_get( @validate_call - def index_flatt_security_get_with_http_info( + def index_filezilla_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118728,10 +118728,10 @@ def index_flatt_security_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination]: - """Return vulnerability data stored in index \"flatt-security\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination]: + """Return vulnerability data stored in index \"filezilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` :param page: set the page number of the response :type page: int @@ -118803,7 +118803,7 @@ def index_flatt_security_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_flatt_security_get_serialize( + _param = self._index_filezilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118835,7 +118835,7 @@ def index_flatt_security_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", '404': "str", '500': "str", } @@ -118851,7 +118851,7 @@ def index_flatt_security_get_with_http_info( @validate_call - def index_flatt_security_get_without_preload_content( + def index_filezilla_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -118890,9 +118890,9 @@ def index_flatt_security_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"flatt-security\" + """Return vulnerability data stored in index \"filezilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the filezilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FileZilla Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/filezilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/filezilla?cursor=` :param page: set the page number of the response :type page: int @@ -118964,7 +118964,7 @@ def index_flatt_security_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_flatt_security_get_serialize( + _param = self._index_filezilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -118996,7 +118996,7 @@ def index_flatt_security_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFileZillaPaginatePagination", '404': "str", '500': "str", } @@ -119007,7 +119007,7 @@ def index_flatt_security_get_without_preload_content( return response_data.response - def _index_flatt_security_get_serialize( + def _index_filezilla_get_serialize( self, page, limit, @@ -119175,7 +119175,7 @@ def _index_flatt_security_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/flatt-security', + resource_path='/v3/index/filezilla', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -119192,7 +119192,7 @@ def _index_flatt_security_get_serialize( @validate_call - def index_forgerock_get( + def index_flatt_security_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -119230,10 +119230,10 @@ def index_forgerock_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination: - """Return vulnerability data stored in index \"forgerock\" + ) -> RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination: + """Return vulnerability data stored in index \"flatt-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` :param page: set the page number of the response :type page: int @@ -119305,7 +119305,7 @@ def index_forgerock_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_forgerock_get_serialize( + _param = self._index_flatt_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -119337,7 +119337,7 @@ def index_forgerock_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", '404': "str", '500': "str", } @@ -119353,7 +119353,7 @@ def index_forgerock_get( @validate_call - def index_forgerock_get_with_http_info( + def index_flatt_security_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -119391,10 +119391,10 @@ def index_forgerock_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination]: - """Return vulnerability data stored in index \"forgerock\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination]: + """Return vulnerability data stored in index \"flatt-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` :param page: set the page number of the response :type page: int @@ -119466,7 +119466,7 @@ def index_forgerock_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_forgerock_get_serialize( + _param = self._index_flatt_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -119498,7 +119498,7 @@ def index_forgerock_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", '404': "str", '500': "str", } @@ -119514,7 +119514,7 @@ def index_forgerock_get_with_http_info( @validate_call - def index_forgerock_get_without_preload_content( + def index_flatt_security_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -119553,9 +119553,9 @@ def index_forgerock_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"forgerock\" + """Return vulnerability data stored in index \"flatt-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the flatt-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Flatt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/flatt-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/flatt-security?cursor=` :param page: set the page number of the response :type page: int @@ -119627,7 +119627,7 @@ def index_forgerock_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_forgerock_get_serialize( + _param = self._index_flatt_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -119659,7 +119659,7 @@ def index_forgerock_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFlattSecurityPaginatePagination", '404': "str", '500': "str", } @@ -119670,7 +119670,7 @@ def index_forgerock_get_without_preload_content( return response_data.response - def _index_forgerock_get_serialize( + def _index_flatt_security_get_serialize( self, page, limit, @@ -119838,7 +119838,7 @@ def _index_forgerock_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/forgerock', + resource_path='/v3/index/flatt-security', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -119855,7 +119855,7 @@ def _index_forgerock_get_serialize( @validate_call - def index_fortinet_get( + def index_forgerock_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -119893,10 +119893,10 @@ def index_fortinet_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"fortinet\" + ) -> RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination: + """Return vulnerability data stored in index \"forgerock\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` :param page: set the page number of the response :type page: int @@ -119968,7 +119968,7 @@ def index_fortinet_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_get_serialize( + _param = self._index_forgerock_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120000,7 +120000,7 @@ def index_fortinet_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", '404': "str", '500': "str", } @@ -120016,7 +120016,7 @@ def index_fortinet_get( @validate_call - def index_fortinet_get_with_http_info( + def index_forgerock_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120054,10 +120054,10 @@ def index_fortinet_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"fortinet\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination]: + """Return vulnerability data stored in index \"forgerock\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` :param page: set the page number of the response :type page: int @@ -120129,7 +120129,7 @@ def index_fortinet_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_get_serialize( + _param = self._index_forgerock_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120161,7 +120161,7 @@ def index_fortinet_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", '404': "str", '500': "str", } @@ -120177,7 +120177,7 @@ def index_fortinet_get_with_http_info( @validate_call - def index_fortinet_get_without_preload_content( + def index_forgerock_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120216,9 +120216,9 @@ def index_fortinet_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fortinet\" + """Return vulnerability data stored in index \"forgerock\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the forgerock index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ForgeRock Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/forgerock?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/forgerock?cursor=` :param page: set the page number of the response :type page: int @@ -120290,7 +120290,7 @@ def index_fortinet_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_get_serialize( + _param = self._index_forgerock_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120322,7 +120322,7 @@ def index_fortinet_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryForgeRockPaginatePagination", '404': "str", '500': "str", } @@ -120333,7 +120333,7 @@ def index_fortinet_get_without_preload_content( return response_data.response - def _index_fortinet_get_serialize( + def _index_forgerock_get_serialize( self, page, limit, @@ -120501,7 +120501,7 @@ def _index_fortinet_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fortinet', + resource_path='/v3/index/forgerock', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -120518,7 +120518,7 @@ def _index_fortinet_get_serialize( @validate_call - def index_fortinet_ips_get( + def index_fortinet_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120556,10 +120556,10 @@ def index_fortinet_ips_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination: - """Return vulnerability data stored in index \"fortinet-ips\" + ) -> RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"fortinet\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` :param page: set the page number of the response :type page: int @@ -120631,7 +120631,7 @@ def index_fortinet_ips_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_ips_get_serialize( + _param = self._index_fortinet_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120663,7 +120663,7 @@ def index_fortinet_ips_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -120679,7 +120679,7 @@ def index_fortinet_ips_get( @validate_call - def index_fortinet_ips_get_with_http_info( + def index_fortinet_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120717,10 +120717,10 @@ def index_fortinet_ips_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination]: - """Return vulnerability data stored in index \"fortinet-ips\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"fortinet\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` :param page: set the page number of the response :type page: int @@ -120792,7 +120792,7 @@ def index_fortinet_ips_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_ips_get_serialize( + _param = self._index_fortinet_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120824,7 +120824,7 @@ def index_fortinet_ips_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -120840,7 +120840,7 @@ def index_fortinet_ips_get_with_http_info( @validate_call - def index_fortinet_ips_get_without_preload_content( + def index_fortinet_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -120879,9 +120879,9 @@ def index_fortinet_ips_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fortinet-ips\" + """Return vulnerability data stored in index \"fortinet\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FortiGuard Fortinet ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet?cursor=` :param page: set the page number of the response :type page: int @@ -120953,7 +120953,7 @@ def index_fortinet_ips_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fortinet_ips_get_serialize( + _param = self._index_fortinet_get_serialize( page=page, limit=limit, cursor=cursor, @@ -120985,7 +120985,7 @@ def index_fortinet_ips_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -120996,7 +120996,7 @@ def index_fortinet_ips_get_without_preload_content( return response_data.response - def _index_fortinet_ips_get_serialize( + def _index_fortinet_get_serialize( self, page, limit, @@ -121164,7 +121164,7 @@ def _index_fortinet_ips_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fortinet-ips', + resource_path='/v3/index/fortinet', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -121181,7 +121181,7 @@ def _index_fortinet_ips_get_serialize( @validate_call - def index_foxit_get( + def index_fortinet_ips_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -121219,10 +121219,10 @@ def index_foxit_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination: - """Return vulnerability data stored in index \"foxit\" + ) -> RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination: + """Return vulnerability data stored in index \"fortinet-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` :param page: set the page number of the response :type page: int @@ -121294,7 +121294,7 @@ def index_foxit_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_foxit_get_serialize( + _param = self._index_fortinet_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -121326,7 +121326,7 @@ def index_foxit_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", '404': "str", '500': "str", } @@ -121342,7 +121342,7 @@ def index_foxit_get( @validate_call - def index_foxit_get_with_http_info( + def index_fortinet_ips_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -121380,10 +121380,10 @@ def index_foxit_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination]: - """Return vulnerability data stored in index \"foxit\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination]: + """Return vulnerability data stored in index \"fortinet-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` :param page: set the page number of the response :type page: int @@ -121455,7 +121455,7 @@ def index_foxit_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_foxit_get_serialize( + _param = self._index_fortinet_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -121487,7 +121487,7 @@ def index_foxit_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", '404': "str", '500': "str", } @@ -121503,7 +121503,7 @@ def index_foxit_get_with_http_info( @validate_call - def index_foxit_get_without_preload_content( + def index_fortinet_ips_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -121542,9 +121542,9 @@ def index_foxit_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"foxit\" + """Return vulnerability data stored in index \"fortinet-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fortinet-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fortinet Labs Threat Encyclopedia ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fortinet-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fortinet-ips?cursor=` :param page: set the page number of the response :type page: int @@ -121616,7 +121616,7 @@ def index_foxit_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_foxit_get_serialize( + _param = self._index_fortinet_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -121648,7 +121648,7 @@ def index_foxit_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFortinetIPSPaginatePagination", '404': "str", '500': "str", } @@ -121659,7 +121659,7 @@ def index_foxit_get_without_preload_content( return response_data.response - def _index_foxit_get_serialize( + def _index_fortinet_ips_get_serialize( self, page, limit, @@ -121827,7 +121827,7 @@ def _index_foxit_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/foxit', + resource_path='/v3/index/fortinet-ips', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -121844,7 +121844,7 @@ def _index_foxit_get_serialize( @validate_call - def index_freebsd_get( + def index_foxit_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -121882,10 +121882,10 @@ def index_freebsd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"freebsd\" + ) -> RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination: + """Return vulnerability data stored in index \"foxit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` :param page: set the page number of the response :type page: int @@ -121957,7 +121957,7 @@ def index_freebsd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_freebsd_get_serialize( + _param = self._index_foxit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -121989,7 +121989,7 @@ def index_freebsd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", '404': "str", '500': "str", } @@ -122005,7 +122005,7 @@ def index_freebsd_get( @validate_call - def index_freebsd_get_with_http_info( + def index_foxit_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122043,10 +122043,10 @@ def index_freebsd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"freebsd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination]: + """Return vulnerability data stored in index \"foxit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` :param page: set the page number of the response :type page: int @@ -122118,7 +122118,7 @@ def index_freebsd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_freebsd_get_serialize( + _param = self._index_foxit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122150,7 +122150,7 @@ def index_freebsd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", '404': "str", '500': "str", } @@ -122166,7 +122166,7 @@ def index_freebsd_get_with_http_info( @validate_call - def index_freebsd_get_without_preload_content( + def index_foxit_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122205,9 +122205,9 @@ def index_freebsd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"freebsd\" + """Return vulnerability data stored in index \"foxit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the foxit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Foxit Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/foxit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/foxit?cursor=` :param page: set the page number of the response :type page: int @@ -122279,7 +122279,7 @@ def index_freebsd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_freebsd_get_serialize( + _param = self._index_foxit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122311,7 +122311,7 @@ def index_freebsd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFoxitPaginatePagination", '404': "str", '500': "str", } @@ -122322,7 +122322,7 @@ def index_freebsd_get_without_preload_content( return response_data.response - def _index_freebsd_get_serialize( + def _index_foxit_get_serialize( self, page, limit, @@ -122490,7 +122490,7 @@ def _index_freebsd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/freebsd', + resource_path='/v3/index/foxit', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -122507,7 +122507,7 @@ def _index_freebsd_get_serialize( @validate_call - def index_fresenius_get( + def index_freebsd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122545,10 +122545,10 @@ def index_fresenius_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination: - """Return vulnerability data stored in index \"fresenius\" + ) -> RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"freebsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` :param page: set the page number of the response :type page: int @@ -122620,7 +122620,7 @@ def index_fresenius_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fresenius_get_serialize( + _param = self._index_freebsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122652,7 +122652,7 @@ def index_fresenius_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -122668,7 +122668,7 @@ def index_fresenius_get( @validate_call - def index_fresenius_get_with_http_info( + def index_freebsd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122706,10 +122706,10 @@ def index_fresenius_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination]: - """Return vulnerability data stored in index \"fresenius\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"freebsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` :param page: set the page number of the response :type page: int @@ -122781,7 +122781,7 @@ def index_fresenius_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fresenius_get_serialize( + _param = self._index_freebsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122813,7 +122813,7 @@ def index_fresenius_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -122829,7 +122829,7 @@ def index_fresenius_get_with_http_info( @validate_call - def index_fresenius_get_without_preload_content( + def index_freebsd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -122868,9 +122868,9 @@ def index_fresenius_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"fresenius\" + """Return vulnerability data stored in index \"freebsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the freebsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** FreeBSD Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/freebsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/freebsd?cursor=` :param page: set the page number of the response :type page: int @@ -122942,7 +122942,7 @@ def index_fresenius_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_fresenius_get_serialize( + _param = self._index_freebsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -122974,7 +122974,7 @@ def index_fresenius_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -122985,7 +122985,7 @@ def index_fresenius_get_without_preload_content( return response_data.response - def _index_fresenius_get_serialize( + def _index_freebsd_get_serialize( self, page, limit, @@ -123153,7 +123153,7 @@ def _index_fresenius_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/fresenius', + resource_path='/v3/index/freebsd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -123170,7 +123170,7 @@ def _index_fresenius_get_serialize( @validate_call - def index_gallagher_get( + def index_fresenius_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -123208,10 +123208,10 @@ def index_gallagher_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination: - """Return vulnerability data stored in index \"gallagher\" + ) -> RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination: + """Return vulnerability data stored in index \"fresenius\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` :param page: set the page number of the response :type page: int @@ -123283,7 +123283,7 @@ def index_gallagher_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gallagher_get_serialize( + _param = self._index_fresenius_get_serialize( page=page, limit=limit, cursor=cursor, @@ -123315,7 +123315,7 @@ def index_gallagher_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", '404': "str", '500': "str", } @@ -123331,7 +123331,7 @@ def index_gallagher_get( @validate_call - def index_gallagher_get_with_http_info( + def index_fresenius_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -123369,10 +123369,10 @@ def index_gallagher_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination]: - """Return vulnerability data stored in index \"gallagher\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination]: + """Return vulnerability data stored in index \"fresenius\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` :param page: set the page number of the response :type page: int @@ -123444,7 +123444,7 @@ def index_gallagher_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gallagher_get_serialize( + _param = self._index_fresenius_get_serialize( page=page, limit=limit, cursor=cursor, @@ -123476,7 +123476,7 @@ def index_gallagher_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", '404': "str", '500': "str", } @@ -123492,7 +123492,7 @@ def index_gallagher_get_with_http_info( @validate_call - def index_gallagher_get_without_preload_content( + def index_fresenius_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -123531,9 +123531,9 @@ def index_gallagher_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gallagher\" + """Return vulnerability data stored in index \"fresenius\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the fresenius index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Fresenius Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/fresenius?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/fresenius?cursor=` :param page: set the page number of the response :type page: int @@ -123605,7 +123605,7 @@ def index_gallagher_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gallagher_get_serialize( + _param = self._index_fresenius_get_serialize( page=page, limit=limit, cursor=cursor, @@ -123637,7 +123637,7 @@ def index_gallagher_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryFreseniusPaginatePagination", '404': "str", '500': "str", } @@ -123648,7 +123648,7 @@ def index_gallagher_get_without_preload_content( return response_data.response - def _index_gallagher_get_serialize( + def _index_fresenius_get_serialize( self, page, limit, @@ -123816,7 +123816,7 @@ def _index_gallagher_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gallagher', + resource_path='/v3/index/fresenius', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -123833,7 +123833,7 @@ def _index_gallagher_get_serialize( @validate_call - def index_gcp_get( + def index_gallagher_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -123871,10 +123871,10 @@ def index_gcp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination: - """Return vulnerability data stored in index \"gcp\" + ) -> RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination: + """Return vulnerability data stored in index \"gallagher\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` :param page: set the page number of the response :type page: int @@ -123946,7 +123946,7 @@ def index_gcp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gcp_get_serialize( + _param = self._index_gallagher_get_serialize( page=page, limit=limit, cursor=cursor, @@ -123978,7 +123978,7 @@ def index_gcp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", '404': "str", '500': "str", } @@ -123994,7 +123994,7 @@ def index_gcp_get( @validate_call - def index_gcp_get_with_http_info( + def index_gallagher_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124032,10 +124032,10 @@ def index_gcp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination]: - """Return vulnerability data stored in index \"gcp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination]: + """Return vulnerability data stored in index \"gallagher\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` :param page: set the page number of the response :type page: int @@ -124107,7 +124107,7 @@ def index_gcp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gcp_get_serialize( + _param = self._index_gallagher_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124139,7 +124139,7 @@ def index_gcp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", '404': "str", '500': "str", } @@ -124155,7 +124155,7 @@ def index_gcp_get_with_http_info( @validate_call - def index_gcp_get_without_preload_content( + def index_gallagher_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124194,9 +124194,9 @@ def index_gcp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gcp\" + """Return vulnerability data stored in index \"gallagher\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gallagher index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gallagher Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gallagher?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gallagher?cursor=` :param page: set the page number of the response :type page: int @@ -124268,7 +124268,7 @@ def index_gcp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gcp_get_serialize( + _param = self._index_gallagher_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124300,7 +124300,7 @@ def index_gcp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGallagherPaginatePagination", '404': "str", '500': "str", } @@ -124311,7 +124311,7 @@ def index_gcp_get_without_preload_content( return response_data.response - def _index_gcp_get_serialize( + def _index_gallagher_get_serialize( self, page, limit, @@ -124479,7 +124479,7 @@ def _index_gcp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gcp', + resource_path='/v3/index/gallagher', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -124496,7 +124496,7 @@ def _index_gcp_get_serialize( @validate_call - def index_ge_gas_get( + def index_gcp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124534,10 +124534,10 @@ def index_ge_gas_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination: - """Return vulnerability data stored in index \"ge-gas\" + ) -> RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination: + """Return vulnerability data stored in index \"gcp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` :param page: set the page number of the response :type page: int @@ -124609,7 +124609,7 @@ def index_ge_gas_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_gas_get_serialize( + _param = self._index_gcp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124641,7 +124641,7 @@ def index_ge_gas_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", '404': "str", '500': "str", } @@ -124657,7 +124657,7 @@ def index_ge_gas_get( @validate_call - def index_ge_gas_get_with_http_info( + def index_gcp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124695,10 +124695,10 @@ def index_ge_gas_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination]: - """Return vulnerability data stored in index \"ge-gas\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination]: + """Return vulnerability data stored in index \"gcp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` :param page: set the page number of the response :type page: int @@ -124770,7 +124770,7 @@ def index_ge_gas_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_gas_get_serialize( + _param = self._index_gcp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124802,7 +124802,7 @@ def index_ge_gas_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", '404': "str", '500': "str", } @@ -124818,7 +124818,7 @@ def index_ge_gas_get_with_http_info( @validate_call - def index_ge_gas_get_without_preload_content( + def index_gcp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -124857,9 +124857,9 @@ def index_ge_gas_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ge-gas\" + """Return vulnerability data stored in index \"gcp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gcp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GCP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gcp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gcp?cursor=` :param page: set the page number of the response :type page: int @@ -124931,7 +124931,7 @@ def index_ge_gas_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_gas_get_serialize( + _param = self._index_gcp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -124963,7 +124963,7 @@ def index_ge_gas_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGCPPaginatePagination", '404': "str", '500': "str", } @@ -124974,7 +124974,7 @@ def index_ge_gas_get_without_preload_content( return response_data.response - def _index_ge_gas_get_serialize( + def _index_gcp_get_serialize( self, page, limit, @@ -125142,7 +125142,7 @@ def _index_ge_gas_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ge-gas', + resource_path='/v3/index/gcp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -125159,7 +125159,7 @@ def _index_ge_gas_get_serialize( @validate_call - def index_ge_healthcare_get( + def index_ge_gas_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -125197,10 +125197,10 @@ def index_ge_healthcare_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ge-healthcare\" + ) -> RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination: + """Return vulnerability data stored in index \"ge-gas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` :param page: set the page number of the response :type page: int @@ -125272,7 +125272,7 @@ def index_ge_healthcare_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_healthcare_get_serialize( + _param = self._index_ge_gas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -125304,7 +125304,7 @@ def index_ge_healthcare_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", '404': "str", '500': "str", } @@ -125320,7 +125320,7 @@ def index_ge_healthcare_get( @validate_call - def index_ge_healthcare_get_with_http_info( + def index_ge_gas_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -125358,10 +125358,10 @@ def index_ge_healthcare_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ge-healthcare\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination]: + """Return vulnerability data stored in index \"ge-gas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` :param page: set the page number of the response :type page: int @@ -125433,7 +125433,7 @@ def index_ge_healthcare_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_healthcare_get_serialize( + _param = self._index_ge_gas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -125465,7 +125465,7 @@ def index_ge_healthcare_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", '404': "str", '500': "str", } @@ -125481,7 +125481,7 @@ def index_ge_healthcare_get_with_http_info( @validate_call - def index_ge_healthcare_get_without_preload_content( + def index_ge_gas_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -125520,9 +125520,9 @@ def index_ge_healthcare_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ge-healthcare\" + """Return vulnerability data stored in index \"ge-gas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-gas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Gas Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-gas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-gas?cursor=` :param page: set the page number of the response :type page: int @@ -125594,7 +125594,7 @@ def index_ge_healthcare_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ge_healthcare_get_serialize( + _param = self._index_ge_gas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -125626,7 +125626,7 @@ def index_ge_healthcare_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEGasPaginatePagination", '404': "str", '500': "str", } @@ -125637,7 +125637,7 @@ def index_ge_healthcare_get_without_preload_content( return response_data.response - def _index_ge_healthcare_get_serialize( + def _index_ge_gas_get_serialize( self, page, limit, @@ -125805,7 +125805,7 @@ def _index_ge_healthcare_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ge-healthcare', + resource_path='/v3/index/ge-gas', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -125822,7 +125822,7 @@ def _index_ge_healthcare_get_serialize( @validate_call - def index_gem_get( + def index_ge_healthcare_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -125860,10 +125860,10 @@ def index_gem_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"gem\" + ) -> RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ge-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -125935,7 +125935,7 @@ def index_gem_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gem_get_serialize( + _param = self._index_ge_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -125967,7 +125967,7 @@ def index_gem_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -125983,7 +125983,7 @@ def index_gem_get( @validate_call - def index_gem_get_with_http_info( + def index_ge_healthcare_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126021,10 +126021,10 @@ def index_gem_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"gem\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ge-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -126096,7 +126096,7 @@ def index_gem_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gem_get_serialize( + _param = self._index_ge_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126128,7 +126128,7 @@ def index_gem_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -126144,7 +126144,7 @@ def index_gem_get_with_http_info( @validate_call - def index_gem_get_without_preload_content( + def index_ge_healthcare_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126183,9 +126183,9 @@ def index_gem_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gem\" + """Return vulnerability data stored in index \"ge-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ge-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GE Healthcare Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ge-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ge-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -126257,7 +126257,7 @@ def index_gem_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gem_get_serialize( + _param = self._index_ge_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126289,7 +126289,7 @@ def index_gem_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGEHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -126300,7 +126300,7 @@ def index_gem_get_without_preload_content( return response_data.response - def _index_gem_get_serialize( + def _index_ge_healthcare_get_serialize( self, page, limit, @@ -126468,7 +126468,7 @@ def _index_gem_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gem', + resource_path='/v3/index/ge-healthcare', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -126485,7 +126485,7 @@ def _index_gem_get_serialize( @validate_call - def index_gen_get( + def index_gem_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126523,10 +126523,10 @@ def index_gen_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination: - """Return vulnerability data stored in index \"gen\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"gem\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` :param page: set the page number of the response :type page: int @@ -126598,7 +126598,7 @@ def index_gen_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gen_get_serialize( + _param = self._index_gem_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126630,7 +126630,7 @@ def index_gen_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -126646,7 +126646,7 @@ def index_gen_get( @validate_call - def index_gen_get_with_http_info( + def index_gem_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126684,10 +126684,10 @@ def index_gen_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination]: - """Return vulnerability data stored in index \"gen\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"gem\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` :param page: set the page number of the response :type page: int @@ -126759,7 +126759,7 @@ def index_gen_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gen_get_serialize( + _param = self._index_gem_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126791,7 +126791,7 @@ def index_gen_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -126807,7 +126807,7 @@ def index_gen_get_with_http_info( @validate_call - def index_gen_get_without_preload_content( + def index_gem_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -126846,9 +126846,9 @@ def index_gen_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gen\" + """Return vulnerability data stored in index \"gem\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gem index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruby (gem) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gem?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gem?cursor=` :param page: set the page number of the response :type page: int @@ -126920,7 +126920,7 @@ def index_gen_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gen_get_serialize( + _param = self._index_gem_get_serialize( page=page, limit=limit, cursor=cursor, @@ -126952,7 +126952,7 @@ def index_gen_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -126963,7 +126963,7 @@ def index_gen_get_without_preload_content( return response_data.response - def _index_gen_get_serialize( + def _index_gem_get_serialize( self, page, limit, @@ -127131,7 +127131,7 @@ def _index_gen_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gen', + resource_path='/v3/index/gem', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -127148,7 +127148,7 @@ def _index_gen_get_serialize( @validate_call - def index_genetec_get( + def index_gen_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -127186,10 +127186,10 @@ def index_genetec_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination: - """Return vulnerability data stored in index \"genetec\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination: + """Return vulnerability data stored in index \"gen\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` :param page: set the page number of the response :type page: int @@ -127261,7 +127261,7 @@ def index_genetec_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_genetec_get_serialize( + _param = self._index_gen_get_serialize( page=page, limit=limit, cursor=cursor, @@ -127293,7 +127293,7 @@ def index_genetec_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", '404': "str", '500': "str", } @@ -127309,7 +127309,7 @@ def index_genetec_get( @validate_call - def index_genetec_get_with_http_info( + def index_gen_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -127347,10 +127347,10 @@ def index_genetec_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination]: - """Return vulnerability data stored in index \"genetec\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination]: + """Return vulnerability data stored in index \"gen\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` :param page: set the page number of the response :type page: int @@ -127422,7 +127422,7 @@ def index_genetec_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_genetec_get_serialize( + _param = self._index_gen_get_serialize( page=page, limit=limit, cursor=cursor, @@ -127454,7 +127454,7 @@ def index_genetec_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", '404': "str", '500': "str", } @@ -127470,7 +127470,7 @@ def index_genetec_get_with_http_info( @validate_call - def index_genetec_get_without_preload_content( + def index_gen_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -127509,9 +127509,9 @@ def index_genetec_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"genetec\" + """Return vulnerability data stored in index \"gen\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gen index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gen Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gen?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gen?cursor=` :param page: set the page number of the response :type page: int @@ -127583,7 +127583,7 @@ def index_genetec_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_genetec_get_serialize( + _param = self._index_gen_get_serialize( page=page, limit=limit, cursor=cursor, @@ -127615,7 +127615,7 @@ def index_genetec_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenPaginatePagination", '404': "str", '500': "str", } @@ -127626,7 +127626,7 @@ def index_genetec_get_without_preload_content( return response_data.response - def _index_genetec_get_serialize( + def _index_gen_get_serialize( self, page, limit, @@ -127794,7 +127794,7 @@ def _index_genetec_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/genetec', + resource_path='/v3/index/gen', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -127811,7 +127811,7 @@ def _index_genetec_get_serialize( @validate_call - def index_ghsa_get( + def index_genetec_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -127849,10 +127849,10 @@ def index_ghsa_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination: - """Return vulnerability data stored in index \"ghsa\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination: + """Return vulnerability data stored in index \"genetec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` :param page: set the page number of the response :type page: int @@ -127924,7 +127924,7 @@ def index_ghsa_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ghsa_get_serialize( + _param = self._index_genetec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -127956,7 +127956,7 @@ def index_ghsa_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", '404': "str", '500': "str", } @@ -127972,7 +127972,7 @@ def index_ghsa_get( @validate_call - def index_ghsa_get_with_http_info( + def index_genetec_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128010,10 +128010,10 @@ def index_ghsa_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination]: - """Return vulnerability data stored in index \"ghsa\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination]: + """Return vulnerability data stored in index \"genetec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` :param page: set the page number of the response :type page: int @@ -128085,7 +128085,7 @@ def index_ghsa_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ghsa_get_serialize( + _param = self._index_genetec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128117,7 +128117,7 @@ def index_ghsa_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", '404': "str", '500': "str", } @@ -128133,7 +128133,7 @@ def index_ghsa_get_with_http_info( @validate_call - def index_ghsa_get_without_preload_content( + def index_genetec_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128172,9 +128172,9 @@ def index_ghsa_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ghsa\" + """Return vulnerability data stored in index \"genetec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the genetec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Genetec Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/genetec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/genetec?cursor=` :param page: set the page number of the response :type page: int @@ -128246,7 +128246,7 @@ def index_ghsa_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ghsa_get_serialize( + _param = self._index_genetec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128278,7 +128278,7 @@ def index_ghsa_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenetecPaginatePagination", '404': "str", '500': "str", } @@ -128289,7 +128289,7 @@ def index_ghsa_get_without_preload_content( return response_data.response - def _index_ghsa_get_serialize( + def _index_genetec_get_serialize( self, page, limit, @@ -128457,7 +128457,7 @@ def _index_ghsa_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ghsa', + resource_path='/v3/index/genetec', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -128474,7 +128474,7 @@ def _index_ghsa_get_serialize( @validate_call - def index_gigabyte_get( + def index_ghsa_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128512,10 +128512,10 @@ def index_gigabyte_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination: - """Return vulnerability data stored in index \"gigabyte\" + ) -> RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination: + """Return vulnerability data stored in index \"ghsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` :param page: set the page number of the response :type page: int @@ -128587,7 +128587,7 @@ def index_gigabyte_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gigabyte_get_serialize( + _param = self._index_ghsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128619,7 +128619,7 @@ def index_gigabyte_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", '404': "str", '500': "str", } @@ -128635,7 +128635,7 @@ def index_gigabyte_get( @validate_call - def index_gigabyte_get_with_http_info( + def index_ghsa_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128673,10 +128673,10 @@ def index_gigabyte_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination]: - """Return vulnerability data stored in index \"gigabyte\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination]: + """Return vulnerability data stored in index \"ghsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` :param page: set the page number of the response :type page: int @@ -128748,7 +128748,7 @@ def index_gigabyte_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gigabyte_get_serialize( + _param = self._index_ghsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128780,7 +128780,7 @@ def index_gigabyte_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", '404': "str", '500': "str", } @@ -128796,7 +128796,7 @@ def index_gigabyte_get_with_http_info( @validate_call - def index_gigabyte_get_without_preload_content( + def index_ghsa_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -128835,9 +128835,9 @@ def index_gigabyte_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gigabyte\" + """Return vulnerability data stored in index \"ghsa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ghsa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GHSA ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ghsa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ghsa?cursor=` :param page: set the page number of the response :type page: int @@ -128909,7 +128909,7 @@ def index_gigabyte_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gigabyte_get_serialize( + _param = self._index_ghsa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -128941,7 +128941,7 @@ def index_gigabyte_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHSAPaginatePagination", '404': "str", '500': "str", } @@ -128952,7 +128952,7 @@ def index_gigabyte_get_without_preload_content( return response_data.response - def _index_gigabyte_get_serialize( + def _index_ghsa_get_serialize( self, page, limit, @@ -129120,7 +129120,7 @@ def _index_gigabyte_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gigabyte', + resource_path='/v3/index/ghsa', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -129137,7 +129137,7 @@ def _index_gigabyte_get_serialize( @validate_call - def index_gitee_exploits_get( + def index_gigabyte_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129175,10 +129175,10 @@ def index_gitee_exploits_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination: - """Return vulnerability data stored in index \"gitee-exploits\" + ) -> RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination: + """Return vulnerability data stored in index \"gigabyte\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` :param page: set the page number of the response :type page: int @@ -129250,7 +129250,7 @@ def index_gitee_exploits_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitee_exploits_get_serialize( + _param = self._index_gigabyte_get_serialize( page=page, limit=limit, cursor=cursor, @@ -129282,7 +129282,7 @@ def index_gitee_exploits_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", '404': "str", '500': "str", } @@ -129298,7 +129298,7 @@ def index_gitee_exploits_get( @validate_call - def index_gitee_exploits_get_with_http_info( + def index_gigabyte_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129336,10 +129336,10 @@ def index_gitee_exploits_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination]: - """Return vulnerability data stored in index \"gitee-exploits\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination]: + """Return vulnerability data stored in index \"gigabyte\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` :param page: set the page number of the response :type page: int @@ -129411,7 +129411,7 @@ def index_gitee_exploits_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitee_exploits_get_serialize( + _param = self._index_gigabyte_get_serialize( page=page, limit=limit, cursor=cursor, @@ -129443,7 +129443,7 @@ def index_gitee_exploits_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", '404': "str", '500': "str", } @@ -129459,7 +129459,7 @@ def index_gitee_exploits_get_with_http_info( @validate_call - def index_gitee_exploits_get_without_preload_content( + def index_gigabyte_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129498,9 +129498,9 @@ def index_gitee_exploits_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gitee-exploits\" + """Return vulnerability data stored in index \"gigabyte\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gigabyte index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GIGABYTE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gigabyte?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gigabyte?cursor=` :param page: set the page number of the response :type page: int @@ -129572,7 +129572,7 @@ def index_gitee_exploits_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitee_exploits_get_serialize( + _param = self._index_gigabyte_get_serialize( page=page, limit=limit, cursor=cursor, @@ -129604,7 +129604,7 @@ def index_gitee_exploits_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGigabytePaginatePagination", '404': "str", '500': "str", } @@ -129615,7 +129615,7 @@ def index_gitee_exploits_get_without_preload_content( return response_data.response - def _index_gitee_exploits_get_serialize( + def _index_gigabyte_get_serialize( self, page, limit, @@ -129783,7 +129783,7 @@ def _index_gitee_exploits_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gitee-exploits', + resource_path='/v3/index/gigabyte', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -129800,7 +129800,7 @@ def _index_gitee_exploits_get_serialize( @validate_call - def index_github_exploits_get( + def index_gitee_exploits_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129838,10 +129838,10 @@ def index_github_exploits_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination: - """Return vulnerability data stored in index \"github-exploits\" + ) -> RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination: + """Return vulnerability data stored in index \"gitee-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -129913,7 +129913,7 @@ def index_github_exploits_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_exploits_get_serialize( + _param = self._index_gitee_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -129945,7 +129945,7 @@ def index_github_exploits_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", '404': "str", '500': "str", } @@ -129961,7 +129961,7 @@ def index_github_exploits_get( @validate_call - def index_github_exploits_get_with_http_info( + def index_gitee_exploits_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -129999,10 +129999,10 @@ def index_github_exploits_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination]: - """Return vulnerability data stored in index \"github-exploits\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination]: + """Return vulnerability data stored in index \"gitee-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130074,7 +130074,7 @@ def index_github_exploits_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_exploits_get_serialize( + _param = self._index_gitee_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130106,7 +130106,7 @@ def index_github_exploits_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", '404': "str", '500': "str", } @@ -130122,7 +130122,7 @@ def index_github_exploits_get_with_http_info( @validate_call - def index_github_exploits_get_without_preload_content( + def index_gitee_exploits_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -130161,9 +130161,9 @@ def index_github_exploits_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"github-exploits\" + """Return vulnerability data stored in index \"gitee-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitee-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gitee Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitee-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitee-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130235,7 +130235,7 @@ def index_github_exploits_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_exploits_get_serialize( + _param = self._index_gitee_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130267,7 +130267,7 @@ def index_github_exploits_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGiteeExploitPaginatePagination", '404': "str", '500': "str", } @@ -130278,7 +130278,7 @@ def index_github_exploits_get_without_preload_content( return response_data.response - def _index_github_exploits_get_serialize( + def _index_gitee_exploits_get_serialize( self, page, limit, @@ -130446,7 +130446,7 @@ def _index_github_exploits_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/github-exploits', + resource_path='/v3/index/gitee-exploits', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -130463,7 +130463,7 @@ def _index_github_exploits_get_serialize( @validate_call - def index_github_security_advisories_get( + def index_github_exploits_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -130501,10 +130501,10 @@ def index_github_security_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination: - """Return vulnerability data stored in index \"github-security-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination: + """Return vulnerability data stored in index \"github-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130576,7 +130576,7 @@ def index_github_security_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_security_advisories_get_serialize( + _param = self._index_github_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130608,7 +130608,7 @@ def index_github_security_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", '404': "str", '500': "str", } @@ -130624,7 +130624,7 @@ def index_github_security_advisories_get( @validate_call - def index_github_security_advisories_get_with_http_info( + def index_github_exploits_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -130662,10 +130662,10 @@ def index_github_security_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination]: - """Return vulnerability data stored in index \"github-security-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination]: + """Return vulnerability data stored in index \"github-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130737,7 +130737,7 @@ def index_github_security_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_security_advisories_get_serialize( + _param = self._index_github_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130769,7 +130769,7 @@ def index_github_security_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", '404': "str", '500': "str", } @@ -130785,7 +130785,7 @@ def index_github_security_advisories_get_with_http_info( @validate_call - def index_github_security_advisories_get_without_preload_content( + def index_github_exploits_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -130824,9 +130824,9 @@ def index_github_security_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"github-security-advisories\" + """Return vulnerability data stored in index \"github-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitHub Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -130898,7 +130898,7 @@ def index_github_security_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_github_security_advisories_get_serialize( + _param = self._index_github_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -130930,7 +130930,7 @@ def index_github_security_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitHubExploitPaginatePagination", '404': "str", '500': "str", } @@ -130941,7 +130941,7 @@ def index_github_security_advisories_get_without_preload_content( return response_data.response - def _index_github_security_advisories_get_serialize( + def _index_github_exploits_get_serialize( self, page, limit, @@ -131109,7 +131109,7 @@ def _index_github_security_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/github-security-advisories', + resource_path='/v3/index/github-exploits', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -131126,7 +131126,7 @@ def _index_github_security_advisories_get_serialize( @validate_call - def index_gitlab_advisories_community_get( + def index_github_security_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131164,10 +131164,10 @@ def index_gitlab_advisories_community_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"gitlab-advisories-community\" + ) -> RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination: + """Return vulnerability data stored in index \"github-security-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -131239,7 +131239,7 @@ def index_gitlab_advisories_community_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_advisories_community_get_serialize( + _param = self._index_github_security_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -131271,7 +131271,7 @@ def index_gitlab_advisories_community_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", '404': "str", '500': "str", } @@ -131287,7 +131287,7 @@ def index_gitlab_advisories_community_get( @validate_call - def index_gitlab_advisories_community_get_with_http_info( + def index_github_security_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131325,10 +131325,10 @@ def index_gitlab_advisories_community_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"gitlab-advisories-community\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination]: + """Return vulnerability data stored in index \"github-security-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -131400,7 +131400,7 @@ def index_gitlab_advisories_community_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_advisories_community_get_serialize( + _param = self._index_github_security_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -131432,7 +131432,7 @@ def index_gitlab_advisories_community_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", '404': "str", '500': "str", } @@ -131448,7 +131448,7 @@ def index_gitlab_advisories_community_get_with_http_info( @validate_call - def index_gitlab_advisories_community_get_without_preload_content( + def index_github_security_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131487,9 +131487,9 @@ def index_gitlab_advisories_community_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gitlab-advisories-community\" + """Return vulnerability data stored in index \"github-security-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the github-security-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Github Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/github-security-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/github-security-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -131561,7 +131561,7 @@ def index_gitlab_advisories_community_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_advisories_community_get_serialize( + _param = self._index_github_security_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -131593,7 +131593,7 @@ def index_gitlab_advisories_community_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGHAdvisoryJSONLeanPaginatePagination", '404': "str", '500': "str", } @@ -131604,7 +131604,7 @@ def index_gitlab_advisories_community_get_without_preload_content( return response_data.response - def _index_gitlab_advisories_community_get_serialize( + def _index_github_security_advisories_get_serialize( self, page, limit, @@ -131772,7 +131772,7 @@ def _index_gitlab_advisories_community_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gitlab-advisories-community', + resource_path='/v3/index/github-security-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -131789,7 +131789,7 @@ def _index_gitlab_advisories_community_get_serialize( @validate_call - def index_gitlab_exploits_get( + def index_gitlab_advisories_community_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131827,10 +131827,10 @@ def index_gitlab_exploits_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination: - """Return vulnerability data stored in index \"gitlab-exploits\" + ) -> RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"gitlab-advisories-community\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` :param page: set the page number of the response :type page: int @@ -131902,7 +131902,7 @@ def index_gitlab_exploits_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_exploits_get_serialize( + _param = self._index_gitlab_advisories_community_get_serialize( page=page, limit=limit, cursor=cursor, @@ -131934,7 +131934,7 @@ def index_gitlab_exploits_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -131950,7 +131950,7 @@ def index_gitlab_exploits_get( @validate_call - def index_gitlab_exploits_get_with_http_info( + def index_gitlab_advisories_community_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -131988,10 +131988,10 @@ def index_gitlab_exploits_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination]: - """Return vulnerability data stored in index \"gitlab-exploits\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"gitlab-advisories-community\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` :param page: set the page number of the response :type page: int @@ -132063,7 +132063,7 @@ def index_gitlab_exploits_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_exploits_get_serialize( + _param = self._index_gitlab_advisories_community_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132095,7 +132095,7 @@ def index_gitlab_exploits_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -132111,7 +132111,7 @@ def index_gitlab_exploits_get_with_http_info( @validate_call - def index_gitlab_exploits_get_without_preload_content( + def index_gitlab_advisories_community_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -132150,9 +132150,9 @@ def index_gitlab_exploits_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gitlab-exploits\" + """Return vulnerability data stored in index \"gitlab-advisories-community\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-advisories-community index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Advisory Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-advisories-community?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-advisories-community?cursor=` :param page: set the page number of the response :type page: int @@ -132224,7 +132224,7 @@ def index_gitlab_exploits_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gitlab_exploits_get_serialize( + _param = self._index_gitlab_advisories_community_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132256,7 +132256,7 @@ def index_gitlab_exploits_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitlabAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -132267,7 +132267,7 @@ def index_gitlab_exploits_get_without_preload_content( return response_data.response - def _index_gitlab_exploits_get_serialize( + def _index_gitlab_advisories_community_get_serialize( self, page, limit, @@ -132435,7 +132435,7 @@ def _index_gitlab_exploits_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gitlab-exploits', + resource_path='/v3/index/gitlab-advisories-community', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -132452,7 +132452,7 @@ def _index_gitlab_exploits_get_serialize( @validate_call - def index_glibc_get( + def index_gitlab_exploits_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -132490,10 +132490,10 @@ def index_glibc_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination: - """Return vulnerability data stored in index \"glibc\" + ) -> RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination: + """Return vulnerability data stored in index \"gitlab-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -132565,7 +132565,7 @@ def index_glibc_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_glibc_get_serialize( + _param = self._index_gitlab_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132597,7 +132597,7 @@ def index_glibc_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", '404': "str", '500': "str", } @@ -132613,7 +132613,7 @@ def index_glibc_get( @validate_call - def index_glibc_get_with_http_info( + def index_gitlab_exploits_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -132651,10 +132651,10 @@ def index_glibc_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination]: - """Return vulnerability data stored in index \"glibc\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination]: + """Return vulnerability data stored in index \"gitlab-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -132726,7 +132726,7 @@ def index_glibc_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_glibc_get_serialize( + _param = self._index_gitlab_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132758,7 +132758,7 @@ def index_glibc_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", '404': "str", '500': "str", } @@ -132774,7 +132774,7 @@ def index_glibc_get_with_http_info( @validate_call - def index_glibc_get_without_preload_content( + def index_gitlab_exploits_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -132813,9 +132813,9 @@ def index_glibc_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"glibc\" + """Return vulnerability data stored in index \"gitlab-exploits\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gitlab-exploits index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GitLab Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gitlab-exploits?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gitlab-exploits?cursor=` :param page: set the page number of the response :type page: int @@ -132887,7 +132887,7 @@ def index_glibc_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_glibc_get_serialize( + _param = self._index_gitlab_exploits_get_serialize( page=page, limit=limit, cursor=cursor, @@ -132919,7 +132919,7 @@ def index_glibc_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGitLabExploitPaginatePagination", '404': "str", '500': "str", } @@ -132930,7 +132930,7 @@ def index_glibc_get_without_preload_content( return response_data.response - def _index_glibc_get_serialize( + def _index_gitlab_exploits_get_serialize( self, page, limit, @@ -133098,7 +133098,7 @@ def _index_glibc_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/glibc', + resource_path='/v3/index/gitlab-exploits', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -133115,7 +133115,7 @@ def _index_glibc_get_serialize( @validate_call - def index_gmo_cybersecurity_get( + def index_glibc_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133153,10 +133153,10 @@ def index_gmo_cybersecurity_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination: - """Return vulnerability data stored in index \"gmo-cybersecurity\" + ) -> RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination: + """Return vulnerability data stored in index \"glibc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` :param page: set the page number of the response :type page: int @@ -133228,7 +133228,7 @@ def index_gmo_cybersecurity_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gmo_cybersecurity_get_serialize( + _param = self._index_glibc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -133260,7 +133260,7 @@ def index_gmo_cybersecurity_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", '404': "str", '500': "str", } @@ -133276,7 +133276,7 @@ def index_gmo_cybersecurity_get( @validate_call - def index_gmo_cybersecurity_get_with_http_info( + def index_glibc_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133314,10 +133314,10 @@ def index_gmo_cybersecurity_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination]: - """Return vulnerability data stored in index \"gmo-cybersecurity\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination]: + """Return vulnerability data stored in index \"glibc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` :param page: set the page number of the response :type page: int @@ -133389,7 +133389,7 @@ def index_gmo_cybersecurity_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gmo_cybersecurity_get_serialize( + _param = self._index_glibc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -133421,7 +133421,7 @@ def index_gmo_cybersecurity_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", '404': "str", '500': "str", } @@ -133437,7 +133437,7 @@ def index_gmo_cybersecurity_get_with_http_info( @validate_call - def index_gmo_cybersecurity_get_without_preload_content( + def index_glibc_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133476,9 +133476,9 @@ def index_gmo_cybersecurity_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gmo-cybersecurity\" + """Return vulnerability data stored in index \"glibc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the glibc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Glibc Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/glibc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/glibc?cursor=` :param page: set the page number of the response :type page: int @@ -133550,7 +133550,7 @@ def index_gmo_cybersecurity_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gmo_cybersecurity_get_serialize( + _param = self._index_glibc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -133582,7 +133582,7 @@ def index_gmo_cybersecurity_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGlibcPaginatePagination", '404': "str", '500': "str", } @@ -133593,7 +133593,7 @@ def index_gmo_cybersecurity_get_without_preload_content( return response_data.response - def _index_gmo_cybersecurity_get_serialize( + def _index_glibc_get_serialize( self, page, limit, @@ -133761,7 +133761,7 @@ def _index_gmo_cybersecurity_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gmo-cybersecurity', + resource_path='/v3/index/glibc', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -133778,7 +133778,7 @@ def _index_gmo_cybersecurity_get_serialize( @validate_call - def index_gnutls_get( + def index_gmo_cybersecurity_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133816,10 +133816,10 @@ def index_gnutls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination: - """Return vulnerability data stored in index \"gnutls\" + ) -> RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination: + """Return vulnerability data stored in index \"gmo-cybersecurity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` :param page: set the page number of the response :type page: int @@ -133891,7 +133891,7 @@ def index_gnutls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gnutls_get_serialize( + _param = self._index_gmo_cybersecurity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -133923,7 +133923,7 @@ def index_gnutls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", '404': "str", '500': "str", } @@ -133939,7 +133939,7 @@ def index_gnutls_get( @validate_call - def index_gnutls_get_with_http_info( + def index_gmo_cybersecurity_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -133977,10 +133977,10 @@ def index_gnutls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination]: - """Return vulnerability data stored in index \"gnutls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination]: + """Return vulnerability data stored in index \"gmo-cybersecurity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` :param page: set the page number of the response :type page: int @@ -134052,7 +134052,7 @@ def index_gnutls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gnutls_get_serialize( + _param = self._index_gmo_cybersecurity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134084,7 +134084,7 @@ def index_gnutls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", '404': "str", '500': "str", } @@ -134100,7 +134100,7 @@ def index_gnutls_get_with_http_info( @validate_call - def index_gnutls_get_without_preload_content( + def index_gmo_cybersecurity_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -134139,9 +134139,9 @@ def index_gnutls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"gnutls\" + """Return vulnerability data stored in index \"gmo-cybersecurity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gmo-cybersecurity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GMO Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gmo-cybersecurity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gmo-cybersecurity?cursor=` :param page: set the page number of the response :type page: int @@ -134213,7 +134213,7 @@ def index_gnutls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_gnutls_get_serialize( + _param = self._index_gmo_cybersecurity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134245,7 +134245,7 @@ def index_gnutls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGMOCyberSecurityPaginatePagination", '404': "str", '500': "str", } @@ -134256,7 +134256,7 @@ def index_gnutls_get_without_preload_content( return response_data.response - def _index_gnutls_get_serialize( + def _index_gmo_cybersecurity_get_serialize( self, page, limit, @@ -134424,7 +134424,7 @@ def _index_gnutls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/gnutls', + resource_path='/v3/index/gmo-cybersecurity', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -134441,7 +134441,7 @@ def _index_gnutls_get_serialize( @validate_call - def index_go_vulndb_get( + def index_gnutls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -134479,10 +134479,10 @@ def index_go_vulndb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination: - """Return vulnerability data stored in index \"go-vulndb\" + ) -> RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination: + """Return vulnerability data stored in index \"gnutls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` :param page: set the page number of the response :type page: int @@ -134554,7 +134554,7 @@ def index_go_vulndb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_go_vulndb_get_serialize( + _param = self._index_gnutls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134586,7 +134586,7 @@ def index_go_vulndb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", '404': "str", '500': "str", } @@ -134602,7 +134602,7 @@ def index_go_vulndb_get( @validate_call - def index_go_vulndb_get_with_http_info( + def index_gnutls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -134640,10 +134640,10 @@ def index_go_vulndb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination]: - """Return vulnerability data stored in index \"go-vulndb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination]: + """Return vulnerability data stored in index \"gnutls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` :param page: set the page number of the response :type page: int @@ -134715,7 +134715,7 @@ def index_go_vulndb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_go_vulndb_get_serialize( + _param = self._index_gnutls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134747,7 +134747,7 @@ def index_go_vulndb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", '404': "str", '500': "str", } @@ -134763,7 +134763,7 @@ def index_go_vulndb_get_with_http_info( @validate_call - def index_go_vulndb_get_without_preload_content( + def index_gnutls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -134802,9 +134802,9 @@ def index_go_vulndb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"go-vulndb\" + """Return vulnerability data stored in index \"gnutls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the gnutls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GnuTLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/gnutls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/gnutls?cursor=` :param page: set the page number of the response :type page: int @@ -134876,7 +134876,7 @@ def index_go_vulndb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_go_vulndb_get_serialize( + _param = self._index_gnutls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -134908,7 +134908,7 @@ def index_go_vulndb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGnuTLSPaginatePagination", '404': "str", '500': "str", } @@ -134919,7 +134919,7 @@ def index_go_vulndb_get_without_preload_content( return response_data.response - def _index_go_vulndb_get_serialize( + def _index_gnutls_get_serialize( self, page, limit, @@ -135087,7 +135087,7 @@ def _index_go_vulndb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/go-vulndb', + resource_path='/v3/index/gnutls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -135104,7 +135104,7 @@ def _index_go_vulndb_get_serialize( @validate_call - def index_golang_get( + def index_go_vulndb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135142,10 +135142,10 @@ def index_golang_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"golang\" + ) -> RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination: + """Return vulnerability data stored in index \"go-vulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` :param page: set the page number of the response :type page: int @@ -135217,7 +135217,7 @@ def index_golang_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_golang_get_serialize( + _param = self._index_go_vulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -135249,7 +135249,7 @@ def index_golang_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", '404': "str", '500': "str", } @@ -135265,7 +135265,7 @@ def index_golang_get( @validate_call - def index_golang_get_with_http_info( + def index_go_vulndb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135303,10 +135303,10 @@ def index_golang_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"golang\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination]: + """Return vulnerability data stored in index \"go-vulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` :param page: set the page number of the response :type page: int @@ -135378,7 +135378,7 @@ def index_golang_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_golang_get_serialize( + _param = self._index_go_vulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -135410,7 +135410,7 @@ def index_golang_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", '404': "str", '500': "str", } @@ -135426,7 +135426,7 @@ def index_golang_get_with_http_info( @validate_call - def index_golang_get_without_preload_content( + def index_go_vulndb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135465,9 +135465,9 @@ def index_golang_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"golang\" + """Return vulnerability data stored in index \"go-vulndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the go-vulndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Go Vulnerability Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/go-vulndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/go-vulndb?cursor=` :param page: set the page number of the response :type page: int @@ -135539,7 +135539,7 @@ def index_golang_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_golang_get_serialize( + _param = self._index_go_vulndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -135571,7 +135571,7 @@ def index_golang_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGoVulnJSONPaginatePagination", '404': "str", '500': "str", } @@ -135582,7 +135582,7 @@ def index_golang_get_without_preload_content( return response_data.response - def _index_golang_get_serialize( + def _index_go_vulndb_get_serialize( self, page, limit, @@ -135750,7 +135750,7 @@ def _index_golang_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/golang', + resource_path='/v3/index/go-vulndb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -135767,7 +135767,7 @@ def _index_golang_get_serialize( @validate_call - def index_google0day_itw_get( + def index_golang_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135805,10 +135805,10 @@ def index_google0day_itw_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination: - """Return vulnerability data stored in index \"google-0day-itw\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"golang\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` :param page: set the page number of the response :type page: int @@ -135880,7 +135880,7 @@ def index_google0day_itw_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google0day_itw_get_serialize( + _param = self._index_golang_get_serialize( page=page, limit=limit, cursor=cursor, @@ -135912,7 +135912,7 @@ def index_google0day_itw_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -135928,7 +135928,7 @@ def index_google0day_itw_get( @validate_call - def index_google0day_itw_get_with_http_info( + def index_golang_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -135966,10 +135966,10 @@ def index_google0day_itw_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination]: - """Return vulnerability data stored in index \"google-0day-itw\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"golang\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` :param page: set the page number of the response :type page: int @@ -136041,7 +136041,7 @@ def index_google0day_itw_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google0day_itw_get_serialize( + _param = self._index_golang_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136073,7 +136073,7 @@ def index_google0day_itw_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -136089,7 +136089,7 @@ def index_google0day_itw_get_with_http_info( @validate_call - def index_google0day_itw_get_without_preload_content( + def index_golang_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -136128,9 +136128,9 @@ def index_google0day_itw_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"google-0day-itw\" + """Return vulnerability data stored in index \"golang\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the golang index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Golang packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/golang?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/golang?cursor=` :param page: set the page number of the response :type page: int @@ -136202,7 +136202,7 @@ def index_google0day_itw_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google0day_itw_get_serialize( + _param = self._index_golang_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136234,7 +136234,7 @@ def index_google0day_itw_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -136245,7 +136245,7 @@ def index_google0day_itw_get_without_preload_content( return response_data.response - def _index_google0day_itw_get_serialize( + def _index_golang_get_serialize( self, page, limit, @@ -136413,7 +136413,7 @@ def _index_google0day_itw_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/google-0day-itw', + resource_path='/v3/index/golang', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -136430,7 +136430,7 @@ def _index_google0day_itw_get_serialize( @validate_call - def index_google_container_optimized_os_get( + def index_google0day_itw_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -136468,10 +136468,10 @@ def index_google_container_optimized_os_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination: - """Return vulnerability data stored in index \"google-container-optimized-os\" + ) -> RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination: + """Return vulnerability data stored in index \"google-0day-itw\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` :param page: set the page number of the response :type page: int @@ -136543,7 +136543,7 @@ def index_google_container_optimized_os_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google_container_optimized_os_get_serialize( + _param = self._index_google0day_itw_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136575,7 +136575,7 @@ def index_google_container_optimized_os_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", '404': "str", '500': "str", } @@ -136591,7 +136591,7 @@ def index_google_container_optimized_os_get( @validate_call - def index_google_container_optimized_os_get_with_http_info( + def index_google0day_itw_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -136629,10 +136629,10 @@ def index_google_container_optimized_os_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination]: - """Return vulnerability data stored in index \"google-container-optimized-os\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination]: + """Return vulnerability data stored in index \"google-0day-itw\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` :param page: set the page number of the response :type page: int @@ -136704,7 +136704,7 @@ def index_google_container_optimized_os_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google_container_optimized_os_get_serialize( + _param = self._index_google0day_itw_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136736,7 +136736,7 @@ def index_google_container_optimized_os_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", '404': "str", '500': "str", } @@ -136752,7 +136752,7 @@ def index_google_container_optimized_os_get_with_http_info( @validate_call - def index_google_container_optimized_os_get_without_preload_content( + def index_google0day_itw_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -136791,9 +136791,9 @@ def index_google_container_optimized_os_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"google-container-optimized-os\" + """Return vulnerability data stored in index \"google-0day-itw\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-0day-itw index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Project Zero In the Wild Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-0day-itw?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-0day-itw?cursor=` :param page: set the page number of the response :type page: int @@ -136865,7 +136865,7 @@ def index_google_container_optimized_os_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_google_container_optimized_os_get_serialize( + _param = self._index_google0day_itw_get_serialize( page=page, limit=limit, cursor=cursor, @@ -136897,7 +136897,7 @@ def index_google_container_optimized_os_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryITWExploitPaginatePagination", '404': "str", '500': "str", } @@ -136908,7 +136908,7 @@ def index_google_container_optimized_os_get_without_preload_content( return response_data.response - def _index_google_container_optimized_os_get_serialize( + def _index_google0day_itw_get_serialize( self, page, limit, @@ -137076,7 +137076,7 @@ def _index_google_container_optimized_os_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/google-container-optimized-os', + resource_path='/v3/index/google-0day-itw', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -137093,7 +137093,7 @@ def _index_google_container_optimized_os_get_serialize( @validate_call - def index_grafana_get( + def index_google_container_optimized_os_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137131,10 +137131,10 @@ def index_grafana_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination: - """Return vulnerability data stored in index \"grafana\" + ) -> RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination: + """Return vulnerability data stored in index \"google-container-optimized-os\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` :param page: set the page number of the response :type page: int @@ -137206,7 +137206,7 @@ def index_grafana_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_grafana_get_serialize( + _param = self._index_google_container_optimized_os_get_serialize( page=page, limit=limit, cursor=cursor, @@ -137238,7 +137238,7 @@ def index_grafana_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", '404': "str", '500': "str", } @@ -137254,7 +137254,7 @@ def index_grafana_get( @validate_call - def index_grafana_get_with_http_info( + def index_google_container_optimized_os_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137292,10 +137292,10 @@ def index_grafana_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination]: - """Return vulnerability data stored in index \"grafana\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination]: + """Return vulnerability data stored in index \"google-container-optimized-os\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` :param page: set the page number of the response :type page: int @@ -137367,7 +137367,7 @@ def index_grafana_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_grafana_get_serialize( + _param = self._index_google_container_optimized_os_get_serialize( page=page, limit=limit, cursor=cursor, @@ -137399,7 +137399,7 @@ def index_grafana_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", '404': "str", '500': "str", } @@ -137415,7 +137415,7 @@ def index_grafana_get_with_http_info( @validate_call - def index_grafana_get_without_preload_content( + def index_google_container_optimized_os_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137454,9 +137454,9 @@ def index_grafana_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"grafana\" + """Return vulnerability data stored in index \"google-container-optimized-os\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the google-container-optimized-os index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Container OS Release Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/google-container-optimized-os?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/google-container-optimized-os?cursor=` :param page: set the page number of the response :type page: int @@ -137528,7 +137528,7 @@ def index_grafana_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_grafana_get_serialize( + _param = self._index_google_container_optimized_os_get_serialize( page=page, limit=limit, cursor=cursor, @@ -137560,7 +137560,7 @@ def index_grafana_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryContainerOSPaginatePagination", '404': "str", '500': "str", } @@ -137571,7 +137571,7 @@ def index_grafana_get_without_preload_content( return response_data.response - def _index_grafana_get_serialize( + def _index_google_container_optimized_os_get_serialize( self, page, limit, @@ -137739,7 +137739,7 @@ def _index_grafana_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/grafana', + resource_path='/v3/index/google-container-optimized-os', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -137756,7 +137756,7 @@ def _index_grafana_get_serialize( @validate_call - def index_greynoise_metadata_get( + def index_grafana_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137794,10 +137794,10 @@ def index_greynoise_metadata_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination: - """Return vulnerability data stored in index \"greynoise-metadata\" + ) -> RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination: + """Return vulnerability data stored in index \"grafana\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` :param page: set the page number of the response :type page: int @@ -137869,7 +137869,7 @@ def index_greynoise_metadata_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_greynoise_metadata_get_serialize( + _param = self._index_grafana_get_serialize( page=page, limit=limit, cursor=cursor, @@ -137901,7 +137901,7 @@ def index_greynoise_metadata_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", '404': "str", '500': "str", } @@ -137917,7 +137917,7 @@ def index_greynoise_metadata_get( @validate_call - def index_greynoise_metadata_get_with_http_info( + def index_grafana_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -137955,10 +137955,10 @@ def index_greynoise_metadata_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination]: - """Return vulnerability data stored in index \"greynoise-metadata\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination]: + """Return vulnerability data stored in index \"grafana\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` :param page: set the page number of the response :type page: int @@ -138030,7 +138030,7 @@ def index_greynoise_metadata_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_greynoise_metadata_get_serialize( + _param = self._index_grafana_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138062,7 +138062,7 @@ def index_greynoise_metadata_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", '404': "str", '500': "str", } @@ -138078,7 +138078,7 @@ def index_greynoise_metadata_get_with_http_info( @validate_call - def index_greynoise_metadata_get_without_preload_content( + def index_grafana_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -138117,9 +138117,9 @@ def index_greynoise_metadata_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"greynoise-metadata\" + """Return vulnerability data stored in index \"grafana\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the grafana index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Grafana Labs Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/grafana?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/grafana?cursor=` :param page: set the page number of the response :type page: int @@ -138191,7 +138191,7 @@ def index_greynoise_metadata_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_greynoise_metadata_get_serialize( + _param = self._index_grafana_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138223,7 +138223,7 @@ def index_greynoise_metadata_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGrafanaPaginatePagination", '404': "str", '500': "str", } @@ -138234,7 +138234,7 @@ def index_greynoise_metadata_get_without_preload_content( return response_data.response - def _index_greynoise_metadata_get_serialize( + def _index_grafana_get_serialize( self, page, limit, @@ -138402,7 +138402,7 @@ def _index_greynoise_metadata_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/greynoise-metadata', + resource_path='/v3/index/grafana', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -138419,7 +138419,7 @@ def _index_greynoise_metadata_get_serialize( @validate_call - def index_hackage_get( + def index_greynoise_metadata_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -138457,10 +138457,10 @@ def index_hackage_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"hackage\" + ) -> RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination: + """Return vulnerability data stored in index \"greynoise-metadata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` :param page: set the page number of the response :type page: int @@ -138532,7 +138532,7 @@ def index_hackage_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hackage_get_serialize( + _param = self._index_greynoise_metadata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138564,7 +138564,7 @@ def index_hackage_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", '404': "str", '500': "str", } @@ -138580,7 +138580,7 @@ def index_hackage_get( @validate_call - def index_hackage_get_with_http_info( + def index_greynoise_metadata_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -138618,10 +138618,10 @@ def index_hackage_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"hackage\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination]: + """Return vulnerability data stored in index \"greynoise-metadata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` :param page: set the page number of the response :type page: int @@ -138693,7 +138693,7 @@ def index_hackage_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hackage_get_serialize( + _param = self._index_greynoise_metadata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138725,7 +138725,7 @@ def index_hackage_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", '404': "str", '500': "str", } @@ -138741,7 +138741,7 @@ def index_hackage_get_with_http_info( @validate_call - def index_hackage_get_without_preload_content( + def index_greynoise_metadata_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -138780,9 +138780,9 @@ def index_hackage_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hackage\" + """Return vulnerability data stored in index \"greynoise-metadata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the greynoise-metadata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** GreyNoise Metadata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/greynoise-metadata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/greynoise-metadata?cursor=` :param page: set the page number of the response :type page: int @@ -138854,7 +138854,7 @@ def index_hackage_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hackage_get_serialize( + _param = self._index_greynoise_metadata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -138886,7 +138886,7 @@ def index_hackage_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGreyNoiseDetectionPaginatePagination", '404': "str", '500': "str", } @@ -138897,7 +138897,7 @@ def index_hackage_get_without_preload_content( return response_data.response - def _index_hackage_get_serialize( + def _index_greynoise_metadata_get_serialize( self, page, limit, @@ -139065,7 +139065,7 @@ def _index_hackage_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hackage', + resource_path='/v3/index/greynoise-metadata', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -139082,7 +139082,7 @@ def _index_hackage_get_serialize( @validate_call - def index_hacktivity_get( + def index_hackage_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139120,10 +139120,10 @@ def index_hacktivity_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination: - """Return vulnerability data stored in index \"hacktivity\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"hackage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` :param page: set the page number of the response :type page: int @@ -139195,7 +139195,7 @@ def index_hacktivity_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hacktivity_get_serialize( + _param = self._index_hackage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -139227,7 +139227,7 @@ def index_hacktivity_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -139243,7 +139243,7 @@ def index_hacktivity_get( @validate_call - def index_hacktivity_get_with_http_info( + def index_hackage_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139281,10 +139281,10 @@ def index_hacktivity_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination]: - """Return vulnerability data stored in index \"hacktivity\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"hackage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` :param page: set the page number of the response :type page: int @@ -139356,7 +139356,7 @@ def index_hacktivity_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hacktivity_get_serialize( + _param = self._index_hackage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -139388,7 +139388,7 @@ def index_hacktivity_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -139404,7 +139404,7 @@ def index_hacktivity_get_with_http_info( @validate_call - def index_hacktivity_get_without_preload_content( + def index_hackage_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139443,9 +139443,9 @@ def index_hacktivity_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hacktivity\" + """Return vulnerability data stored in index \"hackage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hackage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackage (Haskell) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hackage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hackage?cursor=` :param page: set the page number of the response :type page: int @@ -139517,7 +139517,7 @@ def index_hacktivity_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hacktivity_get_serialize( + _param = self._index_hackage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -139549,7 +139549,7 @@ def index_hacktivity_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -139560,7 +139560,7 @@ def index_hacktivity_get_without_preload_content( return response_data.response - def _index_hacktivity_get_serialize( + def _index_hackage_get_serialize( self, page, limit, @@ -139728,7 +139728,7 @@ def _index_hacktivity_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hacktivity', + resource_path='/v3/index/hackage', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -139745,7 +139745,7 @@ def _index_hacktivity_get_serialize( @validate_call - def index_harmonyos_get( + def index_hacktivity_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139783,10 +139783,10 @@ def index_harmonyos_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination: - """Return vulnerability data stored in index \"harmonyos\" + ) -> RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination: + """Return vulnerability data stored in index \"hacktivity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` :param page: set the page number of the response :type page: int @@ -139858,7 +139858,7 @@ def index_harmonyos_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_harmonyos_get_serialize( + _param = self._index_hacktivity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -139890,7 +139890,7 @@ def index_harmonyos_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", '404': "str", '500': "str", } @@ -139906,7 +139906,7 @@ def index_harmonyos_get( @validate_call - def index_harmonyos_get_with_http_info( + def index_hacktivity_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -139944,10 +139944,10 @@ def index_harmonyos_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination]: - """Return vulnerability data stored in index \"harmonyos\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination]: + """Return vulnerability data stored in index \"hacktivity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` :param page: set the page number of the response :type page: int @@ -140019,7 +140019,7 @@ def index_harmonyos_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_harmonyos_get_serialize( + _param = self._index_hacktivity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140051,7 +140051,7 @@ def index_harmonyos_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", '404': "str", '500': "str", } @@ -140067,7 +140067,7 @@ def index_harmonyos_get_with_http_info( @validate_call - def index_harmonyos_get_without_preload_content( + def index_hacktivity_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -140106,9 +140106,9 @@ def index_harmonyos_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"harmonyos\" + """Return vulnerability data stored in index \"hacktivity\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hacktivity index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hackerone Hacktivity ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hacktivity?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hacktivity?cursor=` :param page: set the page number of the response :type page: int @@ -140180,7 +140180,7 @@ def index_harmonyos_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_harmonyos_get_serialize( + _param = self._index_hacktivity_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140212,7 +140212,7 @@ def index_harmonyos_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHacktivityPaginatePagination", '404': "str", '500': "str", } @@ -140223,7 +140223,7 @@ def index_harmonyos_get_without_preload_content( return response_data.response - def _index_harmonyos_get_serialize( + def _index_hacktivity_get_serialize( self, page, limit, @@ -140391,7 +140391,7 @@ def _index_harmonyos_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/harmonyos', + resource_path='/v3/index/hacktivity', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -140408,7 +140408,7 @@ def _index_harmonyos_get_serialize( @validate_call - def index_hashicorp_get( + def index_harmonyos_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -140446,10 +140446,10 @@ def index_hashicorp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination: - """Return vulnerability data stored in index \"hashicorp\" + ) -> RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination: + """Return vulnerability data stored in index \"harmonyos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` :param page: set the page number of the response :type page: int @@ -140521,7 +140521,7 @@ def index_hashicorp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hashicorp_get_serialize( + _param = self._index_harmonyos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140553,7 +140553,7 @@ def index_hashicorp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", '404': "str", '500': "str", } @@ -140569,7 +140569,7 @@ def index_hashicorp_get( @validate_call - def index_hashicorp_get_with_http_info( + def index_harmonyos_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -140607,10 +140607,10 @@ def index_hashicorp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination]: - """Return vulnerability data stored in index \"hashicorp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination]: + """Return vulnerability data stored in index \"harmonyos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` :param page: set the page number of the response :type page: int @@ -140682,7 +140682,7 @@ def index_hashicorp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hashicorp_get_serialize( + _param = self._index_harmonyos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140714,7 +140714,7 @@ def index_hashicorp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", '404': "str", '500': "str", } @@ -140730,7 +140730,7 @@ def index_hashicorp_get_with_http_info( @validate_call - def index_hashicorp_get_without_preload_content( + def index_harmonyos_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -140769,9 +140769,9 @@ def index_hashicorp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hashicorp\" + """Return vulnerability data stored in index \"harmonyos\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the harmonyos index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HarmonyOS Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/harmonyos?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/harmonyos?cursor=` :param page: set the page number of the response :type page: int @@ -140843,7 +140843,7 @@ def index_hashicorp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hashicorp_get_serialize( + _param = self._index_harmonyos_get_serialize( page=page, limit=limit, cursor=cursor, @@ -140875,7 +140875,7 @@ def index_hashicorp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHarmonyOSPaginatePagination", '404': "str", '500': "str", } @@ -140886,7 +140886,7 @@ def index_hashicorp_get_without_preload_content( return response_data.response - def _index_hashicorp_get_serialize( + def _index_harmonyos_get_serialize( self, page, limit, @@ -141054,7 +141054,7 @@ def _index_hashicorp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hashicorp', + resource_path='/v3/index/harmonyos', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -141071,7 +141071,7 @@ def _index_hashicorp_get_serialize( @validate_call - def index_haskell_sadb_get( + def index_hashicorp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141109,10 +141109,10 @@ def index_haskell_sadb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"haskell-sadb\" + ) -> RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination: + """Return vulnerability data stored in index \"hashicorp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` :param page: set the page number of the response :type page: int @@ -141184,7 +141184,7 @@ def index_haskell_sadb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_haskell_sadb_get_serialize( + _param = self._index_hashicorp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -141216,7 +141216,7 @@ def index_haskell_sadb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", '404': "str", '500': "str", } @@ -141232,7 +141232,7 @@ def index_haskell_sadb_get( @validate_call - def index_haskell_sadb_get_with_http_info( + def index_hashicorp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141270,10 +141270,10 @@ def index_haskell_sadb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"haskell-sadb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination]: + """Return vulnerability data stored in index \"hashicorp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` :param page: set the page number of the response :type page: int @@ -141345,7 +141345,7 @@ def index_haskell_sadb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_haskell_sadb_get_serialize( + _param = self._index_hashicorp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -141377,7 +141377,7 @@ def index_haskell_sadb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", '404': "str", '500': "str", } @@ -141393,7 +141393,7 @@ def index_haskell_sadb_get_with_http_info( @validate_call - def index_haskell_sadb_get_without_preload_content( + def index_hashicorp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141432,9 +141432,9 @@ def index_haskell_sadb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"haskell-sadb\" + """Return vulnerability data stored in index \"hashicorp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hashicorp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HashiCorp Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hashicorp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hashicorp?cursor=` :param page: set the page number of the response :type page: int @@ -141506,7 +141506,7 @@ def index_haskell_sadb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_haskell_sadb_get_serialize( + _param = self._index_hashicorp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -141538,7 +141538,7 @@ def index_haskell_sadb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHashiCorpPaginatePagination", '404': "str", '500': "str", } @@ -141549,7 +141549,7 @@ def index_haskell_sadb_get_without_preload_content( return response_data.response - def _index_haskell_sadb_get_serialize( + def _index_hashicorp_get_serialize( self, page, limit, @@ -141717,7 +141717,7 @@ def _index_haskell_sadb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/haskell-sadb', + resource_path='/v3/index/hashicorp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -141734,7 +141734,7 @@ def _index_haskell_sadb_get_serialize( @validate_call - def index_hcl_get( + def index_haskell_sadb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141772,10 +141772,10 @@ def index_hcl_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination: - """Return vulnerability data stored in index \"hcl\" + ) -> RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"haskell-sadb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` :param page: set the page number of the response :type page: int @@ -141847,7 +141847,7 @@ def index_hcl_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hcl_get_serialize( + _param = self._index_haskell_sadb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -141879,7 +141879,7 @@ def index_hcl_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -141895,7 +141895,7 @@ def index_hcl_get( @validate_call - def index_hcl_get_with_http_info( + def index_haskell_sadb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -141933,10 +141933,10 @@ def index_hcl_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination]: - """Return vulnerability data stored in index \"hcl\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"haskell-sadb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` :param page: set the page number of the response :type page: int @@ -142008,7 +142008,7 @@ def index_hcl_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hcl_get_serialize( + _param = self._index_haskell_sadb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142040,7 +142040,7 @@ def index_hcl_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -142056,7 +142056,7 @@ def index_hcl_get_with_http_info( @validate_call - def index_hcl_get_without_preload_content( + def index_haskell_sadb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -142095,9 +142095,9 @@ def index_hcl_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hcl\" + """Return vulnerability data stored in index \"haskell-sadb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the haskell-sadb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Haskell Security Advisory DB ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/haskell-sadb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/haskell-sadb?cursor=` :param page: set the page number of the response :type page: int @@ -142169,7 +142169,7 @@ def index_hcl_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hcl_get_serialize( + _param = self._index_haskell_sadb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142201,7 +142201,7 @@ def index_hcl_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHaskellSADBAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -142212,7 +142212,7 @@ def index_hcl_get_without_preload_content( return response_data.response - def _index_hcl_get_serialize( + def _index_haskell_sadb_get_serialize( self, page, limit, @@ -142380,7 +142380,7 @@ def _index_hcl_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hcl', + resource_path='/v3/index/haskell-sadb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -142397,7 +142397,7 @@ def _index_hcl_get_serialize( @validate_call - def index_hex_get( + def index_hcl_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -142435,10 +142435,10 @@ def index_hex_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"hex\" + ) -> RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination: + """Return vulnerability data stored in index \"hcl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` :param page: set the page number of the response :type page: int @@ -142510,7 +142510,7 @@ def index_hex_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hex_get_serialize( + _param = self._index_hcl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142542,7 +142542,7 @@ def index_hex_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", '404': "str", '500': "str", } @@ -142558,7 +142558,7 @@ def index_hex_get( @validate_call - def index_hex_get_with_http_info( + def index_hcl_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -142596,10 +142596,10 @@ def index_hex_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"hex\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination]: + """Return vulnerability data stored in index \"hcl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` :param page: set the page number of the response :type page: int @@ -142671,7 +142671,7 @@ def index_hex_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hex_get_serialize( + _param = self._index_hcl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142703,7 +142703,7 @@ def index_hex_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", '404': "str", '500': "str", } @@ -142719,7 +142719,7 @@ def index_hex_get_with_http_info( @validate_call - def index_hex_get_without_preload_content( + def index_hcl_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -142758,9 +142758,9 @@ def index_hex_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hex\" + """Return vulnerability data stored in index \"hcl\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hcl index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HCLSoftware Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hcl?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hcl?cursor=` :param page: set the page number of the response :type page: int @@ -142832,7 +142832,7 @@ def index_hex_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hex_get_serialize( + _param = self._index_hcl_get_serialize( page=page, limit=limit, cursor=cursor, @@ -142864,7 +142864,7 @@ def index_hex_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHCLPaginatePagination", '404': "str", '500': "str", } @@ -142875,7 +142875,7 @@ def index_hex_get_without_preload_content( return response_data.response - def _index_hex_get_serialize( + def _index_hcl_get_serialize( self, page, limit, @@ -143043,7 +143043,7 @@ def _index_hex_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hex', + resource_path='/v3/index/hcl', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -143060,7 +143060,7 @@ def _index_hex_get_serialize( @validate_call - def index_hikvision_get( + def index_hex_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143098,10 +143098,10 @@ def index_hikvision_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination: - """Return vulnerability data stored in index \"hikvision\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"hex\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` :param page: set the page number of the response :type page: int @@ -143173,7 +143173,7 @@ def index_hikvision_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hikvision_get_serialize( + _param = self._index_hex_get_serialize( page=page, limit=limit, cursor=cursor, @@ -143205,7 +143205,7 @@ def index_hikvision_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -143221,7 +143221,7 @@ def index_hikvision_get( @validate_call - def index_hikvision_get_with_http_info( + def index_hex_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143259,10 +143259,10 @@ def index_hikvision_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination]: - """Return vulnerability data stored in index \"hikvision\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"hex\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` :param page: set the page number of the response :type page: int @@ -143334,7 +143334,7 @@ def index_hikvision_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hikvision_get_serialize( + _param = self._index_hex_get_serialize( page=page, limit=limit, cursor=cursor, @@ -143366,7 +143366,7 @@ def index_hikvision_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -143382,7 +143382,7 @@ def index_hikvision_get_with_http_info( @validate_call - def index_hikvision_get_without_preload_content( + def index_hex_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143421,9 +143421,9 @@ def index_hikvision_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hikvision\" + """Return vulnerability data stored in index \"hex\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hex index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hex (Erlang) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hex?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hex?cursor=` :param page: set the page number of the response :type page: int @@ -143495,7 +143495,7 @@ def index_hikvision_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hikvision_get_serialize( + _param = self._index_hex_get_serialize( page=page, limit=limit, cursor=cursor, @@ -143527,7 +143527,7 @@ def index_hikvision_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -143538,7 +143538,7 @@ def index_hikvision_get_without_preload_content( return response_data.response - def _index_hikvision_get_serialize( + def _index_hex_get_serialize( self, page, limit, @@ -143706,7 +143706,7 @@ def _index_hikvision_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hikvision', + resource_path='/v3/index/hex', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -143723,7 +143723,7 @@ def _index_hikvision_get_serialize( @validate_call - def index_hillrom_get( + def index_hikvision_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143761,10 +143761,10 @@ def index_hillrom_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"hillrom\" + ) -> RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination: + """Return vulnerability data stored in index \"hikvision\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` :param page: set the page number of the response :type page: int @@ -143836,7 +143836,7 @@ def index_hillrom_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hillrom_get_serialize( + _param = self._index_hikvision_get_serialize( page=page, limit=limit, cursor=cursor, @@ -143868,7 +143868,7 @@ def index_hillrom_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", '404': "str", '500': "str", } @@ -143884,7 +143884,7 @@ def index_hillrom_get( @validate_call - def index_hillrom_get_with_http_info( + def index_hikvision_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -143922,10 +143922,10 @@ def index_hillrom_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"hillrom\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination]: + """Return vulnerability data stored in index \"hikvision\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` :param page: set the page number of the response :type page: int @@ -143997,7 +143997,7 @@ def index_hillrom_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hillrom_get_serialize( + _param = self._index_hikvision_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144029,7 +144029,7 @@ def index_hillrom_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", '404': "str", '500': "str", } @@ -144045,7 +144045,7 @@ def index_hillrom_get_with_http_info( @validate_call - def index_hillrom_get_without_preload_content( + def index_hikvision_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -144084,9 +144084,9 @@ def index_hillrom_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hillrom\" + """Return vulnerability data stored in index \"hikvision\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hikvision index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hikvision Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hikvision?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hikvision?cursor=` :param page: set the page number of the response :type page: int @@ -144158,7 +144158,7 @@ def index_hillrom_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hillrom_get_serialize( + _param = self._index_hikvision_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144190,7 +144190,7 @@ def index_hillrom_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHIKVisionPaginatePagination", '404': "str", '500': "str", } @@ -144201,7 +144201,7 @@ def index_hillrom_get_without_preload_content( return response_data.response - def _index_hillrom_get_serialize( + def _index_hikvision_get_serialize( self, page, limit, @@ -144369,7 +144369,7 @@ def _index_hillrom_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hillrom', + resource_path='/v3/index/hikvision', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -144386,7 +144386,7 @@ def _index_hillrom_get_serialize( @validate_call - def index_hitachi_energy_get( + def index_hillrom_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -144424,10 +144424,10 @@ def index_hitachi_energy_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination: - """Return vulnerability data stored in index \"hitachi-energy\" + ) -> RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"hillrom\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` :param page: set the page number of the response :type page: int @@ -144499,7 +144499,7 @@ def index_hitachi_energy_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_energy_get_serialize( + _param = self._index_hillrom_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144531,7 +144531,7 @@ def index_hitachi_energy_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -144547,7 +144547,7 @@ def index_hitachi_energy_get( @validate_call - def index_hitachi_energy_get_with_http_info( + def index_hillrom_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -144585,10 +144585,10 @@ def index_hitachi_energy_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination]: - """Return vulnerability data stored in index \"hitachi-energy\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"hillrom\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` :param page: set the page number of the response :type page: int @@ -144660,7 +144660,7 @@ def index_hitachi_energy_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_energy_get_serialize( + _param = self._index_hillrom_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144692,7 +144692,7 @@ def index_hitachi_energy_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -144708,7 +144708,7 @@ def index_hitachi_energy_get_with_http_info( @validate_call - def index_hitachi_energy_get_without_preload_content( + def index_hillrom_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -144747,9 +144747,9 @@ def index_hitachi_energy_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hitachi-energy\" + """Return vulnerability data stored in index \"hillrom\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hillrom index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hillrom Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hillrom?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hillrom?cursor=` :param page: set the page number of the response :type page: int @@ -144821,7 +144821,7 @@ def index_hitachi_energy_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_energy_get_serialize( + _param = self._index_hillrom_get_serialize( page=page, limit=limit, cursor=cursor, @@ -144853,7 +144853,7 @@ def index_hitachi_energy_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHillromAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -144864,7 +144864,7 @@ def index_hitachi_energy_get_without_preload_content( return response_data.response - def _index_hitachi_energy_get_serialize( + def _index_hillrom_get_serialize( self, page, limit, @@ -145032,7 +145032,7 @@ def _index_hitachi_energy_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hitachi-energy', + resource_path='/v3/index/hillrom', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -145049,7 +145049,7 @@ def _index_hitachi_energy_get_serialize( @validate_call - def index_hitachi_get( + def index_hitachi_energy_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145087,10 +145087,10 @@ def index_hitachi_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination: - """Return vulnerability data stored in index \"hitachi\" + ) -> RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination: + """Return vulnerability data stored in index \"hitachi-energy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` :param page: set the page number of the response :type page: int @@ -145162,7 +145162,7 @@ def index_hitachi_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_get_serialize( + _param = self._index_hitachi_energy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -145194,7 +145194,7 @@ def index_hitachi_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", '404': "str", '500': "str", } @@ -145210,7 +145210,7 @@ def index_hitachi_get( @validate_call - def index_hitachi_get_with_http_info( + def index_hitachi_energy_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145248,10 +145248,10 @@ def index_hitachi_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination]: - """Return vulnerability data stored in index \"hitachi\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination]: + """Return vulnerability data stored in index \"hitachi-energy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` :param page: set the page number of the response :type page: int @@ -145323,7 +145323,7 @@ def index_hitachi_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_get_serialize( + _param = self._index_hitachi_energy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -145355,7 +145355,7 @@ def index_hitachi_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", '404': "str", '500': "str", } @@ -145371,7 +145371,7 @@ def index_hitachi_get_with_http_info( @validate_call - def index_hitachi_get_without_preload_content( + def index_hitachi_energy_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145410,9 +145410,9 @@ def index_hitachi_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hitachi\" + """Return vulnerability data stored in index \"hitachi-energy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi-energy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Energy Cybersecurity Advisories and Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi-energy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi-energy?cursor=` :param page: set the page number of the response :type page: int @@ -145484,7 +145484,7 @@ def index_hitachi_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hitachi_get_serialize( + _param = self._index_hitachi_energy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -145516,7 +145516,7 @@ def index_hitachi_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiEnergyPaginatePagination", '404': "str", '500': "str", } @@ -145527,7 +145527,7 @@ def index_hitachi_get_without_preload_content( return response_data.response - def _index_hitachi_get_serialize( + def _index_hitachi_energy_get_serialize( self, page, limit, @@ -145695,7 +145695,7 @@ def _index_hitachi_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hitachi', + resource_path='/v3/index/hitachi-energy', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -145712,7 +145712,7 @@ def _index_hitachi_get_serialize( @validate_call - def index_hkcert_get( + def index_hitachi_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145750,10 +145750,10 @@ def index_hkcert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination: - """Return vulnerability data stored in index \"hkcert\" + ) -> RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination: + """Return vulnerability data stored in index \"hitachi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` :param page: set the page number of the response :type page: int @@ -145825,7 +145825,7 @@ def index_hkcert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hkcert_get_serialize( + _param = self._index_hitachi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -145857,7 +145857,7 @@ def index_hkcert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", '404': "str", '500': "str", } @@ -145873,7 +145873,7 @@ def index_hkcert_get( @validate_call - def index_hkcert_get_with_http_info( + def index_hitachi_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -145911,10 +145911,10 @@ def index_hkcert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination]: - """Return vulnerability data stored in index \"hkcert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination]: + """Return vulnerability data stored in index \"hitachi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` :param page: set the page number of the response :type page: int @@ -145986,7 +145986,7 @@ def index_hkcert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hkcert_get_serialize( + _param = self._index_hitachi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146018,7 +146018,7 @@ def index_hkcert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", '404': "str", '500': "str", } @@ -146034,7 +146034,7 @@ def index_hkcert_get_with_http_info( @validate_call - def index_hkcert_get_without_preload_content( + def index_hitachi_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -146073,9 +146073,9 @@ def index_hkcert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hkcert\" + """Return vulnerability data stored in index \"hitachi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hitachi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hitachi Software Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hitachi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hitachi?cursor=` :param page: set the page number of the response :type page: int @@ -146147,7 +146147,7 @@ def index_hkcert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hkcert_get_serialize( + _param = self._index_hitachi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146179,7 +146179,7 @@ def index_hkcert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHitachiPaginatePagination", '404': "str", '500': "str", } @@ -146190,7 +146190,7 @@ def index_hkcert_get_without_preload_content( return response_data.response - def _index_hkcert_get_serialize( + def _index_hitachi_get_serialize( self, page, limit, @@ -146358,7 +146358,7 @@ def _index_hkcert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hkcert', + resource_path='/v3/index/hitachi', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -146375,7 +146375,7 @@ def _index_hkcert_get_serialize( @validate_call - def index_hms_get( + def index_hkcert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -146413,10 +146413,10 @@ def index_hms_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination: - """Return vulnerability data stored in index \"hms\" + ) -> RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination: + """Return vulnerability data stored in index \"hkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` :param page: set the page number of the response :type page: int @@ -146488,7 +146488,7 @@ def index_hms_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hms_get_serialize( + _param = self._index_hkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146520,7 +146520,7 @@ def index_hms_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", '404': "str", '500': "str", } @@ -146536,7 +146536,7 @@ def index_hms_get( @validate_call - def index_hms_get_with_http_info( + def index_hkcert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -146574,10 +146574,10 @@ def index_hms_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination]: - """Return vulnerability data stored in index \"hms\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination]: + """Return vulnerability data stored in index \"hkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` :param page: set the page number of the response :type page: int @@ -146649,7 +146649,7 @@ def index_hms_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hms_get_serialize( + _param = self._index_hkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146681,7 +146681,7 @@ def index_hms_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", '404': "str", '500': "str", } @@ -146697,7 +146697,7 @@ def index_hms_get_with_http_info( @validate_call - def index_hms_get_without_preload_content( + def index_hkcert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -146736,9 +146736,9 @@ def index_hms_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hms\" + """Return vulnerability data stored in index \"hkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hong Kong CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hkcert?cursor=` :param page: set the page number of the response :type page: int @@ -146810,7 +146810,7 @@ def index_hms_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hms_get_serialize( + _param = self._index_hkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -146842,7 +146842,7 @@ def index_hms_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHKCertPaginatePagination", '404': "str", '500': "str", } @@ -146853,7 +146853,7 @@ def index_hms_get_without_preload_content( return response_data.response - def _index_hms_get_serialize( + def _index_hkcert_get_serialize( self, page, limit, @@ -147021,7 +147021,7 @@ def _index_hms_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hms', + resource_path='/v3/index/hkcert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -147038,7 +147038,7 @@ def _index_hms_get_serialize( @validate_call - def index_honeywell_get( + def index_hms_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147076,10 +147076,10 @@ def index_honeywell_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination: - """Return vulnerability data stored in index \"honeywell\" + ) -> RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination: + """Return vulnerability data stored in index \"hms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` :param page: set the page number of the response :type page: int @@ -147151,7 +147151,7 @@ def index_honeywell_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_honeywell_get_serialize( + _param = self._index_hms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -147183,7 +147183,7 @@ def index_honeywell_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", '404': "str", '500': "str", } @@ -147199,7 +147199,7 @@ def index_honeywell_get( @validate_call - def index_honeywell_get_with_http_info( + def index_hms_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147237,10 +147237,10 @@ def index_honeywell_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination]: - """Return vulnerability data stored in index \"honeywell\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination]: + """Return vulnerability data stored in index \"hms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` :param page: set the page number of the response :type page: int @@ -147312,7 +147312,7 @@ def index_honeywell_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_honeywell_get_serialize( + _param = self._index_hms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -147344,7 +147344,7 @@ def index_honeywell_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", '404': "str", '500': "str", } @@ -147360,7 +147360,7 @@ def index_honeywell_get_with_http_info( @validate_call - def index_honeywell_get_without_preload_content( + def index_hms_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147399,9 +147399,9 @@ def index_honeywell_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"honeywell\" + """Return vulnerability data stored in index \"hms\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hms index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HMS (Hardware Meets Software) Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hms?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hms?cursor=` :param page: set the page number of the response :type page: int @@ -147473,7 +147473,7 @@ def index_honeywell_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_honeywell_get_serialize( + _param = self._index_hms_get_serialize( page=page, limit=limit, cursor=cursor, @@ -147505,7 +147505,7 @@ def index_honeywell_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHMSPaginatePagination", '404': "str", '500': "str", } @@ -147516,7 +147516,7 @@ def index_honeywell_get_without_preload_content( return response_data.response - def _index_honeywell_get_serialize( + def _index_hms_get_serialize( self, page, limit, @@ -147684,7 +147684,7 @@ def _index_honeywell_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/honeywell', + resource_path='/v3/index/hms', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -147701,7 +147701,7 @@ def _index_honeywell_get_serialize( @validate_call - def index_hp_eol_get( + def index_honeywell_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147739,10 +147739,10 @@ def index_hp_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: - """Return vulnerability data stored in index \"hp-eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination: + """Return vulnerability data stored in index \"honeywell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` :param page: set the page number of the response :type page: int @@ -147814,7 +147814,7 @@ def index_hp_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_eol_get_serialize( + _param = self._index_honeywell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -147846,7 +147846,7 @@ def index_hp_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", '404': "str", '500': "str", } @@ -147862,7 +147862,7 @@ def index_hp_eol_get( @validate_call - def index_hp_eol_get_with_http_info( + def index_honeywell_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -147900,10 +147900,10 @@ def index_hp_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: - """Return vulnerability data stored in index \"hp-eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination]: + """Return vulnerability data stored in index \"honeywell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` :param page: set the page number of the response :type page: int @@ -147975,7 +147975,7 @@ def index_hp_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_eol_get_serialize( + _param = self._index_honeywell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148007,7 +148007,7 @@ def index_hp_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", '404': "str", '500': "str", } @@ -148023,7 +148023,7 @@ def index_hp_eol_get_with_http_info( @validate_call - def index_hp_eol_get_without_preload_content( + def index_honeywell_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -148062,9 +148062,9 @@ def index_hp_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hp-eol\" + """Return vulnerability data stored in index \"honeywell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the honeywell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Honeywell Cyber Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/honeywell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/honeywell?cursor=` :param page: set the page number of the response :type page: int @@ -148136,7 +148136,7 @@ def index_hp_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_eol_get_serialize( + _param = self._index_honeywell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148168,7 +148168,7 @@ def index_hp_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHoneywellPaginatePagination", '404': "str", '500': "str", } @@ -148179,7 +148179,7 @@ def index_hp_eol_get_without_preload_content( return response_data.response - def _index_hp_eol_get_serialize( + def _index_honeywell_get_serialize( self, page, limit, @@ -148347,7 +148347,7 @@ def _index_hp_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hp-eol', + resource_path='/v3/index/honeywell', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -148364,7 +148364,7 @@ def _index_hp_eol_get_serialize( @validate_call - def index_hp_get( + def index_hp_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -148402,10 +148402,10 @@ def index_hp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination: - """Return vulnerability data stored in index \"hp\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: + """Return vulnerability data stored in index \"hp-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` :param page: set the page number of the response :type page: int @@ -148477,7 +148477,7 @@ def index_hp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_get_serialize( + _param = self._index_hp_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148509,7 +148509,7 @@ def index_hp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -148525,7 +148525,7 @@ def index_hp_get( @validate_call - def index_hp_get_with_http_info( + def index_hp_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -148563,10 +148563,10 @@ def index_hp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination]: - """Return vulnerability data stored in index \"hp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: + """Return vulnerability data stored in index \"hp-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` :param page: set the page number of the response :type page: int @@ -148638,7 +148638,7 @@ def index_hp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_get_serialize( + _param = self._index_hp_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148670,7 +148670,7 @@ def index_hp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -148686,7 +148686,7 @@ def index_hp_get_with_http_info( @validate_call - def index_hp_get_without_preload_content( + def index_hp_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -148725,9 +148725,9 @@ def index_hp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hp\" + """Return vulnerability data stored in index \"hp-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** End of Life Data for Hewlett-Packard Products ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp-eol?cursor=` :param page: set the page number of the response :type page: int @@ -148799,7 +148799,7 @@ def index_hp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hp_get_serialize( + _param = self._index_hp_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -148831,7 +148831,7 @@ def index_hp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -148842,7 +148842,7 @@ def index_hp_get_without_preload_content( return response_data.response - def _index_hp_get_serialize( + def _index_hp_eol_get_serialize( self, page, limit, @@ -149010,7 +149010,7 @@ def _index_hp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hp', + resource_path='/v3/index/hp-eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -149027,7 +149027,7 @@ def _index_hp_get_serialize( @validate_call - def index_hpe_eol_get( + def index_hp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149065,10 +149065,10 @@ def index_hpe_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: - """Return vulnerability data stored in index \"hpe-eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination: + """Return vulnerability data stored in index \"hp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` :param page: set the page number of the response :type page: int @@ -149140,7 +149140,7 @@ def index_hpe_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_eol_get_serialize( + _param = self._index_hp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149172,7 +149172,7 @@ def index_hpe_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", '404': "str", '500': "str", } @@ -149188,7 +149188,7 @@ def index_hpe_eol_get( @validate_call - def index_hpe_eol_get_with_http_info( + def index_hp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149226,10 +149226,10 @@ def index_hpe_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: - """Return vulnerability data stored in index \"hpe-eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination]: + """Return vulnerability data stored in index \"hp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` :param page: set the page number of the response :type page: int @@ -149301,7 +149301,7 @@ def index_hpe_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_eol_get_serialize( + _param = self._index_hp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149333,7 +149333,7 @@ def index_hpe_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", '404': "str", '500': "str", } @@ -149349,7 +149349,7 @@ def index_hpe_eol_get_with_http_info( @validate_call - def index_hpe_eol_get_without_preload_content( + def index_hp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149388,9 +149388,9 @@ def index_hpe_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hpe-eol\" + """Return vulnerability data stored in index \"hp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HP Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hp?cursor=` :param page: set the page number of the response :type page: int @@ -149462,7 +149462,7 @@ def index_hpe_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_eol_get_serialize( + _param = self._index_hp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149494,7 +149494,7 @@ def index_hpe_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPPaginatePagination", '404': "str", '500': "str", } @@ -149505,7 +149505,7 @@ def index_hpe_eol_get_without_preload_content( return response_data.response - def _index_hpe_eol_get_serialize( + def _index_hp_get_serialize( self, page, limit, @@ -149673,7 +149673,7 @@ def _index_hpe_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hpe-eol', + resource_path='/v3/index/hp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -149690,7 +149690,7 @@ def _index_hpe_eol_get_serialize( @validate_call - def index_hpe_get( + def index_hpe_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149728,10 +149728,10 @@ def index_hpe_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination: - """Return vulnerability data stored in index \"hpe\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: + """Return vulnerability data stored in index \"hpe-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` :param page: set the page number of the response :type page: int @@ -149803,7 +149803,7 @@ def index_hpe_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_get_serialize( + _param = self._index_hpe_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149835,7 +149835,7 @@ def index_hpe_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -149851,7 +149851,7 @@ def index_hpe_get( @validate_call - def index_hpe_get_with_http_info( + def index_hpe_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -149889,10 +149889,10 @@ def index_hpe_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination]: - """Return vulnerability data stored in index \"hpe\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: + """Return vulnerability data stored in index \"hpe-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` :param page: set the page number of the response :type page: int @@ -149964,7 +149964,7 @@ def index_hpe_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_get_serialize( + _param = self._index_hpe_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -149996,7 +149996,7 @@ def index_hpe_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -150012,7 +150012,7 @@ def index_hpe_get_with_http_info( @validate_call - def index_hpe_get_without_preload_content( + def index_hpe_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -150051,9 +150051,9 @@ def index_hpe_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"hpe\" + """Return vulnerability data stored in index \"hpe-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Hewlett-Packard Enterprise End of Life Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe-eol?cursor=` :param page: set the page number of the response :type page: int @@ -150125,7 +150125,7 @@ def index_hpe_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_hpe_get_serialize( + _param = self._index_hpe_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -150157,7 +150157,7 @@ def index_hpe_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -150168,7 +150168,7 @@ def index_hpe_get_without_preload_content( return response_data.response - def _index_hpe_get_serialize( + def _index_hpe_eol_get_serialize( self, page, limit, @@ -150336,7 +150336,7 @@ def _index_hpe_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/hpe', + resource_path='/v3/index/hpe-eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -150353,7 +150353,7 @@ def _index_hpe_get_serialize( @validate_call - def index_huawei_euleros_get( + def index_hpe_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -150391,10 +150391,10 @@ def index_huawei_euleros_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination: - """Return vulnerability data stored in index \"huawei-euleros\" + ) -> RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination: + """Return vulnerability data stored in index \"hpe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` :param page: set the page number of the response :type page: int @@ -150466,7 +150466,7 @@ def index_huawei_euleros_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_euleros_get_serialize( + _param = self._index_hpe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -150498,7 +150498,7 @@ def index_huawei_euleros_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", '404': "str", '500': "str", } @@ -150514,7 +150514,7 @@ def index_huawei_euleros_get( @validate_call - def index_huawei_euleros_get_with_http_info( + def index_hpe_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -150552,10 +150552,10 @@ def index_huawei_euleros_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination]: - """Return vulnerability data stored in index \"huawei-euleros\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination]: + """Return vulnerability data stored in index \"hpe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` :param page: set the page number of the response :type page: int @@ -150627,7 +150627,7 @@ def index_huawei_euleros_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_euleros_get_serialize( + _param = self._index_hpe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -150659,7 +150659,7 @@ def index_huawei_euleros_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", '404': "str", '500': "str", } @@ -150675,7 +150675,7 @@ def index_huawei_euleros_get_with_http_info( @validate_call - def index_huawei_euleros_get_without_preload_content( + def index_hpe_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -150714,9 +150714,9 @@ def index_huawei_euleros_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"huawei-euleros\" + """Return vulnerability data stored in index \"hpe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the hpe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** HPE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/hpe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/hpe?cursor=` :param page: set the page number of the response :type page: int @@ -150788,7 +150788,7 @@ def index_huawei_euleros_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_euleros_get_serialize( + _param = self._index_hpe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -150820,7 +150820,7 @@ def index_huawei_euleros_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHPEPaginatePagination", '404': "str", '500': "str", } @@ -150831,7 +150831,7 @@ def index_huawei_euleros_get_without_preload_content( return response_data.response - def _index_huawei_euleros_get_serialize( + def _index_hpe_get_serialize( self, page, limit, @@ -150999,7 +150999,7 @@ def _index_huawei_euleros_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/huawei-euleros', + resource_path='/v3/index/hpe', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -151016,7 +151016,7 @@ def _index_huawei_euleros_get_serialize( @validate_call - def index_huawei_ips_get( + def index_huawei_euleros_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151054,10 +151054,10 @@ def index_huawei_ips_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination: - """Return vulnerability data stored in index \"huawei-ips\" + ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination: + """Return vulnerability data stored in index \"huawei-euleros\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` :param page: set the page number of the response :type page: int @@ -151129,7 +151129,7 @@ def index_huawei_ips_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_ips_get_serialize( + _param = self._index_huawei_euleros_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151161,7 +151161,7 @@ def index_huawei_ips_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", '404': "str", '500': "str", } @@ -151177,7 +151177,7 @@ def index_huawei_ips_get( @validate_call - def index_huawei_ips_get_with_http_info( + def index_huawei_euleros_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151215,10 +151215,10 @@ def index_huawei_ips_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination]: - """Return vulnerability data stored in index \"huawei-ips\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination]: + """Return vulnerability data stored in index \"huawei-euleros\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` :param page: set the page number of the response :type page: int @@ -151290,7 +151290,7 @@ def index_huawei_ips_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_ips_get_serialize( + _param = self._index_huawei_euleros_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151322,7 +151322,7 @@ def index_huawei_ips_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", '404': "str", '500': "str", } @@ -151338,7 +151338,7 @@ def index_huawei_ips_get_with_http_info( @validate_call - def index_huawei_ips_get_without_preload_content( + def index_huawei_euleros_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151377,9 +151377,9 @@ def index_huawei_ips_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"huawei-ips\" + """Return vulnerability data stored in index \"huawei-euleros\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-euleros index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenEuler Operating System Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-euleros?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-euleros?cursor=` :param page: set the page number of the response :type page: int @@ -151451,7 +151451,7 @@ def index_huawei_ips_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_ips_get_serialize( + _param = self._index_huawei_euleros_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151483,7 +151483,7 @@ def index_huawei_ips_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiEulerOSPaginatePagination", '404': "str", '500': "str", } @@ -151494,7 +151494,7 @@ def index_huawei_ips_get_without_preload_content( return response_data.response - def _index_huawei_ips_get_serialize( + def _index_huawei_euleros_get_serialize( self, page, limit, @@ -151662,7 +151662,7 @@ def _index_huawei_ips_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/huawei-ips', + resource_path='/v3/index/huawei-euleros', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -151679,7 +151679,7 @@ def _index_huawei_ips_get_serialize( @validate_call - def index_huawei_psirt_get( + def index_huawei_ips_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151717,10 +151717,10 @@ def index_huawei_psirt_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination: - """Return vulnerability data stored in index \"huawei-psirt\" + ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination: + """Return vulnerability data stored in index \"huawei-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` :param page: set the page number of the response :type page: int @@ -151792,7 +151792,7 @@ def index_huawei_psirt_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_psirt_get_serialize( + _param = self._index_huawei_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151824,7 +151824,7 @@ def index_huawei_psirt_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", '404': "str", '500': "str", } @@ -151840,7 +151840,7 @@ def index_huawei_psirt_get( @validate_call - def index_huawei_psirt_get_with_http_info( + def index_huawei_ips_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -151878,10 +151878,10 @@ def index_huawei_psirt_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination]: - """Return vulnerability data stored in index \"huawei-psirt\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination]: + """Return vulnerability data stored in index \"huawei-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` :param page: set the page number of the response :type page: int @@ -151953,7 +151953,7 @@ def index_huawei_psirt_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_psirt_get_serialize( + _param = self._index_huawei_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -151985,7 +151985,7 @@ def index_huawei_psirt_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", '404': "str", '500': "str", } @@ -152001,7 +152001,7 @@ def index_huawei_psirt_get_with_http_info( @validate_call - def index_huawei_psirt_get_without_preload_content( + def index_huawei_ips_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -152040,9 +152040,9 @@ def index_huawei_psirt_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"huawei-psirt\" + """Return vulnerability data stored in index \"huawei-ips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-ips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei IPS Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-ips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-ips?cursor=` :param page: set the page number of the response :type page: int @@ -152114,7 +152114,7 @@ def index_huawei_psirt_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_huawei_psirt_get_serialize( + _param = self._index_huawei_ips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -152146,7 +152146,7 @@ def index_huawei_psirt_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiIPSPaginatePagination", '404': "str", '500': "str", } @@ -152157,7 +152157,7 @@ def index_huawei_psirt_get_without_preload_content( return response_data.response - def _index_huawei_psirt_get_serialize( + def _index_huawei_ips_get_serialize( self, page, limit, @@ -152325,7 +152325,7 @@ def _index_huawei_psirt_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/huawei-psirt', + resource_path='/v3/index/huawei-ips', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -152342,7 +152342,7 @@ def _index_huawei_psirt_get_serialize( @validate_call - def index_iava_get( + def index_huawei_psirt_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -152380,10 +152380,10 @@ def index_iava_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination: - """Return vulnerability data stored in index \"iava\" + ) -> RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination: + """Return vulnerability data stored in index \"huawei-psirt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` :param page: set the page number of the response :type page: int @@ -152455,7 +152455,7 @@ def index_iava_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_iava_get_serialize( + _param = self._index_huawei_psirt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -152487,7 +152487,7 @@ def index_iava_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", '404': "str", '500': "str", } @@ -152503,7 +152503,7 @@ def index_iava_get( @validate_call - def index_iava_get_with_http_info( + def index_huawei_psirt_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -152541,10 +152541,10 @@ def index_iava_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination]: - """Return vulnerability data stored in index \"iava\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination]: + """Return vulnerability data stored in index \"huawei-psirt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` :param page: set the page number of the response :type page: int @@ -152616,7 +152616,7 @@ def index_iava_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_iava_get_serialize( + _param = self._index_huawei_psirt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -152648,7 +152648,7 @@ def index_iava_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", '404': "str", '500': "str", } @@ -152664,7 +152664,7 @@ def index_iava_get_with_http_info( @validate_call - def index_iava_get_without_preload_content( + def index_huawei_psirt_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -152703,9 +152703,9 @@ def index_iava_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"iava\" + """Return vulnerability data stored in index \"huawei-psirt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the huawei-psirt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Huawei Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/huawei-psirt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/huawei-psirt?cursor=` :param page: set the page number of the response :type page: int @@ -152777,7 +152777,7 @@ def index_iava_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_iava_get_serialize( + _param = self._index_huawei_psirt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -152809,7 +152809,7 @@ def index_iava_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryHuaweiPaginatePagination", '404': "str", '500': "str", } @@ -152820,7 +152820,7 @@ def index_iava_get_without_preload_content( return response_data.response - def _index_iava_get_serialize( + def _index_huawei_psirt_get_serialize( self, page, limit, @@ -152988,7 +152988,7 @@ def _index_iava_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/iava', + resource_path='/v3/index/huawei-psirt', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -153005,7 +153005,7 @@ def _index_iava_get_serialize( @validate_call - def index_ibm_get( + def index_iava_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153043,10 +153043,10 @@ def index_ibm_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination: - """Return vulnerability data stored in index \"ibm\" + ) -> RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination: + """Return vulnerability data stored in index \"iava\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` :param page: set the page number of the response :type page: int @@ -153118,7 +153118,7 @@ def index_ibm_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ibm_get_serialize( + _param = self._index_iava_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153150,7 +153150,7 @@ def index_ibm_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", '404': "str", '500': "str", } @@ -153166,7 +153166,7 @@ def index_ibm_get( @validate_call - def index_ibm_get_with_http_info( + def index_iava_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153204,10 +153204,10 @@ def index_ibm_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination]: - """Return vulnerability data stored in index \"ibm\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination]: + """Return vulnerability data stored in index \"iava\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` :param page: set the page number of the response :type page: int @@ -153279,7 +153279,7 @@ def index_ibm_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ibm_get_serialize( + _param = self._index_iava_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153311,7 +153311,7 @@ def index_ibm_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", '404': "str", '500': "str", } @@ -153327,7 +153327,7 @@ def index_ibm_get_with_http_info( @validate_call - def index_ibm_get_without_preload_content( + def index_iava_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153366,9 +153366,9 @@ def index_ibm_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ibm\" + """Return vulnerability data stored in index \"iava\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the iava index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Information Assurance Vulnerability Alerts (IAVA) ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/iava?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/iava?cursor=` :param page: set the page number of the response :type page: int @@ -153440,7 +153440,7 @@ def index_ibm_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ibm_get_serialize( + _param = self._index_iava_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153472,7 +153472,7 @@ def index_ibm_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIAVAPaginatePagination", '404': "str", '500': "str", } @@ -153483,7 +153483,7 @@ def index_ibm_get_without_preload_content( return response_data.response - def _index_ibm_get_serialize( + def _index_iava_get_serialize( self, page, limit, @@ -153651,7 +153651,7 @@ def _index_ibm_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ibm', + resource_path='/v3/index/iava', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -153668,7 +153668,7 @@ def _index_ibm_get_serialize( @validate_call - def index_idemia_get( + def index_ibm_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153706,10 +153706,10 @@ def index_idemia_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination: - """Return vulnerability data stored in index \"idemia\" + ) -> RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination: + """Return vulnerability data stored in index \"ibm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` :param page: set the page number of the response :type page: int @@ -153781,7 +153781,7 @@ def index_idemia_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_idemia_get_serialize( + _param = self._index_ibm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153813,7 +153813,7 @@ def index_idemia_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", '404': "str", '500': "str", } @@ -153829,7 +153829,7 @@ def index_idemia_get( @validate_call - def index_idemia_get_with_http_info( + def index_ibm_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -153867,10 +153867,10 @@ def index_idemia_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination]: - """Return vulnerability data stored in index \"idemia\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination]: + """Return vulnerability data stored in index \"ibm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` :param page: set the page number of the response :type page: int @@ -153942,7 +153942,7 @@ def index_idemia_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_idemia_get_serialize( + _param = self._index_ibm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -153974,7 +153974,7 @@ def index_idemia_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", '404': "str", '500': "str", } @@ -153990,7 +153990,7 @@ def index_idemia_get_with_http_info( @validate_call - def index_idemia_get_without_preload_content( + def index_ibm_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -154029,9 +154029,9 @@ def index_idemia_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"idemia\" + """Return vulnerability data stored in index \"ibm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ibm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IBM Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ibm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ibm?cursor=` :param page: set the page number of the response :type page: int @@ -154103,7 +154103,7 @@ def index_idemia_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_idemia_get_serialize( + _param = self._index_ibm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -154135,7 +154135,7 @@ def index_idemia_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIBMPaginatePagination", '404': "str", '500': "str", } @@ -154146,7 +154146,7 @@ def index_idemia_get_without_preload_content( return response_data.response - def _index_idemia_get_serialize( + def _index_ibm_get_serialize( self, page, limit, @@ -154314,7 +154314,7 @@ def _index_idemia_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/idemia', + resource_path='/v3/index/ibm', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -154331,7 +154331,7 @@ def _index_idemia_get_serialize( @validate_call - def index_igel_get( + def index_idemia_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -154369,10 +154369,10 @@ def index_igel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination: - """Return vulnerability data stored in index \"igel\" + ) -> RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination: + """Return vulnerability data stored in index \"idemia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` :param page: set the page number of the response :type page: int @@ -154444,7 +154444,7 @@ def index_igel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_igel_get_serialize( + _param = self._index_idemia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -154476,7 +154476,7 @@ def index_igel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", '404': "str", '500': "str", } @@ -154492,7 +154492,7 @@ def index_igel_get( @validate_call - def index_igel_get_with_http_info( + def index_idemia_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -154530,10 +154530,10 @@ def index_igel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination]: - """Return vulnerability data stored in index \"igel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination]: + """Return vulnerability data stored in index \"idemia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` :param page: set the page number of the response :type page: int @@ -154605,7 +154605,7 @@ def index_igel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_igel_get_serialize( + _param = self._index_idemia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -154637,7 +154637,7 @@ def index_igel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", '404': "str", '500': "str", } @@ -154653,7 +154653,7 @@ def index_igel_get_with_http_info( @validate_call - def index_igel_get_without_preload_content( + def index_idemia_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -154692,9 +154692,9 @@ def index_igel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"igel\" + """Return vulnerability data stored in index \"idemia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the idemia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Idemia Product Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/idemia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/idemia?cursor=` :param page: set the page number of the response :type page: int @@ -154766,7 +154766,7 @@ def index_igel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_igel_get_serialize( + _param = self._index_idemia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -154798,7 +154798,7 @@ def index_igel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIdemiaPaginatePagination", '404': "str", '500': "str", } @@ -154809,7 +154809,7 @@ def index_igel_get_without_preload_content( return response_data.response - def _index_igel_get_serialize( + def _index_idemia_get_serialize( self, page, limit, @@ -154977,7 +154977,7 @@ def _index_igel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/igel', + resource_path='/v3/index/idemia', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -154994,7 +154994,7 @@ def _index_igel_get_serialize( @validate_call - def index_il_alerts_get( + def index_igel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155032,10 +155032,10 @@ def index_il_alerts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination: - """Return vulnerability data stored in index \"il-alerts\" + ) -> RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination: + """Return vulnerability data stored in index \"igel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` :param page: set the page number of the response :type page: int @@ -155107,7 +155107,7 @@ def index_il_alerts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_alerts_get_serialize( + _param = self._index_igel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155139,7 +155139,7 @@ def index_il_alerts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", '404': "str", '500': "str", } @@ -155155,7 +155155,7 @@ def index_il_alerts_get( @validate_call - def index_il_alerts_get_with_http_info( + def index_igel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155193,10 +155193,10 @@ def index_il_alerts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination]: - """Return vulnerability data stored in index \"il-alerts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination]: + """Return vulnerability data stored in index \"igel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` :param page: set the page number of the response :type page: int @@ -155268,7 +155268,7 @@ def index_il_alerts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_alerts_get_serialize( + _param = self._index_igel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155300,7 +155300,7 @@ def index_il_alerts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", '404': "str", '500': "str", } @@ -155316,7 +155316,7 @@ def index_il_alerts_get_with_http_info( @validate_call - def index_il_alerts_get_without_preload_content( + def index_igel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155355,9 +155355,9 @@ def index_il_alerts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"il-alerts\" + """Return vulnerability data stored in index \"igel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the igel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** IGEL Security Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/igel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/igel?cursor=` :param page: set the page number of the response :type page: int @@ -155429,7 +155429,7 @@ def index_il_alerts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_alerts_get_serialize( + _param = self._index_igel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155461,7 +155461,7 @@ def index_il_alerts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIgelPaginatePagination", '404': "str", '500': "str", } @@ -155472,7 +155472,7 @@ def index_il_alerts_get_without_preload_content( return response_data.response - def _index_il_alerts_get_serialize( + def _index_igel_get_serialize( self, page, limit, @@ -155640,7 +155640,7 @@ def _index_il_alerts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/il-alerts', + resource_path='/v3/index/igel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -155657,7 +155657,7 @@ def _index_il_alerts_get_serialize( @validate_call - def index_il_vulnerabilities_get( + def index_il_alerts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155695,10 +155695,10 @@ def index_il_vulnerabilities_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination: - """Return vulnerability data stored in index \"il-vulnerabilities\" + ) -> RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination: + """Return vulnerability data stored in index \"il-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -155770,7 +155770,7 @@ def index_il_vulnerabilities_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_vulnerabilities_get_serialize( + _param = self._index_il_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155802,7 +155802,7 @@ def index_il_vulnerabilities_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", '404': "str", '500': "str", } @@ -155818,7 +155818,7 @@ def index_il_vulnerabilities_get( @validate_call - def index_il_vulnerabilities_get_with_http_info( + def index_il_alerts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -155856,10 +155856,10 @@ def index_il_vulnerabilities_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination]: - """Return vulnerability data stored in index \"il-vulnerabilities\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination]: + """Return vulnerability data stored in index \"il-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -155931,7 +155931,7 @@ def index_il_vulnerabilities_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_vulnerabilities_get_serialize( + _param = self._index_il_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -155963,7 +155963,7 @@ def index_il_vulnerabilities_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", '404': "str", '500': "str", } @@ -155979,7 +155979,7 @@ def index_il_vulnerabilities_get_with_http_info( @validate_call - def index_il_vulnerabilities_get_without_preload_content( + def index_il_alerts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -156018,9 +156018,9 @@ def index_il_vulnerabilities_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"il-vulnerabilities\" + """Return vulnerability data stored in index \"il-alerts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-alerts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-alerts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-alerts?cursor=` :param page: set the page number of the response :type page: int @@ -156092,7 +156092,7 @@ def index_il_vulnerabilities_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_il_vulnerabilities_get_serialize( + _param = self._index_il_alerts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -156124,7 +156124,7 @@ def index_il_vulnerabilities_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliAlertPaginatePagination", '404': "str", '500': "str", } @@ -156135,7 +156135,7 @@ def index_il_vulnerabilities_get_without_preload_content( return response_data.response - def _index_il_vulnerabilities_get_serialize( + def _index_il_alerts_get_serialize( self, page, limit, @@ -156303,7 +156303,7 @@ def _index_il_vulnerabilities_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/il-vulnerabilities', + resource_path='/v3/index/il-alerts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -156320,7 +156320,7 @@ def _index_il_vulnerabilities_get_serialize( @validate_call - def index_incibe_get( + def index_il_vulnerabilities_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -156358,10 +156358,10 @@ def index_incibe_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"incibe\" + ) -> RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination: + """Return vulnerability data stored in index \"il-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -156433,7 +156433,7 @@ def index_incibe_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_incibe_get_serialize( + _param = self._index_il_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -156465,7 +156465,7 @@ def index_incibe_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -156481,7 +156481,7 @@ def index_incibe_get( @validate_call - def index_incibe_get_with_http_info( + def index_il_vulnerabilities_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -156519,10 +156519,10 @@ def index_incibe_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"incibe\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination]: + """Return vulnerability data stored in index \"il-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -156594,7 +156594,7 @@ def index_incibe_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_incibe_get_serialize( + _param = self._index_il_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -156626,7 +156626,7 @@ def index_incibe_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -156642,7 +156642,7 @@ def index_incibe_get_with_http_info( @validate_call - def index_incibe_get_without_preload_content( + def index_il_vulnerabilities_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -156681,9 +156681,9 @@ def index_incibe_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"incibe\" + """Return vulnerability data stored in index \"il-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the il-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Gov.il CVE Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/il-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/il-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -156755,7 +156755,7 @@ def index_incibe_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_incibe_get_serialize( + _param = self._index_il_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -156787,7 +156787,7 @@ def index_incibe_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIsraeliVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -156798,7 +156798,7 @@ def index_incibe_get_without_preload_content( return response_data.response - def _index_incibe_get_serialize( + def _index_il_vulnerabilities_get_serialize( self, page, limit, @@ -156966,7 +156966,7 @@ def _index_incibe_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/incibe', + resource_path='/v3/index/il-vulnerabilities', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -156983,7 +156983,7 @@ def _index_incibe_get_serialize( @validate_call - def index_initial_access_get( + def index_incibe_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157021,10 +157021,10 @@ def index_initial_access_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination: - """Return vulnerability data stored in index \"initial-access\" + ) -> RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"incibe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` :param page: set the page number of the response :type page: int @@ -157096,7 +157096,7 @@ def index_initial_access_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_get_serialize( + _param = self._index_incibe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157128,7 +157128,7 @@ def index_initial_access_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -157144,7 +157144,7 @@ def index_initial_access_get( @validate_call - def index_initial_access_get_with_http_info( + def index_incibe_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157182,10 +157182,10 @@ def index_initial_access_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination]: - """Return vulnerability data stored in index \"initial-access\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"incibe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` :param page: set the page number of the response :type page: int @@ -157257,7 +157257,7 @@ def index_initial_access_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_get_serialize( + _param = self._index_incibe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157289,7 +157289,7 @@ def index_initial_access_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -157305,7 +157305,7 @@ def index_initial_access_get_with_http_info( @validate_call - def index_initial_access_get_without_preload_content( + def index_incibe_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157344,9 +157344,9 @@ def index_initial_access_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"initial-access\" + """Return vulnerability data stored in index \"incibe\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the incibe index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Incibe CERT Early Warnings ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/incibe?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/incibe?cursor=` :param page: set the page number of the response :type page: int @@ -157418,7 +157418,7 @@ def index_initial_access_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_get_serialize( + _param = self._index_incibe_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157450,7 +157450,7 @@ def index_initial_access_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIncibeAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -157461,7 +157461,7 @@ def index_initial_access_get_without_preload_content( return response_data.response - def _index_initial_access_get_serialize( + def _index_incibe_get_serialize( self, page, limit, @@ -157629,7 +157629,7 @@ def _index_initial_access_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/initial-access', + resource_path='/v3/index/incibe', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -157646,7 +157646,7 @@ def _index_initial_access_get_serialize( @validate_call - def index_initial_access_git_get( + def index_initial_access_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157685,9 +157685,9 @@ def index_initial_access_git_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination: - """Return vulnerability data stored in index \"initial-access-git\" + """Return vulnerability data stored in index \"initial-access\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` :param page: set the page number of the response :type page: int @@ -157759,7 +157759,7 @@ def index_initial_access_git_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_git_get_serialize( + _param = self._index_initial_access_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157807,7 +157807,7 @@ def index_initial_access_git_get( @validate_call - def index_initial_access_git_get_with_http_info( + def index_initial_access_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -157846,9 +157846,9 @@ def index_initial_access_git_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination]: - """Return vulnerability data stored in index \"initial-access-git\" + """Return vulnerability data stored in index \"initial-access\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` :param page: set the page number of the response :type page: int @@ -157920,7 +157920,7 @@ def index_initial_access_git_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_git_get_serialize( + _param = self._index_initial_access_get_serialize( page=page, limit=limit, cursor=cursor, @@ -157968,7 +157968,7 @@ def index_initial_access_git_get_with_http_info( @validate_call - def index_initial_access_git_get_without_preload_content( + def index_initial_access_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -158007,9 +158007,9 @@ def index_initial_access_git_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"initial-access-git\" + """Return vulnerability data stored in index \"initial-access\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access?cursor=` :param page: set the page number of the response :type page: int @@ -158081,7 +158081,7 @@ def index_initial_access_git_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_initial_access_git_get_serialize( + _param = self._index_initial_access_get_serialize( page=page, limit=limit, cursor=cursor, @@ -158124,7 +158124,7 @@ def index_initial_access_git_get_without_preload_content( return response_data.response - def _index_initial_access_git_get_serialize( + def _index_initial_access_get_serialize( self, page, limit, @@ -158292,7 +158292,7 @@ def _index_initial_access_git_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/initial-access-git', + resource_path='/v3/index/initial-access', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -158309,7 +158309,7 @@ def _index_initial_access_git_get_serialize( @validate_call - def index_intel_get( + def index_initial_access_git_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -158347,10 +158347,10 @@ def index_intel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination: - """Return vulnerability data stored in index \"intel\" + ) -> RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination: + """Return vulnerability data stored in index \"initial-access-git\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` :param page: set the page number of the response :type page: int @@ -158422,7 +158422,7 @@ def index_intel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_intel_get_serialize( + _param = self._index_initial_access_git_get_serialize( page=page, limit=limit, cursor=cursor, @@ -158454,7 +158454,7 @@ def index_intel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", '404': "str", '500': "str", } @@ -158470,7 +158470,7 @@ def index_intel_get( @validate_call - def index_intel_get_with_http_info( + def index_initial_access_git_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -158508,10 +158508,10 @@ def index_intel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination]: - """Return vulnerability data stored in index \"intel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination]: + """Return vulnerability data stored in index \"initial-access-git\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` :param page: set the page number of the response :type page: int @@ -158583,7 +158583,7 @@ def index_intel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_intel_get_serialize( + _param = self._index_initial_access_git_get_serialize( page=page, limit=limit, cursor=cursor, @@ -158615,7 +158615,7 @@ def index_intel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", '404': "str", '500': "str", } @@ -158631,7 +158631,7 @@ def index_intel_get_with_http_info( @validate_call - def index_intel_get_without_preload_content( + def index_initial_access_git_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -158670,9 +158670,9 @@ def index_intel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"intel\" + """Return vulnerability data stored in index \"initial-access-git\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the initial-access-git index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Initial Access Intelligence Git Backup for Subscribers ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/initial-access-git?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/initial-access-git?cursor=` :param page: set the page number of the response :type page: int @@ -158744,7 +158744,7 @@ def index_intel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_intel_get_serialize( + _param = self._index_initial_access_git_get_serialize( page=page, limit=limit, cursor=cursor, @@ -158776,7 +158776,7 @@ def index_intel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiInitialAccessPaginatePagination", '404': "str", '500': "str", } @@ -158787,7 +158787,7 @@ def index_intel_get_without_preload_content( return response_data.response - def _index_intel_get_serialize( + def _index_initial_access_git_get_serialize( self, page, limit, @@ -158955,7 +158955,7 @@ def _index_intel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/intel', + resource_path='/v3/index/initial-access-git', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -158972,7 +158972,7 @@ def _index_intel_get_serialize( @validate_call - def index_ioc_botnets_get( + def index_intel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159010,10 +159010,10 @@ def index_ioc_botnets_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ioc-botnets\" + ) -> RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination: + """Return vulnerability data stored in index \"intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` :param page: set the page number of the response :type page: int @@ -159085,7 +159085,7 @@ def index_ioc_botnets_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_botnets_get_serialize( + _param = self._index_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159117,7 +159117,7 @@ def index_ioc_botnets_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", '404': "str", '500': "str", } @@ -159133,7 +159133,7 @@ def index_ioc_botnets_get( @validate_call - def index_ioc_botnets_get_with_http_info( + def index_intel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159171,10 +159171,10 @@ def index_ioc_botnets_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ioc-botnets\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination]: + """Return vulnerability data stored in index \"intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` :param page: set the page number of the response :type page: int @@ -159246,7 +159246,7 @@ def index_ioc_botnets_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_botnets_get_serialize( + _param = self._index_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159278,7 +159278,7 @@ def index_ioc_botnets_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", '404': "str", '500': "str", } @@ -159294,7 +159294,7 @@ def index_ioc_botnets_get_with_http_info( @validate_call - def index_ioc_botnets_get_without_preload_content( + def index_intel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159333,9 +159333,9 @@ def index_ioc_botnets_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ioc-botnets\" + """Return vulnerability data stored in index \"intel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the intel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Intel® Product Security Center Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/intel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/intel?cursor=` :param page: set the page number of the response :type page: int @@ -159407,7 +159407,7 @@ def index_ioc_botnets_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_botnets_get_serialize( + _param = self._index_intel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159439,7 +159439,7 @@ def index_ioc_botnets_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIntelPaginatePagination", '404': "str", '500': "str", } @@ -159450,7 +159450,7 @@ def index_ioc_botnets_get_without_preload_content( return response_data.response - def _index_ioc_botnets_get_serialize( + def _index_intel_get_serialize( self, page, limit, @@ -159618,7 +159618,7 @@ def _index_ioc_botnets_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ioc-botnets', + resource_path='/v3/index/intel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -159635,7 +159635,7 @@ def _index_ioc_botnets_get_serialize( @validate_call - def index_ioc_ransomware_get( + def index_ioc_botnets_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159673,10 +159673,10 @@ def index_ioc_ransomware_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ioc-ransomware\" + ) -> RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ioc-botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` :param page: set the page number of the response :type page: int @@ -159748,7 +159748,7 @@ def index_ioc_ransomware_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_ransomware_get_serialize( + _param = self._index_ioc_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159780,7 +159780,7 @@ def index_ioc_ransomware_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -159796,7 +159796,7 @@ def index_ioc_ransomware_get( @validate_call - def index_ioc_ransomware_get_with_http_info( + def index_ioc_botnets_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159834,10 +159834,10 @@ def index_ioc_ransomware_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ioc-ransomware\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ioc-botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` :param page: set the page number of the response :type page: int @@ -159909,7 +159909,7 @@ def index_ioc_ransomware_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_ransomware_get_serialize( + _param = self._index_ioc_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -159941,7 +159941,7 @@ def index_ioc_ransomware_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -159957,7 +159957,7 @@ def index_ioc_ransomware_get_with_http_info( @validate_call - def index_ioc_ransomware_get_without_preload_content( + def index_ioc_botnets_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -159996,9 +159996,9 @@ def index_ioc_ransomware_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ioc-ransomware\" + """Return vulnerability data stored in index \"ioc-botnets\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-botnets index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck IOC Botnets ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-botnets?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-botnets?cursor=` :param page: set the page number of the response :type page: int @@ -160070,7 +160070,7 @@ def index_ioc_ransomware_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_ransomware_get_serialize( + _param = self._index_ioc_botnets_get_serialize( page=page, limit=limit, cursor=cursor, @@ -160102,7 +160102,7 @@ def index_ioc_ransomware_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCBotnetAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -160113,7 +160113,7 @@ def index_ioc_ransomware_get_without_preload_content( return response_data.response - def _index_ioc_ransomware_get_serialize( + def _index_ioc_botnets_get_serialize( self, page, limit, @@ -160281,7 +160281,7 @@ def _index_ioc_ransomware_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ioc-ransomware', + resource_path='/v3/index/ioc-botnets', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -160298,7 +160298,7 @@ def _index_ioc_ransomware_get_serialize( @validate_call - def index_ioc_threat_actors_get( + def index_ioc_ransomware_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -160336,10 +160336,10 @@ def index_ioc_threat_actors_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ioc-threat-actors\" + ) -> RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ioc-ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -160411,7 +160411,7 @@ def index_ioc_threat_actors_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_threat_actors_get_serialize( + _param = self._index_ioc_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -160443,7 +160443,7 @@ def index_ioc_threat_actors_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -160459,7 +160459,7 @@ def index_ioc_threat_actors_get( @validate_call - def index_ioc_threat_actors_get_with_http_info( + def index_ioc_ransomware_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -160497,10 +160497,10 @@ def index_ioc_threat_actors_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ioc-threat-actors\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ioc-ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -160572,7 +160572,7 @@ def index_ioc_threat_actors_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_threat_actors_get_serialize( + _param = self._index_ioc_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -160604,7 +160604,7 @@ def index_ioc_threat_actors_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -160620,7 +160620,7 @@ def index_ioc_threat_actors_get_with_http_info( @validate_call - def index_ioc_threat_actors_get_without_preload_content( + def index_ioc_ransomware_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -160659,9 +160659,9 @@ def index_ioc_threat_actors_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ioc-threat-actors\" + """Return vulnerability data stored in index \"ioc-ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -160733,7 +160733,7 @@ def index_ioc_threat_actors_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ioc_threat_actors_get_serialize( + _param = self._index_ioc_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -160765,7 +160765,7 @@ def index_ioc_threat_actors_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCRansomwareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -160776,7 +160776,7 @@ def index_ioc_threat_actors_get_without_preload_content( return response_data.response - def _index_ioc_threat_actors_get_serialize( + def _index_ioc_ransomware_get_serialize( self, page, limit, @@ -160944,7 +160944,7 @@ def _index_ioc_threat_actors_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ioc-threat-actors', + resource_path='/v3/index/ioc-ransomware', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -160961,7 +160961,7 @@ def _index_ioc_threat_actors_get_serialize( @validate_call - def index_ipintel10d_get( + def index_ioc_threat_actors_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -160972,19 +160972,14 @@ def index_ipintel10d_get( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, - asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, - country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, - kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, - hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, - matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -161004,10 +160999,10 @@ def index_ipintel10d_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: - """Return vulnerability data stored in index \"ipintel-10d\" + ) -> RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ioc-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -161027,6 +161022,10 @@ def index_ipintel10d_get( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -161037,22 +161036,8 @@ def index_ipintel10d_get( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param cidr: Specify an IPv4 or IPv6 CIDR - :type cidr: str - :param asn: Autonomous system number - :type asn: str - :param country: Country name ISO-3166?? format - :type country: str - :param country_code: Country code in ISO-3166?? format - :type country_code: str - :param id: Record type - :type id: str - :param kind: Kind of IpIntel Finding - :type kind: str - :param hostname: Match a string in the list of hostnames - :type hostname: str - :param matches: Search for a string in the field describing the finding - :type matches: str + :param published: Specify a published date + :type published: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -161089,7 +161074,7 @@ def index_ipintel10d_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel10d_get_serialize( + _param = self._index_ioc_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -161099,19 +161084,14 @@ def index_ipintel10d_get( cve=cve, alias=alias, iava=iava, + jvndb=jvndb, + ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - cidr=cidr, - asn=asn, - country=country, - country_code=country_code, - id=id, - kind=kind, - hostname=hostname, - matches=matches, + published=published, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -161126,7 +161106,7 @@ def index_ipintel10d_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -161142,7 +161122,7 @@ def index_ipintel10d_get( @validate_call - def index_ipintel10d_get_with_http_info( + def index_ioc_threat_actors_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -161153,19 +161133,14 @@ def index_ipintel10d_get_with_http_info( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, - asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, - country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, - kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, - hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, - matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -161185,10 +161160,10 @@ def index_ipintel10d_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: - """Return vulnerability data stored in index \"ipintel-10d\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ioc-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -161208,6 +161183,10 @@ def index_ipintel10d_get_with_http_info( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -161218,22 +161197,8 @@ def index_ipintel10d_get_with_http_info( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param cidr: Specify an IPv4 or IPv6 CIDR - :type cidr: str - :param asn: Autonomous system number - :type asn: str - :param country: Country name ISO-3166?? format - :type country: str - :param country_code: Country code in ISO-3166?? format - :type country_code: str - :param id: Record type - :type id: str - :param kind: Kind of IpIntel Finding - :type kind: str - :param hostname: Match a string in the list of hostnames - :type hostname: str - :param matches: Search for a string in the field describing the finding - :type matches: str + :param published: Specify a published date + :type published: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -161270,7 +161235,7 @@ def index_ipintel10d_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel10d_get_serialize( + _param = self._index_ioc_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -161280,19 +161245,14 @@ def index_ipintel10d_get_with_http_info( cve=cve, alias=alias, iava=iava, + jvndb=jvndb, + ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - cidr=cidr, - asn=asn, - country=country, - country_code=country_code, - id=id, - kind=kind, - hostname=hostname, - matches=matches, + published=published, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -161307,7 +161267,7 @@ def index_ipintel10d_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -161323,7 +161283,7 @@ def index_ipintel10d_get_with_http_info( @validate_call - def index_ipintel10d_get_without_preload_content( + def index_ioc_threat_actors_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -161334,19 +161294,14 @@ def index_ipintel10d_get_without_preload_content( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, + jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, + ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, - asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, - country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, - kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, - hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, - matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, + published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -161367,9 +161322,9 @@ def index_ipintel10d_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ipintel-10d\" + """Return vulnerability data stored in index \"ioc-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ioc-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Vulncheck IOC Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ioc-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ioc-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -161389,6 +161344,10 @@ def index_ipintel10d_get_without_preload_content( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str + :param jvndb: Specify a JVNDB ID to search with. + :type jvndb: str + :param ilvn: Specify an ILVN ID to search with. + :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -161399,22 +161358,8 @@ def index_ipintel10d_get_without_preload_content( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param cidr: Specify an IPv4 or IPv6 CIDR - :type cidr: str - :param asn: Autonomous system number - :type asn: str - :param country: Country name ISO-3166?? format - :type country: str - :param country_code: Country code in ISO-3166?? format - :type country_code: str - :param id: Record type - :type id: str - :param kind: Kind of IpIntel Finding - :type kind: str - :param hostname: Match a string in the list of hostnames - :type hostname: str - :param matches: Search for a string in the field describing the finding - :type matches: str + :param published: Specify a published date + :type published: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -161451,7 +161396,7 @@ def index_ipintel10d_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel10d_get_serialize( + _param = self._index_ioc_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -161461,19 +161406,14 @@ def index_ipintel10d_get_without_preload_content( cve=cve, alias=alias, iava=iava, + jvndb=jvndb, + ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - cidr=cidr, - asn=asn, - country=country, - country_code=country_code, - id=id, - kind=kind, - hostname=hostname, - matches=matches, + published=published, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -161488,7 +161428,7 @@ def index_ipintel10d_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIOCThreatActorAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -161499,7 +161439,7 @@ def index_ipintel10d_get_without_preload_content( return response_data.response - def _index_ipintel10d_get_serialize( + def _index_ioc_threat_actors_get_serialize( self, page, limit, @@ -161510,19 +161450,14 @@ def _index_ipintel10d_get_serialize( cve, alias, iava, + jvndb, + ilvn, threat_actor, mitre_id, misp_id, ransomware, botnet, - cidr, - asn, - country, - country_code, - id, - kind, - hostname, - matches, + published, date, updated_at_start_date, updated_at_end_date, @@ -161591,6 +161526,14 @@ def _index_ipintel10d_get_serialize( _query_params.append(('iava', iava)) + if jvndb is not None: + + _query_params.append(('jvndb', jvndb)) + + if ilvn is not None: + + _query_params.append(('ilvn', ilvn)) + if threat_actor is not None: _query_params.append(('threat_actor', threat_actor)) @@ -161611,37 +161554,9 @@ def _index_ipintel10d_get_serialize( _query_params.append(('botnet', botnet)) - if cidr is not None: - - _query_params.append(('cidr', cidr)) - - if asn is not None: - - _query_params.append(('asn', asn)) - - if country is not None: - - _query_params.append(('country', country)) - - if country_code is not None: - - _query_params.append(('country_code', country_code)) - - if id is not None: - - _query_params.append(('id', id)) - - if kind is not None: - - _query_params.append(('kind', kind)) - - if hostname is not None: - - _query_params.append(('hostname', hostname)) - - if matches is not None: + if published is not None: - _query_params.append(('matches', matches)) + _query_params.append(('published', published)) if date is not None: @@ -161692,7 +161607,7 @@ def _index_ipintel10d_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ipintel-10d', + resource_path='/v3/index/ioc-threat-actors', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -161709,7 +161624,7 @@ def _index_ipintel10d_get_serialize( @validate_call - def index_ipintel30d_get( + def index_ipintel10d_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -161753,9 +161668,9 @@ def index_ipintel30d_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: - """Return vulnerability data stored in index \"ipintel-30d\" + """Return vulnerability data stored in index \"ipintel-10d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` :param page: set the page number of the response :type page: int @@ -161837,7 +161752,7 @@ def index_ipintel30d_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel30d_get_serialize( + _param = self._index_ipintel10d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -161890,7 +161805,7 @@ def index_ipintel30d_get( @validate_call - def index_ipintel30d_get_with_http_info( + def index_ipintel10d_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -161934,9 +161849,9 @@ def index_ipintel30d_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: - """Return vulnerability data stored in index \"ipintel-30d\" + """Return vulnerability data stored in index \"ipintel-10d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` :param page: set the page number of the response :type page: int @@ -162018,7 +161933,7 @@ def index_ipintel30d_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel30d_get_serialize( + _param = self._index_ipintel10d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162071,7 +161986,7 @@ def index_ipintel30d_get_with_http_info( @validate_call - def index_ipintel30d_get_without_preload_content( + def index_ipintel10d_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -162115,9 +162030,9 @@ def index_ipintel30d_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ipintel-30d\" + """Return vulnerability data stored in index \"ipintel-10d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-10d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 10-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-10d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-10d?cursor=` :param page: set the page number of the response :type page: int @@ -162199,7 +162114,7 @@ def index_ipintel30d_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel30d_get_serialize( + _param = self._index_ipintel10d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162247,7 +162162,7 @@ def index_ipintel30d_get_without_preload_content( return response_data.response - def _index_ipintel30d_get_serialize( + def _index_ipintel10d_get_serialize( self, page, limit, @@ -162440,7 +162355,7 @@ def _index_ipintel30d_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ipintel-30d', + resource_path='/v3/index/ipintel-10d', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -162457,7 +162372,7 @@ def _index_ipintel30d_get_serialize( @validate_call - def index_ipintel3d_get( + def index_ipintel30d_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -162501,9 +162416,9 @@ def index_ipintel3d_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: - """Return vulnerability data stored in index \"ipintel-3d\" + """Return vulnerability data stored in index \"ipintel-30d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` :param page: set the page number of the response :type page: int @@ -162585,7 +162500,7 @@ def index_ipintel3d_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel3d_get_serialize( + _param = self._index_ipintel30d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162638,7 +162553,7 @@ def index_ipintel3d_get( @validate_call - def index_ipintel3d_get_with_http_info( + def index_ipintel30d_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -162682,9 +162597,9 @@ def index_ipintel3d_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: - """Return vulnerability data stored in index \"ipintel-3d\" + """Return vulnerability data stored in index \"ipintel-30d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` :param page: set the page number of the response :type page: int @@ -162766,7 +162681,7 @@ def index_ipintel3d_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel3d_get_serialize( + _param = self._index_ipintel30d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162819,7 +162734,7 @@ def index_ipintel3d_get_with_http_info( @validate_call - def index_ipintel3d_get_without_preload_content( + def index_ipintel30d_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -162863,9 +162778,9 @@ def index_ipintel3d_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ipintel-3d\" + """Return vulnerability data stored in index \"ipintel-30d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-30d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 30-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-30d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-30d?cursor=` :param page: set the page number of the response :type page: int @@ -162947,7 +162862,7 @@ def index_ipintel3d_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel3d_get_serialize( + _param = self._index_ipintel30d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -162995,7 +162910,7 @@ def index_ipintel3d_get_without_preload_content( return response_data.response - def _index_ipintel3d_get_serialize( + def _index_ipintel30d_get_serialize( self, page, limit, @@ -163188,7 +163103,7 @@ def _index_ipintel3d_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ipintel-3d', + resource_path='/v3/index/ipintel-30d', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -163205,7 +163120,7 @@ def _index_ipintel3d_get_serialize( @validate_call - def index_ipintel90d_get( + def index_ipintel3d_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -163249,9 +163164,9 @@ def index_ipintel90d_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: - """Return vulnerability data stored in index \"ipintel-90d\" + """Return vulnerability data stored in index \"ipintel-3d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` :param page: set the page number of the response :type page: int @@ -163333,7 +163248,7 @@ def index_ipintel90d_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel90d_get_serialize( + _param = self._index_ipintel3d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -163386,7 +163301,7 @@ def index_ipintel90d_get( @validate_call - def index_ipintel90d_get_with_http_info( + def index_ipintel3d_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -163430,9 +163345,9 @@ def index_ipintel90d_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: - """Return vulnerability data stored in index \"ipintel-90d\" + """Return vulnerability data stored in index \"ipintel-3d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` :param page: set the page number of the response :type page: int @@ -163514,7 +163429,7 @@ def index_ipintel90d_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel90d_get_serialize( + _param = self._index_ipintel3d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -163567,7 +163482,7 @@ def index_ipintel90d_get_with_http_info( @validate_call - def index_ipintel90d_get_without_preload_content( + def index_ipintel3d_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -163611,9 +163526,9 @@ def index_ipintel90d_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ipintel-90d\" + """Return vulnerability data stored in index \"ipintel-3d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-3d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 3-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-3d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-3d?cursor=` :param page: set the page number of the response :type page: int @@ -163695,7 +163610,7 @@ def index_ipintel90d_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ipintel90d_get_serialize( + _param = self._index_ipintel3d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -163743,7 +163658,7 @@ def index_ipintel90d_get_without_preload_content( return response_data.response - def _index_ipintel90d_get_serialize( + def _index_ipintel3d_get_serialize( self, page, limit, @@ -163936,7 +163851,7 @@ def _index_ipintel90d_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ipintel-90d', + resource_path='/v3/index/ipintel-3d', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -163953,7 +163868,7 @@ def _index_ipintel90d_get_serialize( @validate_call - def index_istio_get( + def index_ipintel90d_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -163964,14 +163879,19 @@ def index_istio_get( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, - jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, - ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, + asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, + country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, + country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, + id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, + kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, + hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, + matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -163991,10 +163911,10 @@ def index_istio_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination: - """Return vulnerability data stored in index \"istio\" + ) -> RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination: + """Return vulnerability data stored in index \"ipintel-90d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` :param page: set the page number of the response :type page: int @@ -164014,10 +163934,6 @@ def index_istio_get( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str - :param jvndb: Specify a JVNDB ID to search with. - :type jvndb: str - :param ilvn: Specify an ILVN ID to search with. - :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -164028,8 +163944,22 @@ def index_istio_get( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param published: Specify a published date - :type published: str + :param cidr: Specify an IPv4 or IPv6 CIDR + :type cidr: str + :param asn: Autonomous system number + :type asn: str + :param country: Country name ISO-3166?? format + :type country: str + :param country_code: Country code in ISO-3166?? format + :type country_code: str + :param id: Record type + :type id: str + :param kind: Kind of IpIntel Finding + :type kind: str + :param hostname: Match a string in the list of hostnames + :type hostname: str + :param matches: Search for a string in the field describing the finding + :type matches: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -164066,7 +163996,7 @@ def index_istio_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_istio_get_serialize( + _param = self._index_ipintel90d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164076,14 +164006,19 @@ def index_istio_get( cve=cve, alias=alias, iava=iava, - jvndb=jvndb, - ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - published=published, + cidr=cidr, + asn=asn, + country=country, + country_code=country_code, + id=id, + kind=kind, + hostname=hostname, + matches=matches, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -164098,7 +164033,7 @@ def index_istio_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", '404': "str", '500': "str", } @@ -164114,7 +164049,7 @@ def index_istio_get( @validate_call - def index_istio_get_with_http_info( + def index_ipintel90d_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164125,14 +164060,19 @@ def index_istio_get_with_http_info( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, - jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, - ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, + asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, + country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, + country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, + id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, + kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, + hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, + matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -164152,10 +164092,10 @@ def index_istio_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination]: - """Return vulnerability data stored in index \"istio\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination]: + """Return vulnerability data stored in index \"ipintel-90d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` :param page: set the page number of the response :type page: int @@ -164175,10 +164115,6 @@ def index_istio_get_with_http_info( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str - :param jvndb: Specify a JVNDB ID to search with. - :type jvndb: str - :param ilvn: Specify an ILVN ID to search with. - :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -164189,8 +164125,22 @@ def index_istio_get_with_http_info( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param published: Specify a published date - :type published: str + :param cidr: Specify an IPv4 or IPv6 CIDR + :type cidr: str + :param asn: Autonomous system number + :type asn: str + :param country: Country name ISO-3166?? format + :type country: str + :param country_code: Country code in ISO-3166?? format + :type country_code: str + :param id: Record type + :type id: str + :param kind: Kind of IpIntel Finding + :type kind: str + :param hostname: Match a string in the list of hostnames + :type hostname: str + :param matches: Search for a string in the field describing the finding + :type matches: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -164227,7 +164177,7 @@ def index_istio_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_istio_get_serialize( + _param = self._index_ipintel90d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164237,14 +164187,19 @@ def index_istio_get_with_http_info( cve=cve, alias=alias, iava=iava, - jvndb=jvndb, - ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - published=published, + cidr=cidr, + asn=asn, + country=country, + country_code=country_code, + id=id, + kind=kind, + hostname=hostname, + matches=matches, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -164259,7 +164214,7 @@ def index_istio_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", '404': "str", '500': "str", } @@ -164275,7 +164230,7 @@ def index_istio_get_with_http_info( @validate_call - def index_istio_get_without_preload_content( + def index_ipintel90d_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164286,14 +164241,19 @@ def index_istio_get_without_preload_content( cve: Annotated[Optional[StrictStr], Field(description="Specify a CVE ID to search with.")] = None, alias: Annotated[Optional[StrictStr], Field(description="Specify a vulnerability alias to search with.")] = None, iava: Annotated[Optional[StrictStr], Field(description="Specify an IAVA ID to search with.")] = None, - jvndb: Annotated[Optional[StrictStr], Field(description="Specify a JVNDB ID to search with.")] = None, - ilvn: Annotated[Optional[StrictStr], Field(description="Specify an ILVN ID to search with.")] = None, threat_actor: Annotated[Optional[StrictStr], Field(description="Specify a threat actor name to search with.")] = None, mitre_id: Annotated[Optional[StrictStr], Field(description="Specify a MITRE ID to search with.")] = None, misp_id: Annotated[Optional[StrictStr], Field(description="Specify a MISP ID to search with.")] = None, ransomware: Annotated[Optional[StrictStr], Field(description="Specify a ransomeware family name to search with.")] = None, botnet: Annotated[Optional[StrictStr], Field(description="Specify a botnet name to search with.")] = None, - published: Annotated[Optional[StrictStr], Field(description="Specify a published date")] = None, + cidr: Annotated[Optional[StrictStr], Field(description="Specify an IPv4 or IPv6 CIDR")] = None, + asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, + country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, + country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, + id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, + kind: Annotated[Optional[StrictStr], Field(description="Kind of IpIntel Finding")] = None, + hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the list of hostnames")] = None, + matches: Annotated[Optional[StrictStr], Field(description="Search for a string in the field describing the finding")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -164314,9 +164274,9 @@ def index_istio_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"istio\" + """Return vulnerability data stored in index \"ipintel-90d\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ipintel-90d index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 90-Day IP Intelligence Index of Initial Access Targets and Command and Control Infrastructure ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ipintel-90d?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ipintel-90d?cursor=` :param page: set the page number of the response :type page: int @@ -164336,10 +164296,6 @@ def index_istio_get_without_preload_content( :type alias: str :param iava: Specify an IAVA ID to search with. :type iava: str - :param jvndb: Specify a JVNDB ID to search with. - :type jvndb: str - :param ilvn: Specify an ILVN ID to search with. - :type ilvn: str :param threat_actor: Specify a threat actor name to search with. :type threat_actor: str :param mitre_id: Specify a MITRE ID to search with. @@ -164350,8 +164306,22 @@ def index_istio_get_without_preload_content( :type ransomware: str :param botnet: Specify a botnet name to search with. :type botnet: str - :param published: Specify a published date - :type published: str + :param cidr: Specify an IPv4 or IPv6 CIDR + :type cidr: str + :param asn: Autonomous system number + :type asn: str + :param country: Country name ISO-3166?? format + :type country: str + :param country_code: Country code in ISO-3166?? format + :type country_code: str + :param id: Record type + :type id: str + :param kind: Kind of IpIntel Finding + :type kind: str + :param hostname: Match a string in the list of hostnames + :type hostname: str + :param matches: Search for a string in the field describing the finding + :type matches: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -164388,7 +164358,7 @@ def index_istio_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_istio_get_serialize( + _param = self._index_ipintel90d_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164398,14 +164368,19 @@ def index_istio_get_without_preload_content( cve=cve, alias=alias, iava=iava, - jvndb=jvndb, - ilvn=ilvn, threat_actor=threat_actor, mitre_id=mitre_id, misp_id=misp_id, ransomware=ransomware, botnet=botnet, - published=published, + cidr=cidr, + asn=asn, + country=country, + country_code=country_code, + id=id, + kind=kind, + hostname=hostname, + matches=matches, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -164420,7 +164395,7 @@ def index_istio_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIpIntelRecordPaginatePagination", '404': "str", '500': "str", } @@ -164431,7 +164406,7 @@ def index_istio_get_without_preload_content( return response_data.response - def _index_istio_get_serialize( + def _index_ipintel90d_get_serialize( self, page, limit, @@ -164442,14 +164417,19 @@ def _index_istio_get_serialize( cve, alias, iava, - jvndb, - ilvn, threat_actor, mitre_id, misp_id, ransomware, botnet, - published, + cidr, + asn, + country, + country_code, + id, + kind, + hostname, + matches, date, updated_at_start_date, updated_at_end_date, @@ -164518,14 +164498,6 @@ def _index_istio_get_serialize( _query_params.append(('iava', iava)) - if jvndb is not None: - - _query_params.append(('jvndb', jvndb)) - - if ilvn is not None: - - _query_params.append(('ilvn', ilvn)) - if threat_actor is not None: _query_params.append(('threat_actor', threat_actor)) @@ -164546,9 +164518,37 @@ def _index_istio_get_serialize( _query_params.append(('botnet', botnet)) - if published is not None: + if cidr is not None: - _query_params.append(('published', published)) + _query_params.append(('cidr', cidr)) + + if asn is not None: + + _query_params.append(('asn', asn)) + + if country is not None: + + _query_params.append(('country', country)) + + if country_code is not None: + + _query_params.append(('country_code', country_code)) + + if id is not None: + + _query_params.append(('id', id)) + + if kind is not None: + + _query_params.append(('kind', kind)) + + if hostname is not None: + + _query_params.append(('hostname', hostname)) + + if matches is not None: + + _query_params.append(('matches', matches)) if date is not None: @@ -164599,7 +164599,7 @@ def _index_istio_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/istio', + resource_path='/v3/index/ipintel-90d', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -164616,7 +164616,7 @@ def _index_istio_get_serialize( @validate_call - def index_ivanti_get( + def index_istio_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164654,10 +164654,10 @@ def index_ivanti_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination: - """Return vulnerability data stored in index \"ivanti\" + ) -> RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination: + """Return vulnerability data stored in index \"istio\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` :param page: set the page number of the response :type page: int @@ -164729,7 +164729,7 @@ def index_ivanti_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_get_serialize( + _param = self._index_istio_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164761,7 +164761,7 @@ def index_ivanti_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", '404': "str", '500': "str", } @@ -164777,7 +164777,7 @@ def index_ivanti_get( @validate_call - def index_ivanti_get_with_http_info( + def index_istio_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164815,10 +164815,10 @@ def index_ivanti_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination]: - """Return vulnerability data stored in index \"ivanti\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination]: + """Return vulnerability data stored in index \"istio\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` :param page: set the page number of the response :type page: int @@ -164890,7 +164890,7 @@ def index_ivanti_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_get_serialize( + _param = self._index_istio_get_serialize( page=page, limit=limit, cursor=cursor, @@ -164922,7 +164922,7 @@ def index_ivanti_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", '404': "str", '500': "str", } @@ -164938,7 +164938,7 @@ def index_ivanti_get_with_http_info( @validate_call - def index_ivanti_get_without_preload_content( + def index_istio_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -164977,9 +164977,9 @@ def index_ivanti_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ivanti\" + """Return vulnerability data stored in index \"istio\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the istio index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Istio Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/istio?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/istio?cursor=` :param page: set the page number of the response :type page: int @@ -165051,7 +165051,7 @@ def index_ivanti_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_get_serialize( + _param = self._index_istio_get_serialize( page=page, limit=limit, cursor=cursor, @@ -165083,7 +165083,7 @@ def index_ivanti_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIstioPaginatePagination", '404': "str", '500': "str", } @@ -165094,7 +165094,7 @@ def index_ivanti_get_without_preload_content( return response_data.response - def _index_ivanti_get_serialize( + def _index_istio_get_serialize( self, page, limit, @@ -165262,7 +165262,7 @@ def _index_ivanti_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ivanti', + resource_path='/v3/index/istio', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -165279,7 +165279,7 @@ def _index_ivanti_get_serialize( @validate_call - def index_ivanti_rss_get( + def index_ivanti_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -165317,10 +165317,10 @@ def index_ivanti_rss_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination: - """Return vulnerability data stored in index \"ivanti-rss\" + ) -> RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination: + """Return vulnerability data stored in index \"ivanti\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` :param page: set the page number of the response :type page: int @@ -165392,7 +165392,7 @@ def index_ivanti_rss_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_rss_get_serialize( + _param = self._index_ivanti_get_serialize( page=page, limit=limit, cursor=cursor, @@ -165424,7 +165424,7 @@ def index_ivanti_rss_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", '404': "str", '500': "str", } @@ -165440,7 +165440,7 @@ def index_ivanti_rss_get( @validate_call - def index_ivanti_rss_get_with_http_info( + def index_ivanti_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -165478,10 +165478,10 @@ def index_ivanti_rss_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination]: - """Return vulnerability data stored in index \"ivanti-rss\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination]: + """Return vulnerability data stored in index \"ivanti\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` :param page: set the page number of the response :type page: int @@ -165553,7 +165553,7 @@ def index_ivanti_rss_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_rss_get_serialize( + _param = self._index_ivanti_get_serialize( page=page, limit=limit, cursor=cursor, @@ -165585,7 +165585,7 @@ def index_ivanti_rss_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", '404': "str", '500': "str", } @@ -165601,7 +165601,7 @@ def index_ivanti_rss_get_with_http_info( @validate_call - def index_ivanti_rss_get_without_preload_content( + def index_ivanti_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -165640,9 +165640,9 @@ def index_ivanti_rss_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ivanti-rss\" + """Return vulnerability data stored in index \"ivanti\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti?cursor=` :param page: set the page number of the response :type page: int @@ -165714,7 +165714,7 @@ def index_ivanti_rss_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ivanti_rss_get_serialize( + _param = self._index_ivanti_get_serialize( page=page, limit=limit, cursor=cursor, @@ -165746,7 +165746,7 @@ def index_ivanti_rss_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiPaginatePagination", '404': "str", '500': "str", } @@ -165757,7 +165757,7 @@ def index_ivanti_rss_get_without_preload_content( return response_data.response - def _index_ivanti_rss_get_serialize( + def _index_ivanti_get_serialize( self, page, limit, @@ -165925,7 +165925,7 @@ def _index_ivanti_rss_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ivanti-rss', + resource_path='/v3/index/ivanti', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -165942,7 +165942,7 @@ def _index_ivanti_rss_get_serialize( @validate_call - def index_jenkins_get( + def index_ivanti_rss_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -165980,10 +165980,10 @@ def index_jenkins_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination: - """Return vulnerability data stored in index \"jenkins\" + ) -> RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination: + """Return vulnerability data stored in index \"ivanti-rss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` :param page: set the page number of the response :type page: int @@ -166055,7 +166055,7 @@ def index_jenkins_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jenkins_get_serialize( + _param = self._index_ivanti_rss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166087,7 +166087,7 @@ def index_jenkins_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", '404': "str", '500': "str", } @@ -166103,7 +166103,7 @@ def index_jenkins_get( @validate_call - def index_jenkins_get_with_http_info( + def index_ivanti_rss_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166141,10 +166141,10 @@ def index_jenkins_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination]: - """Return vulnerability data stored in index \"jenkins\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination]: + """Return vulnerability data stored in index \"ivanti-rss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` :param page: set the page number of the response :type page: int @@ -166216,7 +166216,7 @@ def index_jenkins_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jenkins_get_serialize( + _param = self._index_ivanti_rss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166248,7 +166248,7 @@ def index_jenkins_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", '404': "str", '500': "str", } @@ -166264,7 +166264,7 @@ def index_jenkins_get_with_http_info( @validate_call - def index_jenkins_get_without_preload_content( + def index_ivanti_rss_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166303,9 +166303,9 @@ def index_jenkins_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jenkins\" + """Return vulnerability data stored in index \"ivanti-rss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ivanti-rss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ivanti Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ivanti-rss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ivanti-rss?cursor=` :param page: set the page number of the response :type page: int @@ -166377,7 +166377,7 @@ def index_jenkins_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jenkins_get_serialize( + _param = self._index_ivanti_rss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166409,7 +166409,7 @@ def index_jenkins_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryIvantiRSSPaginatePagination", '404': "str", '500': "str", } @@ -166420,7 +166420,7 @@ def index_jenkins_get_without_preload_content( return response_data.response - def _index_jenkins_get_serialize( + def _index_ivanti_rss_get_serialize( self, page, limit, @@ -166588,7 +166588,7 @@ def _index_jenkins_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jenkins', + resource_path='/v3/index/ivanti-rss', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -166605,7 +166605,7 @@ def _index_jenkins_get_serialize( @validate_call - def index_jetbrains_get( + def index_jenkins_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166643,10 +166643,10 @@ def index_jetbrains_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination: - """Return vulnerability data stored in index \"jetbrains\" + ) -> RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination: + """Return vulnerability data stored in index \"jenkins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` :param page: set the page number of the response :type page: int @@ -166718,7 +166718,7 @@ def index_jetbrains_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jetbrains_get_serialize( + _param = self._index_jenkins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166750,7 +166750,7 @@ def index_jetbrains_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", '404': "str", '500': "str", } @@ -166766,7 +166766,7 @@ def index_jetbrains_get( @validate_call - def index_jetbrains_get_with_http_info( + def index_jenkins_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166804,10 +166804,10 @@ def index_jetbrains_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination]: - """Return vulnerability data stored in index \"jetbrains\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination]: + """Return vulnerability data stored in index \"jenkins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` :param page: set the page number of the response :type page: int @@ -166879,7 +166879,7 @@ def index_jetbrains_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jetbrains_get_serialize( + _param = self._index_jenkins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -166911,7 +166911,7 @@ def index_jetbrains_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", '404': "str", '500': "str", } @@ -166927,7 +166927,7 @@ def index_jetbrains_get_with_http_info( @validate_call - def index_jetbrains_get_without_preload_content( + def index_jenkins_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -166966,9 +166966,9 @@ def index_jetbrains_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jetbrains\" + """Return vulnerability data stored in index \"jenkins\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jenkins index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Jenkins Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jenkins?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jenkins?cursor=` :param page: set the page number of the response :type page: int @@ -167040,7 +167040,7 @@ def index_jetbrains_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jetbrains_get_serialize( + _param = self._index_jenkins_get_serialize( page=page, limit=limit, cursor=cursor, @@ -167072,7 +167072,7 @@ def index_jetbrains_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJenkinsPaginatePagination", '404': "str", '500': "str", } @@ -167083,7 +167083,7 @@ def index_jetbrains_get_without_preload_content( return response_data.response - def _index_jetbrains_get_serialize( + def _index_jenkins_get_serialize( self, page, limit, @@ -167251,7 +167251,7 @@ def _index_jetbrains_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jetbrains', + resource_path='/v3/index/jenkins', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -167268,7 +167268,7 @@ def _index_jetbrains_get_serialize( @validate_call - def index_jfrog_get( + def index_jetbrains_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -167306,10 +167306,10 @@ def index_jfrog_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination: - """Return vulnerability data stored in index \"jfrog\" + ) -> RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination: + """Return vulnerability data stored in index \"jetbrains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` :param page: set the page number of the response :type page: int @@ -167381,7 +167381,7 @@ def index_jfrog_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jfrog_get_serialize( + _param = self._index_jetbrains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -167413,7 +167413,7 @@ def index_jfrog_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", '404': "str", '500': "str", } @@ -167429,7 +167429,7 @@ def index_jfrog_get( @validate_call - def index_jfrog_get_with_http_info( + def index_jetbrains_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -167467,10 +167467,10 @@ def index_jfrog_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination]: - """Return vulnerability data stored in index \"jfrog\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination]: + """Return vulnerability data stored in index \"jetbrains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` :param page: set the page number of the response :type page: int @@ -167542,7 +167542,7 @@ def index_jfrog_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jfrog_get_serialize( + _param = self._index_jetbrains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -167574,7 +167574,7 @@ def index_jfrog_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", '404': "str", '500': "str", } @@ -167590,7 +167590,7 @@ def index_jfrog_get_with_http_info( @validate_call - def index_jfrog_get_without_preload_content( + def index_jetbrains_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -167629,9 +167629,9 @@ def index_jfrog_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jfrog\" + """Return vulnerability data stored in index \"jetbrains\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jetbrains index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JetBrains Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jetbrains?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jetbrains?cursor=` :param page: set the page number of the response :type page: int @@ -167703,7 +167703,7 @@ def index_jfrog_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jfrog_get_serialize( + _param = self._index_jetbrains_get_serialize( page=page, limit=limit, cursor=cursor, @@ -167735,7 +167735,7 @@ def index_jfrog_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJetBrainsPaginatePagination", '404': "str", '500': "str", } @@ -167746,7 +167746,7 @@ def index_jfrog_get_without_preload_content( return response_data.response - def _index_jfrog_get_serialize( + def _index_jetbrains_get_serialize( self, page, limit, @@ -167914,7 +167914,7 @@ def _index_jfrog_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jfrog', + resource_path='/v3/index/jetbrains', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -167931,7 +167931,7 @@ def _index_jfrog_get_serialize( @validate_call - def index_jnj_get( + def index_jfrog_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -167969,10 +167969,10 @@ def index_jnj_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"jnj\" + ) -> RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination: + """Return vulnerability data stored in index \"jfrog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` :param page: set the page number of the response :type page: int @@ -168044,7 +168044,7 @@ def index_jnj_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jnj_get_serialize( + _param = self._index_jfrog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168076,7 +168076,7 @@ def index_jnj_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", '404': "str", '500': "str", } @@ -168092,7 +168092,7 @@ def index_jnj_get( @validate_call - def index_jnj_get_with_http_info( + def index_jfrog_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168130,10 +168130,10 @@ def index_jnj_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"jnj\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination]: + """Return vulnerability data stored in index \"jfrog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` :param page: set the page number of the response :type page: int @@ -168205,7 +168205,7 @@ def index_jnj_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jnj_get_serialize( + _param = self._index_jfrog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168237,7 +168237,7 @@ def index_jnj_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", '404': "str", '500': "str", } @@ -168253,7 +168253,7 @@ def index_jnj_get_with_http_info( @validate_call - def index_jnj_get_without_preload_content( + def index_jfrog_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168292,9 +168292,9 @@ def index_jnj_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jnj\" + """Return vulnerability data stored in index \"jfrog\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jfrog index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** JFrog Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jfrog?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jfrog?cursor=` :param page: set the page number of the response :type page: int @@ -168366,7 +168366,7 @@ def index_jnj_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jnj_get_serialize( + _param = self._index_jfrog_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168398,7 +168398,7 @@ def index_jnj_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJFrogPaginatePagination", '404': "str", '500': "str", } @@ -168409,7 +168409,7 @@ def index_jnj_get_without_preload_content( return response_data.response - def _index_jnj_get_serialize( + def _index_jfrog_get_serialize( self, page, limit, @@ -168577,7 +168577,7 @@ def _index_jnj_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jnj', + resource_path='/v3/index/jfrog', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -168594,7 +168594,7 @@ def _index_jnj_get_serialize( @validate_call - def index_johnson_controls_get( + def index_jnj_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168632,10 +168632,10 @@ def index_johnson_controls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination: - """Return vulnerability data stored in index \"johnson-controls\" + ) -> RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"jnj\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` :param page: set the page number of the response :type page: int @@ -168707,7 +168707,7 @@ def index_johnson_controls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_johnson_controls_get_serialize( + _param = self._index_jnj_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168739,7 +168739,7 @@ def index_johnson_controls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -168755,7 +168755,7 @@ def index_johnson_controls_get( @validate_call - def index_johnson_controls_get_with_http_info( + def index_jnj_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168793,10 +168793,10 @@ def index_johnson_controls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination]: - """Return vulnerability data stored in index \"johnson-controls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"jnj\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` :param page: set the page number of the response :type page: int @@ -168868,7 +168868,7 @@ def index_johnson_controls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_johnson_controls_get_serialize( + _param = self._index_jnj_get_serialize( page=page, limit=limit, cursor=cursor, @@ -168900,7 +168900,7 @@ def index_johnson_controls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -168916,7 +168916,7 @@ def index_johnson_controls_get_with_http_info( @validate_call - def index_johnson_controls_get_without_preload_content( + def index_jnj_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -168955,9 +168955,9 @@ def index_johnson_controls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"johnson-controls\" + """Return vulnerability data stored in index \"jnj\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jnj index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Johnson & Johnson Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jnj?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jnj?cursor=` :param page: set the page number of the response :type page: int @@ -169029,7 +169029,7 @@ def index_johnson_controls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_johnson_controls_get_serialize( + _param = self._index_jnj_get_serialize( page=page, limit=limit, cursor=cursor, @@ -169061,7 +169061,7 @@ def index_johnson_controls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJNJAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -169072,7 +169072,7 @@ def index_johnson_controls_get_without_preload_content( return response_data.response - def _index_johnson_controls_get_serialize( + def _index_jnj_get_serialize( self, page, limit, @@ -169240,7 +169240,7 @@ def _index_johnson_controls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/johnson-controls', + resource_path='/v3/index/jnj', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -169257,7 +169257,7 @@ def _index_johnson_controls_get_serialize( @validate_call - def index_juniper_get( + def index_johnson_controls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -169295,10 +169295,10 @@ def index_juniper_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination: - """Return vulnerability data stored in index \"juniper\" + ) -> RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination: + """Return vulnerability data stored in index \"johnson-controls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` :param page: set the page number of the response :type page: int @@ -169370,7 +169370,7 @@ def index_juniper_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_juniper_get_serialize( + _param = self._index_johnson_controls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -169402,7 +169402,7 @@ def index_juniper_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", '404': "str", '500': "str", } @@ -169418,7 +169418,7 @@ def index_juniper_get( @validate_call - def index_juniper_get_with_http_info( + def index_johnson_controls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -169456,10 +169456,10 @@ def index_juniper_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination]: - """Return vulnerability data stored in index \"juniper\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination]: + """Return vulnerability data stored in index \"johnson-controls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` :param page: set the page number of the response :type page: int @@ -169531,7 +169531,7 @@ def index_juniper_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_juniper_get_serialize( + _param = self._index_johnson_controls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -169563,7 +169563,7 @@ def index_juniper_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", '404': "str", '500': "str", } @@ -169579,7 +169579,7 @@ def index_juniper_get_with_http_info( @validate_call - def index_juniper_get_without_preload_content( + def index_johnson_controls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -169618,9 +169618,9 @@ def index_juniper_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"juniper\" + """Return vulnerability data stored in index \"johnson-controls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the johnson-controls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Advisories - Johnson Controls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/johnson-controls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/johnson-controls?cursor=` :param page: set the page number of the response :type page: int @@ -169692,7 +169692,7 @@ def index_juniper_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_juniper_get_serialize( + _param = self._index_johnson_controls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -169724,7 +169724,7 @@ def index_juniper_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJohnsonControlsPaginatePagination", '404': "str", '500': "str", } @@ -169735,7 +169735,7 @@ def index_juniper_get_without_preload_content( return response_data.response - def _index_juniper_get_serialize( + def _index_johnson_controls_get_serialize( self, page, limit, @@ -169903,7 +169903,7 @@ def _index_juniper_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/juniper', + resource_path='/v3/index/johnson-controls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -169920,7 +169920,7 @@ def _index_juniper_get_serialize( @validate_call - def index_jvn_get( + def index_juniper_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -169958,10 +169958,10 @@ def index_jvn_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination: - """Return vulnerability data stored in index \"jvn\" + ) -> RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination: + """Return vulnerability data stored in index \"juniper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` :param page: set the page number of the response :type page: int @@ -170033,7 +170033,7 @@ def index_jvn_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvn_get_serialize( + _param = self._index_juniper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170065,7 +170065,7 @@ def index_jvn_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", '404': "str", '500': "str", } @@ -170081,7 +170081,7 @@ def index_jvn_get( @validate_call - def index_jvn_get_with_http_info( + def index_juniper_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170119,10 +170119,10 @@ def index_jvn_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination]: - """Return vulnerability data stored in index \"jvn\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination]: + """Return vulnerability data stored in index \"juniper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` :param page: set the page number of the response :type page: int @@ -170194,7 +170194,7 @@ def index_jvn_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvn_get_serialize( + _param = self._index_juniper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170226,7 +170226,7 @@ def index_jvn_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", '404': "str", '500': "str", } @@ -170242,7 +170242,7 @@ def index_jvn_get_with_http_info( @validate_call - def index_jvn_get_without_preload_content( + def index_juniper_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170281,9 +170281,9 @@ def index_jvn_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jvn\" + """Return vulnerability data stored in index \"juniper\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the juniper index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Juniper Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/juniper?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/juniper?cursor=` :param page: set the page number of the response :type page: int @@ -170355,7 +170355,7 @@ def index_jvn_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvn_get_serialize( + _param = self._index_juniper_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170387,7 +170387,7 @@ def index_jvn_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJuniperPaginatePagination", '404': "str", '500': "str", } @@ -170398,7 +170398,7 @@ def index_jvn_get_without_preload_content( return response_data.response - def _index_jvn_get_serialize( + def _index_juniper_get_serialize( self, page, limit, @@ -170566,7 +170566,7 @@ def _index_jvn_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jvn', + resource_path='/v3/index/juniper', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -170583,7 +170583,7 @@ def _index_jvn_get_serialize( @validate_call - def index_jvndb_get( + def index_jvn_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170621,10 +170621,10 @@ def index_jvndb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination: - """Return vulnerability data stored in index \"jvndb\" + ) -> RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination: + """Return vulnerability data stored in index \"jvn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` :param page: set the page number of the response :type page: int @@ -170696,7 +170696,7 @@ def index_jvndb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvndb_get_serialize( + _param = self._index_jvn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170728,7 +170728,7 @@ def index_jvndb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", '404': "str", '500': "str", } @@ -170744,7 +170744,7 @@ def index_jvndb_get( @validate_call - def index_jvndb_get_with_http_info( + def index_jvn_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170782,10 +170782,10 @@ def index_jvndb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination]: - """Return vulnerability data stored in index \"jvndb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination]: + """Return vulnerability data stored in index \"jvn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` :param page: set the page number of the response :type page: int @@ -170857,7 +170857,7 @@ def index_jvndb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvndb_get_serialize( + _param = self._index_jvn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -170889,7 +170889,7 @@ def index_jvndb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", '404': "str", '500': "str", } @@ -170905,7 +170905,7 @@ def index_jvndb_get_with_http_info( @validate_call - def index_jvndb_get_without_preload_content( + def index_jvn_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -170944,9 +170944,9 @@ def index_jvndb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"jvndb\" + """Return vulnerability data stored in index \"jvn\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvn index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvn?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvn?cursor=` :param page: set the page number of the response :type page: int @@ -171018,7 +171018,7 @@ def index_jvndb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_jvndb_get_serialize( + _param = self._index_jvn_get_serialize( page=page, limit=limit, cursor=cursor, @@ -171050,7 +171050,7 @@ def index_jvndb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNPaginatePagination", '404': "str", '500': "str", } @@ -171061,7 +171061,7 @@ def index_jvndb_get_without_preload_content( return response_data.response - def _index_jvndb_get_serialize( + def _index_jvn_get_serialize( self, page, limit, @@ -171229,7 +171229,7 @@ def _index_jvndb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/jvndb', + resource_path='/v3/index/jvn', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -171246,7 +171246,7 @@ def _index_jvndb_get_serialize( @validate_call - def index_kaspersky_ics_cert_get( + def index_jvndb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -171284,10 +171284,10 @@ def index_kaspersky_ics_cert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"kaspersky-ics-cert\" + ) -> RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination: + """Return vulnerability data stored in index \"jvndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` :param page: set the page number of the response :type page: int @@ -171359,7 +171359,7 @@ def index_kaspersky_ics_cert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kaspersky_ics_cert_get_serialize( + _param = self._index_jvndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -171391,7 +171391,7 @@ def index_kaspersky_ics_cert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", '404': "str", '500': "str", } @@ -171407,7 +171407,7 @@ def index_kaspersky_ics_cert_get( @validate_call - def index_kaspersky_ics_cert_get_with_http_info( + def index_jvndb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -171445,10 +171445,10 @@ def index_kaspersky_ics_cert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"kaspersky-ics-cert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination]: + """Return vulnerability data stored in index \"jvndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` :param page: set the page number of the response :type page: int @@ -171520,7 +171520,7 @@ def index_kaspersky_ics_cert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kaspersky_ics_cert_get_serialize( + _param = self._index_jvndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -171552,7 +171552,7 @@ def index_kaspersky_ics_cert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", '404': "str", '500': "str", } @@ -171568,7 +171568,7 @@ def index_kaspersky_ics_cert_get_with_http_info( @validate_call - def index_kaspersky_ics_cert_get_without_preload_content( + def index_jvndb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -171607,9 +171607,9 @@ def index_kaspersky_ics_cert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"kaspersky-ics-cert\" + """Return vulnerability data stored in index \"jvndb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the jvndb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Japan Vulnerability Notes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/jvndb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/jvndb?cursor=` :param page: set the page number of the response :type page: int @@ -171681,7 +171681,7 @@ def index_kaspersky_ics_cert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kaspersky_ics_cert_get_serialize( + _param = self._index_jvndb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -171713,7 +171713,7 @@ def index_kaspersky_ics_cert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryJVNAdvisoryItemPaginatePagination", '404': "str", '500': "str", } @@ -171724,7 +171724,7 @@ def index_kaspersky_ics_cert_get_without_preload_content( return response_data.response - def _index_kaspersky_ics_cert_get_serialize( + def _index_jvndb_get_serialize( self, page, limit, @@ -171892,7 +171892,7 @@ def _index_kaspersky_ics_cert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/kaspersky-ics-cert', + resource_path='/v3/index/jvndb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -171909,7 +171909,7 @@ def _index_kaspersky_ics_cert_get_serialize( @validate_call - def index_korelogic_get( + def index_kaspersky_ics_cert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -171947,10 +171947,10 @@ def index_korelogic_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination: - """Return vulnerability data stored in index \"korelogic\" + ) -> RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"kaspersky-ics-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` :param page: set the page number of the response :type page: int @@ -172022,7 +172022,7 @@ def index_korelogic_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_korelogic_get_serialize( + _param = self._index_kaspersky_ics_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172054,7 +172054,7 @@ def index_korelogic_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -172070,7 +172070,7 @@ def index_korelogic_get( @validate_call - def index_korelogic_get_with_http_info( + def index_kaspersky_ics_cert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172108,10 +172108,10 @@ def index_korelogic_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination]: - """Return vulnerability data stored in index \"korelogic\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"kaspersky-ics-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` :param page: set the page number of the response :type page: int @@ -172183,7 +172183,7 @@ def index_korelogic_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_korelogic_get_serialize( + _param = self._index_kaspersky_ics_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172215,7 +172215,7 @@ def index_korelogic_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -172231,7 +172231,7 @@ def index_korelogic_get_with_http_info( @validate_call - def index_korelogic_get_without_preload_content( + def index_kaspersky_ics_cert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172270,9 +172270,9 @@ def index_korelogic_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"korelogic\" + """Return vulnerability data stored in index \"kaspersky-ics-cert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kaspersky-ics-cert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kaspersky ICS CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kaspersky-ics-cert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kaspersky-ics-cert?cursor=` :param page: set the page number of the response :type page: int @@ -172344,7 +172344,7 @@ def index_korelogic_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_korelogic_get_serialize( + _param = self._index_kaspersky_ics_cert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172376,7 +172376,7 @@ def index_korelogic_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKasperskyICSCERTAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -172387,7 +172387,7 @@ def index_korelogic_get_without_preload_content( return response_data.response - def _index_korelogic_get_serialize( + def _index_kaspersky_ics_cert_get_serialize( self, page, limit, @@ -172555,7 +172555,7 @@ def _index_korelogic_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/korelogic', + resource_path='/v3/index/kaspersky-ics-cert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -172572,7 +172572,7 @@ def _index_korelogic_get_serialize( @validate_call - def index_krcert_security_notices_get( + def index_korelogic_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172610,10 +172610,10 @@ def index_krcert_security_notices_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"krcert-security-notices\" + ) -> RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination: + """Return vulnerability data stored in index \"korelogic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` :param page: set the page number of the response :type page: int @@ -172685,7 +172685,7 @@ def index_krcert_security_notices_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_security_notices_get_serialize( + _param = self._index_korelogic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172717,7 +172717,7 @@ def index_krcert_security_notices_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", '404': "str", '500': "str", } @@ -172733,7 +172733,7 @@ def index_krcert_security_notices_get( @validate_call - def index_krcert_security_notices_get_with_http_info( + def index_korelogic_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172771,10 +172771,10 @@ def index_krcert_security_notices_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"krcert-security-notices\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination]: + """Return vulnerability data stored in index \"korelogic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` :param page: set the page number of the response :type page: int @@ -172846,7 +172846,7 @@ def index_krcert_security_notices_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_security_notices_get_serialize( + _param = self._index_korelogic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -172878,7 +172878,7 @@ def index_krcert_security_notices_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", '404': "str", '500': "str", } @@ -172894,7 +172894,7 @@ def index_krcert_security_notices_get_with_http_info( @validate_call - def index_krcert_security_notices_get_without_preload_content( + def index_korelogic_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -172933,9 +172933,9 @@ def index_krcert_security_notices_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"krcert-security-notices\" + """Return vulnerability data stored in index \"korelogic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the korelogic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KoreLogic Vulnerability Research and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/korelogic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/korelogic?cursor=` :param page: set the page number of the response :type page: int @@ -173007,7 +173007,7 @@ def index_krcert_security_notices_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_security_notices_get_serialize( + _param = self._index_korelogic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -173039,7 +173039,7 @@ def index_krcert_security_notices_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKoreLogicPaginatePagination", '404': "str", '500': "str", } @@ -173050,7 +173050,7 @@ def index_krcert_security_notices_get_without_preload_content( return response_data.response - def _index_krcert_security_notices_get_serialize( + def _index_korelogic_get_serialize( self, page, limit, @@ -173218,7 +173218,7 @@ def _index_krcert_security_notices_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/krcert-security-notices', + resource_path='/v3/index/korelogic', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -173235,7 +173235,7 @@ def _index_krcert_security_notices_get_serialize( @validate_call - def index_krcert_vulnerabilities_get( + def index_krcert_security_notices_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -173274,9 +173274,9 @@ def index_krcert_vulnerabilities_get( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"krcert-vulnerabilities\" + """Return vulnerability data stored in index \"krcert-security-notices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` :param page: set the page number of the response :type page: int @@ -173348,7 +173348,7 @@ def index_krcert_vulnerabilities_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_vulnerabilities_get_serialize( + _param = self._index_krcert_security_notices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -173396,7 +173396,7 @@ def index_krcert_vulnerabilities_get( @validate_call - def index_krcert_vulnerabilities_get_with_http_info( + def index_krcert_security_notices_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -173435,9 +173435,9 @@ def index_krcert_vulnerabilities_get_with_http_info( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"krcert-vulnerabilities\" + """Return vulnerability data stored in index \"krcert-security-notices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` :param page: set the page number of the response :type page: int @@ -173509,7 +173509,7 @@ def index_krcert_vulnerabilities_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_vulnerabilities_get_serialize( + _param = self._index_krcert_security_notices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -173557,7 +173557,7 @@ def index_krcert_vulnerabilities_get_with_http_info( @validate_call - def index_krcert_vulnerabilities_get_without_preload_content( + def index_krcert_security_notices_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -173596,9 +173596,9 @@ def index_krcert_vulnerabilities_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"krcert-vulnerabilities\" + """Return vulnerability data stored in index \"krcert-security-notices\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-security-notices index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-security-notices?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-security-notices?cursor=` :param page: set the page number of the response :type page: int @@ -173670,7 +173670,7 @@ def index_krcert_vulnerabilities_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_krcert_vulnerabilities_get_serialize( + _param = self._index_krcert_security_notices_get_serialize( page=page, limit=limit, cursor=cursor, @@ -173713,7 +173713,7 @@ def index_krcert_vulnerabilities_get_without_preload_content( return response_data.response - def _index_krcert_vulnerabilities_get_serialize( + def _index_krcert_security_notices_get_serialize( self, page, limit, @@ -173881,7 +173881,7 @@ def _index_krcert_vulnerabilities_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/krcert-vulnerabilities', + resource_path='/v3/index/krcert-security-notices', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -173898,7 +173898,7 @@ def _index_krcert_vulnerabilities_get_serialize( @validate_call - def index_kubernetes_get( + def index_krcert_vulnerabilities_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -173936,10 +173936,10 @@ def index_kubernetes_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination: - """Return vulnerability data stored in index \"kubernetes\" + ) -> RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"krcert-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -174011,7 +174011,7 @@ def index_kubernetes_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kubernetes_get_serialize( + _param = self._index_krcert_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174043,7 +174043,7 @@ def index_kubernetes_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -174059,7 +174059,7 @@ def index_kubernetes_get( @validate_call - def index_kubernetes_get_with_http_info( + def index_krcert_vulnerabilities_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174097,10 +174097,10 @@ def index_kubernetes_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination]: - """Return vulnerability data stored in index \"kubernetes\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"krcert-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -174172,7 +174172,7 @@ def index_kubernetes_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kubernetes_get_serialize( + _param = self._index_krcert_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174204,7 +174204,7 @@ def index_kubernetes_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -174220,7 +174220,7 @@ def index_kubernetes_get_with_http_info( @validate_call - def index_kubernetes_get_without_preload_content( + def index_krcert_vulnerabilities_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174259,9 +174259,9 @@ def index_kubernetes_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"kubernetes\" + """Return vulnerability data stored in index \"krcert-vulnerabilities\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the krcert-vulnerabilities index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KR-CERT Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/krcert-vulnerabilities?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/krcert-vulnerabilities?cursor=` :param page: set the page number of the response :type page: int @@ -174333,7 +174333,7 @@ def index_kubernetes_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kubernetes_get_serialize( + _param = self._index_krcert_vulnerabilities_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174365,7 +174365,7 @@ def index_kubernetes_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKRCertAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -174376,7 +174376,7 @@ def index_kubernetes_get_without_preload_content( return response_data.response - def _index_kubernetes_get_serialize( + def _index_krcert_vulnerabilities_get_serialize( self, page, limit, @@ -174544,7 +174544,7 @@ def _index_kubernetes_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/kubernetes', + resource_path='/v3/index/krcert-vulnerabilities', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -174561,7 +174561,7 @@ def _index_kubernetes_get_serialize( @validate_call - def index_kunbus_get( + def index_kubernetes_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174599,10 +174599,10 @@ def index_kunbus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination: - """Return vulnerability data stored in index \"kunbus\" + ) -> RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination: + """Return vulnerability data stored in index \"kubernetes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` :param page: set the page number of the response :type page: int @@ -174674,7 +174674,7 @@ def index_kunbus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kunbus_get_serialize( + _param = self._index_kubernetes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174706,7 +174706,7 @@ def index_kunbus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", '404': "str", '500': "str", } @@ -174722,7 +174722,7 @@ def index_kunbus_get( @validate_call - def index_kunbus_get_with_http_info( + def index_kubernetes_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174760,10 +174760,10 @@ def index_kunbus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination]: - """Return vulnerability data stored in index \"kunbus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination]: + """Return vulnerability data stored in index \"kubernetes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` :param page: set the page number of the response :type page: int @@ -174835,7 +174835,7 @@ def index_kunbus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kunbus_get_serialize( + _param = self._index_kubernetes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -174867,7 +174867,7 @@ def index_kunbus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", '404': "str", '500': "str", } @@ -174883,7 +174883,7 @@ def index_kunbus_get_with_http_info( @validate_call - def index_kunbus_get_without_preload_content( + def index_kubernetes_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -174922,9 +174922,9 @@ def index_kunbus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"kunbus\" + """Return vulnerability data stored in index \"kubernetes\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kubernetes index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Kubernetes Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kubernetes?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kubernetes?cursor=` :param page: set the page number of the response :type page: int @@ -174996,7 +174996,7 @@ def index_kunbus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_kunbus_get_serialize( + _param = self._index_kubernetes_get_serialize( page=page, limit=limit, cursor=cursor, @@ -175028,7 +175028,7 @@ def index_kunbus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryK8SPaginatePagination", '404': "str", '500': "str", } @@ -175039,7 +175039,7 @@ def index_kunbus_get_without_preload_content( return response_data.response - def _index_kunbus_get_serialize( + def _index_kubernetes_get_serialize( self, page, limit, @@ -175207,7 +175207,7 @@ def _index_kunbus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/kunbus', + resource_path='/v3/index/kubernetes', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -175224,7 +175224,7 @@ def _index_kunbus_get_serialize( @validate_call - def index_lantronix_get( + def index_kunbus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -175262,10 +175262,10 @@ def index_lantronix_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination: - """Return vulnerability data stored in index \"lantronix\" + ) -> RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination: + """Return vulnerability data stored in index \"kunbus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` :param page: set the page number of the response :type page: int @@ -175337,7 +175337,7 @@ def index_lantronix_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lantronix_get_serialize( + _param = self._index_kunbus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -175369,7 +175369,7 @@ def index_lantronix_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", '404': "str", '500': "str", } @@ -175385,7 +175385,7 @@ def index_lantronix_get( @validate_call - def index_lantronix_get_with_http_info( + def index_kunbus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -175423,10 +175423,10 @@ def index_lantronix_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination]: - """Return vulnerability data stored in index \"lantronix\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination]: + """Return vulnerability data stored in index \"kunbus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` :param page: set the page number of the response :type page: int @@ -175498,7 +175498,7 @@ def index_lantronix_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lantronix_get_serialize( + _param = self._index_kunbus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -175530,7 +175530,7 @@ def index_lantronix_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", '404': "str", '500': "str", } @@ -175546,7 +175546,7 @@ def index_lantronix_get_with_http_info( @validate_call - def index_lantronix_get_without_preload_content( + def index_kunbus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -175585,9 +175585,9 @@ def index_lantronix_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lantronix\" + """Return vulnerability data stored in index \"kunbus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the kunbus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** KunBus Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/kunbus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/kunbus?cursor=` :param page: set the page number of the response :type page: int @@ -175659,7 +175659,7 @@ def index_lantronix_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lantronix_get_serialize( + _param = self._index_kunbus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -175691,7 +175691,7 @@ def index_lantronix_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryKunbusPaginatePagination", '404': "str", '500': "str", } @@ -175702,7 +175702,7 @@ def index_lantronix_get_without_preload_content( return response_data.response - def _index_lantronix_get_serialize( + def _index_kunbus_get_serialize( self, page, limit, @@ -175870,7 +175870,7 @@ def _index_lantronix_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lantronix', + resource_path='/v3/index/kunbus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -175887,7 +175887,7 @@ def _index_lantronix_get_serialize( @validate_call - def index_lenovo_get( + def index_lantronix_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -175925,10 +175925,10 @@ def index_lenovo_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination: - """Return vulnerability data stored in index \"lenovo\" + ) -> RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination: + """Return vulnerability data stored in index \"lantronix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` :param page: set the page number of the response :type page: int @@ -176000,7 +176000,7 @@ def index_lenovo_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lenovo_get_serialize( + _param = self._index_lantronix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176032,7 +176032,7 @@ def index_lenovo_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", '404': "str", '500': "str", } @@ -176048,7 +176048,7 @@ def index_lenovo_get( @validate_call - def index_lenovo_get_with_http_info( + def index_lantronix_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176086,10 +176086,10 @@ def index_lenovo_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination]: - """Return vulnerability data stored in index \"lenovo\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination]: + """Return vulnerability data stored in index \"lantronix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` :param page: set the page number of the response :type page: int @@ -176161,7 +176161,7 @@ def index_lenovo_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lenovo_get_serialize( + _param = self._index_lantronix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176193,7 +176193,7 @@ def index_lenovo_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", '404': "str", '500': "str", } @@ -176209,7 +176209,7 @@ def index_lenovo_get_with_http_info( @validate_call - def index_lenovo_get_without_preload_content( + def index_lantronix_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176248,9 +176248,9 @@ def index_lenovo_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lenovo\" + """Return vulnerability data stored in index \"lantronix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lantronix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lantronix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lantronix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lantronix?cursor=` :param page: set the page number of the response :type page: int @@ -176322,7 +176322,7 @@ def index_lenovo_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lenovo_get_serialize( + _param = self._index_lantronix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176354,7 +176354,7 @@ def index_lenovo_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLantronixPaginatePagination", '404': "str", '500': "str", } @@ -176365,7 +176365,7 @@ def index_lenovo_get_without_preload_content( return response_data.response - def _index_lenovo_get_serialize( + def _index_lantronix_get_serialize( self, page, limit, @@ -176533,7 +176533,7 @@ def _index_lenovo_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lenovo', + resource_path='/v3/index/lantronix', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -176550,7 +176550,7 @@ def _index_lenovo_get_serialize( @validate_call - def index_lexmark_get( + def index_lenovo_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176588,10 +176588,10 @@ def index_lexmark_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"lexmark\" + ) -> RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination: + """Return vulnerability data stored in index \"lenovo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` :param page: set the page number of the response :type page: int @@ -176663,7 +176663,7 @@ def index_lexmark_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lexmark_get_serialize( + _param = self._index_lenovo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176695,7 +176695,7 @@ def index_lexmark_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", '404': "str", '500': "str", } @@ -176711,7 +176711,7 @@ def index_lexmark_get( @validate_call - def index_lexmark_get_with_http_info( + def index_lenovo_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176749,10 +176749,10 @@ def index_lexmark_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"lexmark\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination]: + """Return vulnerability data stored in index \"lenovo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` :param page: set the page number of the response :type page: int @@ -176824,7 +176824,7 @@ def index_lexmark_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lexmark_get_serialize( + _param = self._index_lenovo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -176856,7 +176856,7 @@ def index_lexmark_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", '404': "str", '500': "str", } @@ -176872,7 +176872,7 @@ def index_lexmark_get_with_http_info( @validate_call - def index_lexmark_get_without_preload_content( + def index_lenovo_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -176911,9 +176911,9 @@ def index_lexmark_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lexmark\" + """Return vulnerability data stored in index \"lenovo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lenovo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lenovo Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lenovo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lenovo?cursor=` :param page: set the page number of the response :type page: int @@ -176985,7 +176985,7 @@ def index_lexmark_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lexmark_get_serialize( + _param = self._index_lenovo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -177017,7 +177017,7 @@ def index_lexmark_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLenovoPaginatePagination", '404': "str", '500': "str", } @@ -177028,7 +177028,7 @@ def index_lexmark_get_without_preload_content( return response_data.response - def _index_lexmark_get_serialize( + def _index_lenovo_get_serialize( self, page, limit, @@ -177196,7 +177196,7 @@ def _index_lexmark_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lexmark', + resource_path='/v3/index/lenovo', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -177213,7 +177213,7 @@ def _index_lexmark_get_serialize( @validate_call - def index_lg_get( + def index_lexmark_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -177251,10 +177251,10 @@ def index_lg_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination: - """Return vulnerability data stored in index \"lg\" + ) -> RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"lexmark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` :param page: set the page number of the response :type page: int @@ -177326,7 +177326,7 @@ def index_lg_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lg_get_serialize( + _param = self._index_lexmark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -177358,7 +177358,7 @@ def index_lg_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -177374,7 +177374,7 @@ def index_lg_get( @validate_call - def index_lg_get_with_http_info( + def index_lexmark_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -177412,10 +177412,10 @@ def index_lg_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination]: - """Return vulnerability data stored in index \"lg\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"lexmark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` :param page: set the page number of the response :type page: int @@ -177487,7 +177487,7 @@ def index_lg_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lg_get_serialize( + _param = self._index_lexmark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -177519,7 +177519,7 @@ def index_lg_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -177535,7 +177535,7 @@ def index_lg_get_with_http_info( @validate_call - def index_lg_get_without_preload_content( + def index_lexmark_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -177574,9 +177574,9 @@ def index_lg_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lg\" + """Return vulnerability data stored in index \"lexmark\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lexmark index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Lexmark Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lexmark?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lexmark?cursor=` :param page: set the page number of the response :type page: int @@ -177648,7 +177648,7 @@ def index_lg_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lg_get_serialize( + _param = self._index_lexmark_get_serialize( page=page, limit=limit, cursor=cursor, @@ -177680,7 +177680,7 @@ def index_lg_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLexmarkAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -177691,7 +177691,7 @@ def index_lg_get_without_preload_content( return response_data.response - def _index_lg_get_serialize( + def _index_lexmark_get_serialize( self, page, limit, @@ -177859,7 +177859,7 @@ def _index_lg_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lg', + resource_path='/v3/index/lexmark', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -177876,7 +177876,7 @@ def _index_lg_get_serialize( @validate_call - def index_libre_office_get( + def index_lg_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -177914,10 +177914,10 @@ def index_libre_office_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination: - """Return vulnerability data stored in index \"libre-office\" + ) -> RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination: + """Return vulnerability data stored in index \"lg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` :param page: set the page number of the response :type page: int @@ -177989,7 +177989,7 @@ def index_libre_office_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_libre_office_get_serialize( + _param = self._index_lg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178021,7 +178021,7 @@ def index_libre_office_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", '404': "str", '500': "str", } @@ -178037,7 +178037,7 @@ def index_libre_office_get( @validate_call - def index_libre_office_get_with_http_info( + def index_lg_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178075,10 +178075,10 @@ def index_libre_office_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination]: - """Return vulnerability data stored in index \"libre-office\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination]: + """Return vulnerability data stored in index \"lg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` :param page: set the page number of the response :type page: int @@ -178150,7 +178150,7 @@ def index_libre_office_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_libre_office_get_serialize( + _param = self._index_lg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178182,7 +178182,7 @@ def index_libre_office_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", '404': "str", '500': "str", } @@ -178198,7 +178198,7 @@ def index_libre_office_get_with_http_info( @validate_call - def index_libre_office_get_without_preload_content( + def index_lg_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178237,9 +178237,9 @@ def index_libre_office_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"libre-office\" + """Return vulnerability data stored in index \"lg\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lg index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** LG Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lg?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lg?cursor=` :param page: set the page number of the response :type page: int @@ -178311,7 +178311,7 @@ def index_libre_office_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_libre_office_get_serialize( + _param = self._index_lg_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178343,7 +178343,7 @@ def index_libre_office_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLGPaginatePagination", '404': "str", '500': "str", } @@ -178354,7 +178354,7 @@ def index_libre_office_get_without_preload_content( return response_data.response - def _index_libre_office_get_serialize( + def _index_lg_get_serialize( self, page, limit, @@ -178522,7 +178522,7 @@ def _index_libre_office_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/libre-office', + resource_path='/v3/index/lg', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -178539,7 +178539,7 @@ def _index_libre_office_get_serialize( @validate_call - def index_linux_get( + def index_libre_office_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178577,10 +178577,10 @@ def index_linux_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination: - """Return vulnerability data stored in index \"linux\" + ) -> RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination: + """Return vulnerability data stored in index \"libre-office\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` :param page: set the page number of the response :type page: int @@ -178652,7 +178652,7 @@ def index_linux_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_linux_get_serialize( + _param = self._index_libre_office_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178684,7 +178684,7 @@ def index_linux_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", '404': "str", '500': "str", } @@ -178700,7 +178700,7 @@ def index_linux_get( @validate_call - def index_linux_get_with_http_info( + def index_libre_office_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178738,10 +178738,10 @@ def index_linux_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination]: - """Return vulnerability data stored in index \"linux\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination]: + """Return vulnerability data stored in index \"libre-office\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` :param page: set the page number of the response :type page: int @@ -178813,7 +178813,7 @@ def index_linux_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_linux_get_serialize( + _param = self._index_libre_office_get_serialize( page=page, limit=limit, cursor=cursor, @@ -178845,7 +178845,7 @@ def index_linux_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", '404': "str", '500': "str", } @@ -178861,7 +178861,7 @@ def index_linux_get_with_http_info( @validate_call - def index_linux_get_without_preload_content( + def index_libre_office_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -178900,9 +178900,9 @@ def index_linux_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"linux\" + """Return vulnerability data stored in index \"libre-office\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the libre-office index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Libre Office Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/libre-office?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/libre-office?cursor=` :param page: set the page number of the response :type page: int @@ -178974,7 +178974,7 @@ def index_linux_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_linux_get_serialize( + _param = self._index_libre_office_get_serialize( page=page, limit=limit, cursor=cursor, @@ -179006,7 +179006,7 @@ def index_linux_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLibreOfficePaginatePagination", '404': "str", '500': "str", } @@ -179017,7 +179017,7 @@ def index_linux_get_without_preload_content( return response_data.response - def _index_linux_get_serialize( + def _index_libre_office_get_serialize( self, page, limit, @@ -179185,7 +179185,7 @@ def _index_linux_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/linux', + resource_path='/v3/index/libre-office', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -179202,7 +179202,7 @@ def _index_linux_get_serialize( @validate_call - def index_lol_advs_get( + def index_linux_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -179240,10 +179240,10 @@ def index_lol_advs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination: - """Return vulnerability data stored in index \"lol-advs\" + ) -> RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination: + """Return vulnerability data stored in index \"linux\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` :param page: set the page number of the response :type page: int @@ -179315,7 +179315,7 @@ def index_lol_advs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lol_advs_get_serialize( + _param = self._index_linux_get_serialize( page=page, limit=limit, cursor=cursor, @@ -179347,7 +179347,7 @@ def index_lol_advs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", '404': "str", '500': "str", } @@ -179363,7 +179363,7 @@ def index_lol_advs_get( @validate_call - def index_lol_advs_get_with_http_info( + def index_linux_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -179401,10 +179401,10 @@ def index_lol_advs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination]: - """Return vulnerability data stored in index \"lol-advs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination]: + """Return vulnerability data stored in index \"linux\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` :param page: set the page number of the response :type page: int @@ -179476,7 +179476,7 @@ def index_lol_advs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lol_advs_get_serialize( + _param = self._index_linux_get_serialize( page=page, limit=limit, cursor=cursor, @@ -179508,7 +179508,7 @@ def index_lol_advs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", '404': "str", '500': "str", } @@ -179524,7 +179524,7 @@ def index_lol_advs_get_with_http_info( @validate_call - def index_lol_advs_get_without_preload_content( + def index_linux_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -179563,9 +179563,9 @@ def index_lol_advs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"lol-advs\" + """Return vulnerability data stored in index \"linux\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the linux index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Linux Kernel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/linux?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/linux?cursor=` :param page: set the page number of the response :type page: int @@ -179637,7 +179637,7 @@ def index_lol_advs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_lol_advs_get_serialize( + _param = self._index_linux_get_serialize( page=page, limit=limit, cursor=cursor, @@ -179669,7 +179669,7 @@ def index_lol_advs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLinuxPaginatePagination", '404': "str", '500': "str", } @@ -179680,7 +179680,7 @@ def index_lol_advs_get_without_preload_content( return response_data.response - def _index_lol_advs_get_serialize( + def _index_linux_get_serialize( self, page, limit, @@ -179848,7 +179848,7 @@ def _index_lol_advs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/lol-advs', + resource_path='/v3/index/linux', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -179865,7 +179865,7 @@ def _index_lol_advs_get_serialize( @validate_call - def index_m_files_get( + def index_lol_advs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -179903,10 +179903,10 @@ def index_m_files_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination: - """Return vulnerability data stored in index \"m-files\" + ) -> RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination: + """Return vulnerability data stored in index \"lol-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` :param page: set the page number of the response :type page: int @@ -179978,7 +179978,7 @@ def index_m_files_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_m_files_get_serialize( + _param = self._index_lol_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180010,7 +180010,7 @@ def index_m_files_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", '404': "str", '500': "str", } @@ -180026,7 +180026,7 @@ def index_m_files_get( @validate_call - def index_m_files_get_with_http_info( + def index_lol_advs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180064,10 +180064,10 @@ def index_m_files_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination]: - """Return vulnerability data stored in index \"m-files\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination]: + """Return vulnerability data stored in index \"lol-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` :param page: set the page number of the response :type page: int @@ -180139,7 +180139,7 @@ def index_m_files_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_m_files_get_serialize( + _param = self._index_lol_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180171,7 +180171,7 @@ def index_m_files_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", '404': "str", '500': "str", } @@ -180187,7 +180187,7 @@ def index_m_files_get_with_http_info( @validate_call - def index_m_files_get_without_preload_content( + def index_lol_advs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180226,9 +180226,9 @@ def index_m_files_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"m-files\" + """Return vulnerability data stored in index \"lol-advs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the lol-advs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Living Off the Land Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/lol-advs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/lol-advs?cursor=` :param page: set the page number of the response :type page: int @@ -180300,7 +180300,7 @@ def index_m_files_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_m_files_get_serialize( + _param = self._index_lol_advs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180332,7 +180332,7 @@ def index_m_files_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryLolAdvsPaginatePagination", '404': "str", '500': "str", } @@ -180343,7 +180343,7 @@ def index_m_files_get_without_preload_content( return response_data.response - def _index_m_files_get_serialize( + def _index_lol_advs_get_serialize( self, page, limit, @@ -180511,7 +180511,7 @@ def _index_m_files_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/m-files', + resource_path='/v3/index/lol-advs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -180528,7 +180528,7 @@ def _index_m_files_get_serialize( @validate_call - def index_macert_get( + def index_m_files_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180566,10 +180566,10 @@ def index_macert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination: - """Return vulnerability data stored in index \"macert\" + ) -> RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination: + """Return vulnerability data stored in index \"m-files\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` :param page: set the page number of the response :type page: int @@ -180641,7 +180641,7 @@ def index_macert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_macert_get_serialize( + _param = self._index_m_files_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180673,7 +180673,7 @@ def index_macert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", '404': "str", '500': "str", } @@ -180689,7 +180689,7 @@ def index_macert_get( @validate_call - def index_macert_get_with_http_info( + def index_m_files_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180727,10 +180727,10 @@ def index_macert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination]: - """Return vulnerability data stored in index \"macert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination]: + """Return vulnerability data stored in index \"m-files\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` :param page: set the page number of the response :type page: int @@ -180802,7 +180802,7 @@ def index_macert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_macert_get_serialize( + _param = self._index_m_files_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180834,7 +180834,7 @@ def index_macert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", '404': "str", '500': "str", } @@ -180850,7 +180850,7 @@ def index_macert_get_with_http_info( @validate_call - def index_macert_get_without_preload_content( + def index_m_files_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -180889,9 +180889,9 @@ def index_macert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"macert\" + """Return vulnerability data stored in index \"m-files\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the m-files index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** M-Files Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/m-files?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/m-files?cursor=` :param page: set the page number of the response :type page: int @@ -180963,7 +180963,7 @@ def index_macert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_macert_get_serialize( + _param = self._index_m_files_get_serialize( page=page, limit=limit, cursor=cursor, @@ -180995,7 +180995,7 @@ def index_macert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMFilesPaginatePagination", '404': "str", '500': "str", } @@ -181006,7 +181006,7 @@ def index_macert_get_without_preload_content( return response_data.response - def _index_macert_get_serialize( + def _index_m_files_get_serialize( self, page, limit, @@ -181174,7 +181174,7 @@ def _index_macert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/macert', + resource_path='/v3/index/m-files', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -181191,7 +181191,7 @@ def _index_macert_get_serialize( @validate_call - def index_malicious_packages_get( + def index_macert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -181229,10 +181229,10 @@ def index_malicious_packages_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination: - """Return vulnerability data stored in index \"malicious-packages\" + ) -> RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination: + """Return vulnerability data stored in index \"macert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` :param page: set the page number of the response :type page: int @@ -181304,7 +181304,7 @@ def index_malicious_packages_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_packages_get_serialize( + _param = self._index_macert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -181336,7 +181336,7 @@ def index_malicious_packages_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", '404': "str", '500': "str", } @@ -181352,7 +181352,7 @@ def index_malicious_packages_get( @validate_call - def index_malicious_packages_get_with_http_info( + def index_macert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -181390,10 +181390,10 @@ def index_malicious_packages_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination]: - """Return vulnerability data stored in index \"malicious-packages\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination]: + """Return vulnerability data stored in index \"macert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` :param page: set the page number of the response :type page: int @@ -181465,7 +181465,7 @@ def index_malicious_packages_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_packages_get_serialize( + _param = self._index_macert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -181497,7 +181497,7 @@ def index_malicious_packages_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", '404': "str", '500': "str", } @@ -181513,7 +181513,7 @@ def index_malicious_packages_get_with_http_info( @validate_call - def index_malicious_packages_get_without_preload_content( + def index_macert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -181552,9 +181552,9 @@ def index_malicious_packages_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"malicious-packages\" + """Return vulnerability data stored in index \"macert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the macert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moroccan CERT Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/macert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/macert?cursor=` :param page: set the page number of the response :type page: int @@ -181626,7 +181626,7 @@ def index_malicious_packages_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_packages_get_serialize( + _param = self._index_macert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -181658,7 +181658,7 @@ def index_malicious_packages_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMACertPaginatePagination", '404': "str", '500': "str", } @@ -181669,7 +181669,7 @@ def index_malicious_packages_get_without_preload_content( return response_data.response - def _index_malicious_packages_get_serialize( + def _index_macert_get_serialize( self, page, limit, @@ -181837,7 +181837,7 @@ def _index_malicious_packages_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/malicious-packages', + resource_path='/v3/index/macert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -181854,7 +181854,7 @@ def _index_malicious_packages_get_serialize( @validate_call - def index_malicious_vscode_exts_get( + def index_malicious_packages_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -181892,10 +181892,10 @@ def index_malicious_vscode_exts_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination: - """Return vulnerability data stored in index \"malicious-vscode-exts\" + ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination: + """Return vulnerability data stored in index \"malicious-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` :param page: set the page number of the response :type page: int @@ -181967,7 +181967,7 @@ def index_malicious_vscode_exts_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_vscode_exts_get_serialize( + _param = self._index_malicious_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -181999,7 +181999,7 @@ def index_malicious_vscode_exts_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", '404': "str", '500': "str", } @@ -182015,7 +182015,7 @@ def index_malicious_vscode_exts_get( @validate_call - def index_malicious_vscode_exts_get_with_http_info( + def index_malicious_packages_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182053,10 +182053,10 @@ def index_malicious_vscode_exts_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination]: - """Return vulnerability data stored in index \"malicious-vscode-exts\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination]: + """Return vulnerability data stored in index \"malicious-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` :param page: set the page number of the response :type page: int @@ -182128,7 +182128,7 @@ def index_malicious_vscode_exts_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_vscode_exts_get_serialize( + _param = self._index_malicious_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182160,7 +182160,7 @@ def index_malicious_vscode_exts_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", '404': "str", '500': "str", } @@ -182176,7 +182176,7 @@ def index_malicious_vscode_exts_get_with_http_info( @validate_call - def index_malicious_vscode_exts_get_without_preload_content( + def index_malicious_packages_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182215,9 +182215,9 @@ def index_malicious_vscode_exts_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"malicious-vscode-exts\" + """Return vulnerability data stored in index \"malicious-packages\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-packages index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Packages ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-packages?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-packages?cursor=` :param page: set the page number of the response :type page: int @@ -182289,7 +182289,7 @@ def index_malicious_vscode_exts_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_malicious_vscode_exts_get_serialize( + _param = self._index_malicious_packages_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182321,7 +182321,7 @@ def index_malicious_vscode_exts_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousPackagePaginatePagination", '404': "str", '500': "str", } @@ -182332,7 +182332,7 @@ def index_malicious_vscode_exts_get_without_preload_content( return response_data.response - def _index_malicious_vscode_exts_get_serialize( + def _index_malicious_packages_get_serialize( self, page, limit, @@ -182500,7 +182500,7 @@ def _index_malicious_vscode_exts_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/malicious-vscode-exts', + resource_path='/v3/index/malicious-packages', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -182517,7 +182517,7 @@ def _index_malicious_vscode_exts_get_serialize( @validate_call - def index_manageengine_get( + def index_malicious_vscode_exts_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182555,10 +182555,10 @@ def index_manageengine_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"manageengine\" + ) -> RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination: + """Return vulnerability data stored in index \"malicious-vscode-exts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` :param page: set the page number of the response :type page: int @@ -182630,7 +182630,7 @@ def index_manageengine_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_manageengine_get_serialize( + _param = self._index_malicious_vscode_exts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182662,7 +182662,7 @@ def index_manageengine_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", '404': "str", '500': "str", } @@ -182678,7 +182678,7 @@ def index_manageengine_get( @validate_call - def index_manageengine_get_with_http_info( + def index_malicious_vscode_exts_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182716,10 +182716,10 @@ def index_manageengine_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"manageengine\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination]: + """Return vulnerability data stored in index \"malicious-vscode-exts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` :param page: set the page number of the response :type page: int @@ -182791,7 +182791,7 @@ def index_manageengine_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_manageengine_get_serialize( + _param = self._index_malicious_vscode_exts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182823,7 +182823,7 @@ def index_manageengine_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", '404': "str", '500': "str", } @@ -182839,7 +182839,7 @@ def index_manageengine_get_with_http_info( @validate_call - def index_manageengine_get_without_preload_content( + def index_malicious_vscode_exts_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -182878,9 +182878,9 @@ def index_manageengine_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"manageengine\" + """Return vulnerability data stored in index \"malicious-vscode-exts\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the malicious-vscode-exts index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Malicious Visual Studio Code Extensions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/malicious-vscode-exts?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/malicious-vscode-exts?cursor=` :param page: set the page number of the response :type page: int @@ -182952,7 +182952,7 @@ def index_manageengine_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_manageengine_get_serialize( + _param = self._index_malicious_vscode_exts_get_serialize( page=page, limit=limit, cursor=cursor, @@ -182984,7 +182984,7 @@ def index_manageengine_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMaliciousVSCodeExtsPaginatePagination", '404': "str", '500': "str", } @@ -182995,7 +182995,7 @@ def index_manageengine_get_without_preload_content( return response_data.response - def _index_manageengine_get_serialize( + def _index_malicious_vscode_exts_get_serialize( self, page, limit, @@ -183163,7 +183163,7 @@ def _index_manageengine_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/manageengine', + resource_path='/v3/index/malicious-vscode-exts', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -183180,7 +183180,7 @@ def _index_manageengine_get_serialize( @validate_call - def index_maven_get( + def index_manageengine_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -183218,10 +183218,10 @@ def index_maven_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"maven\" + ) -> RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"manageengine\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` :param page: set the page number of the response :type page: int @@ -183293,7 +183293,7 @@ def index_maven_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_maven_get_serialize( + _param = self._index_manageengine_get_serialize( page=page, limit=limit, cursor=cursor, @@ -183325,7 +183325,7 @@ def index_maven_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -183341,7 +183341,7 @@ def index_maven_get( @validate_call - def index_maven_get_with_http_info( + def index_manageengine_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -183379,10 +183379,10 @@ def index_maven_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"maven\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"manageengine\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` :param page: set the page number of the response :type page: int @@ -183454,7 +183454,7 @@ def index_maven_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_maven_get_serialize( + _param = self._index_manageengine_get_serialize( page=page, limit=limit, cursor=cursor, @@ -183486,7 +183486,7 @@ def index_maven_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -183502,7 +183502,7 @@ def index_maven_get_with_http_info( @validate_call - def index_maven_get_without_preload_content( + def index_manageengine_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -183541,9 +183541,9 @@ def index_maven_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"maven\" + """Return vulnerability data stored in index \"manageengine\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the manageengine index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ManageEngine Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/manageengine?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/manageengine?cursor=` :param page: set the page number of the response :type page: int @@ -183615,7 +183615,7 @@ def index_maven_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_maven_get_serialize( + _param = self._index_manageengine_get_serialize( page=page, limit=limit, cursor=cursor, @@ -183647,7 +183647,7 @@ def index_maven_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryManageEngineAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -183658,7 +183658,7 @@ def index_maven_get_without_preload_content( return response_data.response - def _index_maven_get_serialize( + def _index_manageengine_get_serialize( self, page, limit, @@ -183826,7 +183826,7 @@ def _index_maven_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/maven', + resource_path='/v3/index/manageengine', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -183843,7 +183843,7 @@ def _index_maven_get_serialize( @validate_call - def index_mbed_tls_get( + def index_maven_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -183881,10 +183881,10 @@ def index_mbed_tls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination: - """Return vulnerability data stored in index \"mbed-tls\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"maven\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` :param page: set the page number of the response :type page: int @@ -183956,7 +183956,7 @@ def index_mbed_tls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mbed_tls_get_serialize( + _param = self._index_maven_get_serialize( page=page, limit=limit, cursor=cursor, @@ -183988,7 +183988,7 @@ def index_mbed_tls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -184004,7 +184004,7 @@ def index_mbed_tls_get( @validate_call - def index_mbed_tls_get_with_http_info( + def index_maven_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184042,10 +184042,10 @@ def index_mbed_tls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination]: - """Return vulnerability data stored in index \"mbed-tls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"maven\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` :param page: set the page number of the response :type page: int @@ -184117,7 +184117,7 @@ def index_mbed_tls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mbed_tls_get_serialize( + _param = self._index_maven_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184149,7 +184149,7 @@ def index_mbed_tls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -184165,7 +184165,7 @@ def index_mbed_tls_get_with_http_info( @validate_call - def index_mbed_tls_get_without_preload_content( + def index_maven_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184204,9 +184204,9 @@ def index_mbed_tls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mbed-tls\" + """Return vulnerability data stored in index \"maven\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the maven index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Maven (Java) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/maven?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/maven?cursor=` :param page: set the page number of the response :type page: int @@ -184278,7 +184278,7 @@ def index_mbed_tls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mbed_tls_get_serialize( + _param = self._index_maven_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184310,7 +184310,7 @@ def index_mbed_tls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -184321,7 +184321,7 @@ def index_mbed_tls_get_without_preload_content( return response_data.response - def _index_mbed_tls_get_serialize( + def _index_maven_get_serialize( self, page, limit, @@ -184489,7 +184489,7 @@ def _index_mbed_tls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mbed-tls', + resource_path='/v3/index/maven', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -184506,7 +184506,7 @@ def _index_mbed_tls_get_serialize( @validate_call - def index_mcafee_get( + def index_mbed_tls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184544,10 +184544,10 @@ def index_mcafee_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination: - """Return vulnerability data stored in index \"mcafee\" + ) -> RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination: + """Return vulnerability data stored in index \"mbed-tls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` :param page: set the page number of the response :type page: int @@ -184619,7 +184619,7 @@ def index_mcafee_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mcafee_get_serialize( + _param = self._index_mbed_tls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184651,7 +184651,7 @@ def index_mcafee_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", '404': "str", '500': "str", } @@ -184667,7 +184667,7 @@ def index_mcafee_get( @validate_call - def index_mcafee_get_with_http_info( + def index_mbed_tls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184705,10 +184705,10 @@ def index_mcafee_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination]: - """Return vulnerability data stored in index \"mcafee\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination]: + """Return vulnerability data stored in index \"mbed-tls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` :param page: set the page number of the response :type page: int @@ -184780,7 +184780,7 @@ def index_mcafee_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mcafee_get_serialize( + _param = self._index_mbed_tls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184812,7 +184812,7 @@ def index_mcafee_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", '404': "str", '500': "str", } @@ -184828,7 +184828,7 @@ def index_mcafee_get_with_http_info( @validate_call - def index_mcafee_get_without_preload_content( + def index_mbed_tls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -184867,9 +184867,9 @@ def index_mcafee_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mcafee\" + """Return vulnerability data stored in index \"mbed-tls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mbed-tls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mbed TLS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mbed-tls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mbed-tls?cursor=` :param page: set the page number of the response :type page: int @@ -184941,7 +184941,7 @@ def index_mcafee_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mcafee_get_serialize( + _param = self._index_mbed_tls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -184973,7 +184973,7 @@ def index_mcafee_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMbedTLSPaginatePagination", '404': "str", '500': "str", } @@ -184984,7 +184984,7 @@ def index_mcafee_get_without_preload_content( return response_data.response - def _index_mcafee_get_serialize( + def _index_mbed_tls_get_serialize( self, page, limit, @@ -185152,7 +185152,7 @@ def _index_mcafee_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mcafee', + resource_path='/v3/index/mbed-tls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -185169,7 +185169,7 @@ def _index_mcafee_get_serialize( @validate_call - def index_mediatek_get( + def index_mcafee_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -185207,10 +185207,10 @@ def index_mediatek_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination: - """Return vulnerability data stored in index \"mediatek\" + ) -> RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination: + """Return vulnerability data stored in index \"mcafee\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` :param page: set the page number of the response :type page: int @@ -185282,7 +185282,7 @@ def index_mediatek_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mediatek_get_serialize( + _param = self._index_mcafee_get_serialize( page=page, limit=limit, cursor=cursor, @@ -185314,7 +185314,7 @@ def index_mediatek_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", '404': "str", '500': "str", } @@ -185330,7 +185330,7 @@ def index_mediatek_get( @validate_call - def index_mediatek_get_with_http_info( + def index_mcafee_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -185368,10 +185368,10 @@ def index_mediatek_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination]: - """Return vulnerability data stored in index \"mediatek\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination]: + """Return vulnerability data stored in index \"mcafee\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` :param page: set the page number of the response :type page: int @@ -185443,7 +185443,7 @@ def index_mediatek_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mediatek_get_serialize( + _param = self._index_mcafee_get_serialize( page=page, limit=limit, cursor=cursor, @@ -185475,7 +185475,7 @@ def index_mediatek_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", '404': "str", '500': "str", } @@ -185491,7 +185491,7 @@ def index_mediatek_get_with_http_info( @validate_call - def index_mediatek_get_without_preload_content( + def index_mcafee_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -185530,9 +185530,9 @@ def index_mediatek_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mediatek\" + """Return vulnerability data stored in index \"mcafee\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mcafee index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** McAfee Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mcafee?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mcafee?cursor=` :param page: set the page number of the response :type page: int @@ -185604,7 +185604,7 @@ def index_mediatek_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mediatek_get_serialize( + _param = self._index_mcafee_get_serialize( page=page, limit=limit, cursor=cursor, @@ -185636,7 +185636,7 @@ def index_mediatek_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMcAfeePaginatePagination", '404': "str", '500': "str", } @@ -185647,7 +185647,7 @@ def index_mediatek_get_without_preload_content( return response_data.response - def _index_mediatek_get_serialize( + def _index_mcafee_get_serialize( self, page, limit, @@ -185815,7 +185815,7 @@ def _index_mediatek_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mediatek', + resource_path='/v3/index/mcafee', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -185832,7 +185832,7 @@ def _index_mediatek_get_serialize( @validate_call - def index_medtronic_get( + def index_mediatek_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -185870,10 +185870,10 @@ def index_medtronic_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"medtronic\" + ) -> RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination: + """Return vulnerability data stored in index \"mediatek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` :param page: set the page number of the response :type page: int @@ -185945,7 +185945,7 @@ def index_medtronic_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_medtronic_get_serialize( + _param = self._index_mediatek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -185977,7 +185977,7 @@ def index_medtronic_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", '404': "str", '500': "str", } @@ -185993,7 +185993,7 @@ def index_medtronic_get( @validate_call - def index_medtronic_get_with_http_info( + def index_mediatek_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186031,10 +186031,10 @@ def index_medtronic_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"medtronic\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination]: + """Return vulnerability data stored in index \"mediatek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` :param page: set the page number of the response :type page: int @@ -186106,7 +186106,7 @@ def index_medtronic_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_medtronic_get_serialize( + _param = self._index_mediatek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186138,7 +186138,7 @@ def index_medtronic_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", '404': "str", '500': "str", } @@ -186154,7 +186154,7 @@ def index_medtronic_get_with_http_info( @validate_call - def index_medtronic_get_without_preload_content( + def index_mediatek_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186193,9 +186193,9 @@ def index_medtronic_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"medtronic\" + """Return vulnerability data stored in index \"mediatek\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mediatek index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MediaTek Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mediatek?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mediatek?cursor=` :param page: set the page number of the response :type page: int @@ -186267,7 +186267,7 @@ def index_medtronic_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_medtronic_get_serialize( + _param = self._index_mediatek_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186299,7 +186299,7 @@ def index_medtronic_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMediatekPaginatePagination", '404': "str", '500': "str", } @@ -186310,7 +186310,7 @@ def index_medtronic_get_without_preload_content( return response_data.response - def _index_medtronic_get_serialize( + def _index_mediatek_get_serialize( self, page, limit, @@ -186478,7 +186478,7 @@ def _index_medtronic_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/medtronic', + resource_path='/v3/index/mediatek', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -186495,7 +186495,7 @@ def _index_medtronic_get_serialize( @validate_call - def index_mendix_get( + def index_medtronic_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186533,10 +186533,10 @@ def index_mendix_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination: - """Return vulnerability data stored in index \"mendix\" + ) -> RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"medtronic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` :param page: set the page number of the response :type page: int @@ -186608,7 +186608,7 @@ def index_mendix_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mendix_get_serialize( + _param = self._index_medtronic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186640,7 +186640,7 @@ def index_mendix_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -186656,7 +186656,7 @@ def index_mendix_get( @validate_call - def index_mendix_get_with_http_info( + def index_medtronic_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186694,10 +186694,10 @@ def index_mendix_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination]: - """Return vulnerability data stored in index \"mendix\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"medtronic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` :param page: set the page number of the response :type page: int @@ -186769,7 +186769,7 @@ def index_mendix_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mendix_get_serialize( + _param = self._index_medtronic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186801,7 +186801,7 @@ def index_mendix_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -186817,7 +186817,7 @@ def index_mendix_get_with_http_info( @validate_call - def index_mendix_get_without_preload_content( + def index_medtronic_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -186856,9 +186856,9 @@ def index_mendix_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mendix\" + """Return vulnerability data stored in index \"medtronic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the medtronic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Medtronic Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/medtronic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/medtronic?cursor=` :param page: set the page number of the response :type page: int @@ -186930,7 +186930,7 @@ def index_mendix_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mendix_get_serialize( + _param = self._index_medtronic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -186962,7 +186962,7 @@ def index_mendix_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMedtronicAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -186973,7 +186973,7 @@ def index_mendix_get_without_preload_content( return response_data.response - def _index_mendix_get_serialize( + def _index_medtronic_get_serialize( self, page, limit, @@ -187141,7 +187141,7 @@ def _index_mendix_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mendix', + resource_path='/v3/index/medtronic', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -187158,7 +187158,7 @@ def _index_mendix_get_serialize( @validate_call - def index_meta_advisories_get( + def index_mendix_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -187196,10 +187196,10 @@ def index_meta_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination: - """Return vulnerability data stored in index \"meta-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination: + """Return vulnerability data stored in index \"mendix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` :param page: set the page number of the response :type page: int @@ -187271,7 +187271,7 @@ def index_meta_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_meta_advisories_get_serialize( + _param = self._index_mendix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -187303,7 +187303,7 @@ def index_meta_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", '404': "str", '500': "str", } @@ -187319,7 +187319,7 @@ def index_meta_advisories_get( @validate_call - def index_meta_advisories_get_with_http_info( + def index_mendix_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -187357,10 +187357,10 @@ def index_meta_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination]: - """Return vulnerability data stored in index \"meta-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination]: + """Return vulnerability data stored in index \"mendix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` :param page: set the page number of the response :type page: int @@ -187432,7 +187432,7 @@ def index_meta_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_meta_advisories_get_serialize( + _param = self._index_mendix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -187464,7 +187464,7 @@ def index_meta_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", '404': "str", '500': "str", } @@ -187480,7 +187480,7 @@ def index_meta_advisories_get_with_http_info( @validate_call - def index_meta_advisories_get_without_preload_content( + def index_mendix_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -187519,9 +187519,9 @@ def index_meta_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"meta-advisories\" + """Return vulnerability data stored in index \"mendix\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mendix index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mendix Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mendix?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mendix?cursor=` :param page: set the page number of the response :type page: int @@ -187593,7 +187593,7 @@ def index_meta_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_meta_advisories_get_serialize( + _param = self._index_mendix_get_serialize( page=page, limit=limit, cursor=cursor, @@ -187625,7 +187625,7 @@ def index_meta_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMendixPaginatePagination", '404': "str", '500': "str", } @@ -187636,7 +187636,7 @@ def index_meta_advisories_get_without_preload_content( return response_data.response - def _index_meta_advisories_get_serialize( + def _index_mendix_get_serialize( self, page, limit, @@ -187804,7 +187804,7 @@ def _index_meta_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/meta-advisories', + resource_path='/v3/index/mendix', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -187821,7 +187821,7 @@ def _index_meta_advisories_get_serialize( @validate_call - def index_metasploit_get( + def index_meta_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -187859,10 +187859,10 @@ def index_metasploit_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination: - """Return vulnerability data stored in index \"metasploit\" + ) -> RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination: + """Return vulnerability data stored in index \"meta-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -187934,7 +187934,7 @@ def index_metasploit_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_metasploit_get_serialize( + _param = self._index_meta_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -187966,7 +187966,7 @@ def index_metasploit_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", '404': "str", '500': "str", } @@ -187982,7 +187982,7 @@ def index_metasploit_get( @validate_call - def index_metasploit_get_with_http_info( + def index_meta_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188020,10 +188020,10 @@ def index_metasploit_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination]: - """Return vulnerability data stored in index \"metasploit\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination]: + """Return vulnerability data stored in index \"meta-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -188095,7 +188095,7 @@ def index_metasploit_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_metasploit_get_serialize( + _param = self._index_meta_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188127,7 +188127,7 @@ def index_metasploit_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", '404': "str", '500': "str", } @@ -188143,7 +188143,7 @@ def index_metasploit_get_with_http_info( @validate_call - def index_metasploit_get_without_preload_content( + def index_meta_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188182,9 +188182,9 @@ def index_metasploit_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"metasploit\" + """Return vulnerability data stored in index \"meta-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the meta-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Meta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/meta-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/meta-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -188256,7 +188256,7 @@ def index_metasploit_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_metasploit_get_serialize( + _param = self._index_meta_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188288,7 +188288,7 @@ def index_metasploit_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaAdvisoriesPaginatePagination", '404': "str", '500': "str", } @@ -188299,7 +188299,7 @@ def index_metasploit_get_without_preload_content( return response_data.response - def _index_metasploit_get_serialize( + def _index_meta_advisories_get_serialize( self, page, limit, @@ -188467,7 +188467,7 @@ def _index_metasploit_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/metasploit', + resource_path='/v3/index/meta-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -188484,7 +188484,7 @@ def _index_metasploit_get_serialize( @validate_call - def index_microsoft_csaf_get( + def index_metasploit_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188522,10 +188522,10 @@ def index_microsoft_csaf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination: - """Return vulnerability data stored in index \"microsoft-csaf\" + ) -> RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination: + """Return vulnerability data stored in index \"metasploit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` :param page: set the page number of the response :type page: int @@ -188597,7 +188597,7 @@ def index_microsoft_csaf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_csaf_get_serialize( + _param = self._index_metasploit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188629,7 +188629,7 @@ def index_microsoft_csaf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", '404': "str", '500': "str", } @@ -188645,7 +188645,7 @@ def index_microsoft_csaf_get( @validate_call - def index_microsoft_csaf_get_with_http_info( + def index_metasploit_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188683,10 +188683,10 @@ def index_microsoft_csaf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-csaf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination]: + """Return vulnerability data stored in index \"metasploit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` :param page: set the page number of the response :type page: int @@ -188758,7 +188758,7 @@ def index_microsoft_csaf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_csaf_get_serialize( + _param = self._index_metasploit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188790,7 +188790,7 @@ def index_microsoft_csaf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", '404': "str", '500': "str", } @@ -188806,7 +188806,7 @@ def index_microsoft_csaf_get_with_http_info( @validate_call - def index_microsoft_csaf_get_without_preload_content( + def index_metasploit_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -188845,9 +188845,9 @@ def index_microsoft_csaf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-csaf\" + """Return vulnerability data stored in index \"metasploit\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the metasploit index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Metasploit Modules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/metasploit?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/metasploit?cursor=` :param page: set the page number of the response :type page: int @@ -188919,7 +188919,7 @@ def index_microsoft_csaf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_csaf_get_serialize( + _param = self._index_metasploit_get_serialize( page=page, limit=limit, cursor=cursor, @@ -188951,7 +188951,7 @@ def index_microsoft_csaf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetasploitExploitPaginatePagination", '404': "str", '500': "str", } @@ -188962,7 +188962,7 @@ def index_microsoft_csaf_get_without_preload_content( return response_data.response - def _index_microsoft_csaf_get_serialize( + def _index_metasploit_get_serialize( self, page, limit, @@ -189130,7 +189130,7 @@ def _index_microsoft_csaf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-csaf', + resource_path='/v3/index/metasploit', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -189147,7 +189147,7 @@ def _index_microsoft_csaf_get_serialize( @validate_call - def index_microsoft_cvrf_get( + def index_microsoft_csaf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -189185,10 +189185,10 @@ def index_microsoft_cvrf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination: - """Return vulnerability data stored in index \"microsoft-cvrf\" + ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination: + """Return vulnerability data stored in index \"microsoft-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -189260,7 +189260,7 @@ def index_microsoft_cvrf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_cvrf_get_serialize( + _param = self._index_microsoft_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -189292,7 +189292,7 @@ def index_microsoft_cvrf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", '404': "str", '500': "str", } @@ -189308,7 +189308,7 @@ def index_microsoft_cvrf_get( @validate_call - def index_microsoft_cvrf_get_with_http_info( + def index_microsoft_csaf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -189346,10 +189346,10 @@ def index_microsoft_cvrf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-cvrf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -189421,7 +189421,7 @@ def index_microsoft_cvrf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_cvrf_get_serialize( + _param = self._index_microsoft_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -189453,7 +189453,7 @@ def index_microsoft_cvrf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", '404': "str", '500': "str", } @@ -189469,7 +189469,7 @@ def index_microsoft_cvrf_get_with_http_info( @validate_call - def index_microsoft_cvrf_get_without_preload_content( + def index_microsoft_csaf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -189508,9 +189508,9 @@ def index_microsoft_cvrf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-cvrf\" + """Return vulnerability data stored in index \"microsoft-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -189582,7 +189582,7 @@ def index_microsoft_cvrf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_cvrf_get_serialize( + _param = self._index_microsoft_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -189614,7 +189614,7 @@ def index_microsoft_cvrf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCSAFPaginatePagination", '404': "str", '500': "str", } @@ -189625,7 +189625,7 @@ def index_microsoft_cvrf_get_without_preload_content( return response_data.response - def _index_microsoft_cvrf_get_serialize( + def _index_microsoft_csaf_get_serialize( self, page, limit, @@ -189793,7 +189793,7 @@ def _index_microsoft_cvrf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-cvrf', + resource_path='/v3/index/microsoft-csaf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -189810,7 +189810,7 @@ def _index_microsoft_cvrf_get_serialize( @validate_call - def index_microsoft_driver_block_list_get( + def index_microsoft_cvrf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -189848,10 +189848,10 @@ def index_microsoft_driver_block_list_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination: - """Return vulnerability data stored in index \"microsoft-driver-block-list\" + ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination: + """Return vulnerability data stored in index \"microsoft-cvrf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` :param page: set the page number of the response :type page: int @@ -189923,7 +189923,7 @@ def index_microsoft_driver_block_list_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_driver_block_list_get_serialize( + _param = self._index_microsoft_cvrf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -189955,7 +189955,7 @@ def index_microsoft_driver_block_list_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", '404': "str", '500': "str", } @@ -189971,7 +189971,7 @@ def index_microsoft_driver_block_list_get( @validate_call - def index_microsoft_driver_block_list_get_with_http_info( + def index_microsoft_cvrf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190009,10 +190009,10 @@ def index_microsoft_driver_block_list_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-driver-block-list\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-cvrf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` :param page: set the page number of the response :type page: int @@ -190084,7 +190084,7 @@ def index_microsoft_driver_block_list_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_driver_block_list_get_serialize( + _param = self._index_microsoft_cvrf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190116,7 +190116,7 @@ def index_microsoft_driver_block_list_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", '404': "str", '500': "str", } @@ -190132,7 +190132,7 @@ def index_microsoft_driver_block_list_get_with_http_info( @validate_call - def index_microsoft_driver_block_list_get_without_preload_content( + def index_microsoft_cvrf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190171,9 +190171,9 @@ def index_microsoft_driver_block_list_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-driver-block-list\" + """Return vulnerability data stored in index \"microsoft-cvrf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-cvrf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-cvrf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-cvrf?cursor=` :param page: set the page number of the response :type page: int @@ -190245,7 +190245,7 @@ def index_microsoft_driver_block_list_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_driver_block_list_get_serialize( + _param = self._index_microsoft_cvrf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190277,7 +190277,7 @@ def index_microsoft_driver_block_list_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftCVRFPaginatePagination", '404': "str", '500': "str", } @@ -190288,7 +190288,7 @@ def index_microsoft_driver_block_list_get_without_preload_content( return response_data.response - def _index_microsoft_driver_block_list_get_serialize( + def _index_microsoft_cvrf_get_serialize( self, page, limit, @@ -190456,7 +190456,7 @@ def _index_microsoft_driver_block_list_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-driver-block-list', + resource_path='/v3/index/microsoft-cvrf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -190473,7 +190473,7 @@ def _index_microsoft_driver_block_list_get_serialize( @validate_call - def index_microsoft_eol_get( + def index_microsoft_driver_block_list_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190511,10 +190511,10 @@ def index_microsoft_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: - """Return vulnerability data stored in index \"microsoft-eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination: + """Return vulnerability data stored in index \"microsoft-driver-block-list\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` :param page: set the page number of the response :type page: int @@ -190586,7 +190586,7 @@ def index_microsoft_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_eol_get_serialize( + _param = self._index_microsoft_driver_block_list_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190618,7 +190618,7 @@ def index_microsoft_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", '404': "str", '500': "str", } @@ -190634,7 +190634,7 @@ def index_microsoft_eol_get( @validate_call - def index_microsoft_eol_get_with_http_info( + def index_microsoft_driver_block_list_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190672,10 +190672,10 @@ def index_microsoft_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-driver-block-list\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` :param page: set the page number of the response :type page: int @@ -190747,7 +190747,7 @@ def index_microsoft_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_eol_get_serialize( + _param = self._index_microsoft_driver_block_list_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190779,7 +190779,7 @@ def index_microsoft_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", '404': "str", '500': "str", } @@ -190795,7 +190795,7 @@ def index_microsoft_eol_get_with_http_info( @validate_call - def index_microsoft_eol_get_without_preload_content( + def index_microsoft_driver_block_list_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -190834,9 +190834,9 @@ def index_microsoft_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-eol\" + """Return vulnerability data stored in index \"microsoft-driver-block-list\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-driver-block-list index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft's Vulnerable Drivers Blocklist ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-driver-block-list?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-driver-block-list?cursor=` :param page: set the page number of the response :type page: int @@ -190908,7 +190908,7 @@ def index_microsoft_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_eol_get_serialize( + _param = self._index_microsoft_driver_block_list_get_serialize( page=page, limit=limit, cursor=cursor, @@ -190940,7 +190940,7 @@ def index_microsoft_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftDriverBlockListPaginatePagination", '404': "str", '500': "str", } @@ -190951,7 +190951,7 @@ def index_microsoft_eol_get_without_preload_content( return response_data.response - def _index_microsoft_eol_get_serialize( + def _index_microsoft_driver_block_list_get_serialize( self, page, limit, @@ -191119,7 +191119,7 @@ def _index_microsoft_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-eol', + resource_path='/v3/index/microsoft-driver-block-list', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -191136,7 +191136,7 @@ def _index_microsoft_eol_get_serialize( @validate_call - def index_microsoft_kb_get( + def index_microsoft_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191174,10 +191174,10 @@ def index_microsoft_kb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination: - """Return vulnerability data stored in index \"microsoft-kb\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: + """Return vulnerability data stored in index \"microsoft-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` :param page: set the page number of the response :type page: int @@ -191249,7 +191249,7 @@ def index_microsoft_kb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_kb_get_serialize( + _param = self._index_microsoft_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -191281,7 +191281,7 @@ def index_microsoft_kb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -191297,7 +191297,7 @@ def index_microsoft_kb_get( @validate_call - def index_microsoft_kb_get_with_http_info( + def index_microsoft_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191335,10 +191335,10 @@ def index_microsoft_kb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination]: - """Return vulnerability data stored in index \"microsoft-kb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` :param page: set the page number of the response :type page: int @@ -191410,7 +191410,7 @@ def index_microsoft_kb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_kb_get_serialize( + _param = self._index_microsoft_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -191442,7 +191442,7 @@ def index_microsoft_kb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -191458,7 +191458,7 @@ def index_microsoft_kb_get_with_http_info( @validate_call - def index_microsoft_kb_get_without_preload_content( + def index_microsoft_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191497,9 +191497,9 @@ def index_microsoft_kb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"microsoft-kb\" + """Return vulnerability data stored in index \"microsoft-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-eol?cursor=` :param page: set the page number of the response :type page: int @@ -191571,7 +191571,7 @@ def index_microsoft_kb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_microsoft_kb_get_serialize( + _param = self._index_microsoft_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -191603,7 +191603,7 @@ def index_microsoft_kb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -191614,7 +191614,7 @@ def index_microsoft_kb_get_without_preload_content( return response_data.response - def _index_microsoft_kb_get_serialize( + def _index_microsoft_eol_get_serialize( self, page, limit, @@ -191782,7 +191782,7 @@ def _index_microsoft_kb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/microsoft-kb', + resource_path='/v3/index/microsoft-eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -191799,7 +191799,7 @@ def _index_microsoft_kb_get_serialize( @validate_call - def index_mikrotik_get( + def index_microsoft_kb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191837,10 +191837,10 @@ def index_mikrotik_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination: - """Return vulnerability data stored in index \"mikrotik\" + ) -> RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination: + """Return vulnerability data stored in index \"microsoft-kb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` :param page: set the page number of the response :type page: int @@ -191912,7 +191912,7 @@ def index_mikrotik_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mikrotik_get_serialize( + _param = self._index_microsoft_kb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -191944,7 +191944,7 @@ def index_mikrotik_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", '404': "str", '500': "str", } @@ -191960,7 +191960,7 @@ def index_mikrotik_get( @validate_call - def index_mikrotik_get_with_http_info( + def index_microsoft_kb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -191998,10 +191998,10 @@ def index_mikrotik_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination]: - """Return vulnerability data stored in index \"mikrotik\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination]: + """Return vulnerability data stored in index \"microsoft-kb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` :param page: set the page number of the response :type page: int @@ -192073,7 +192073,7 @@ def index_mikrotik_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mikrotik_get_serialize( + _param = self._index_microsoft_kb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192105,7 +192105,7 @@ def index_mikrotik_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", '404': "str", '500': "str", } @@ -192121,7 +192121,7 @@ def index_mikrotik_get_with_http_info( @validate_call - def index_mikrotik_get_without_preload_content( + def index_microsoft_kb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -192160,9 +192160,9 @@ def index_mikrotik_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mikrotik\" + """Return vulnerability data stored in index \"microsoft-kb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the microsoft-kb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Microsoft KB list by CVE ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/microsoft-kb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/microsoft-kb?cursor=` :param page: set the page number of the response :type page: int @@ -192234,7 +192234,7 @@ def index_mikrotik_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mikrotik_get_serialize( + _param = self._index_microsoft_kb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192266,7 +192266,7 @@ def index_mikrotik_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMicrosoftKbPaginatePagination", '404': "str", '500': "str", } @@ -192277,7 +192277,7 @@ def index_mikrotik_get_without_preload_content( return response_data.response - def _index_mikrotik_get_serialize( + def _index_microsoft_kb_get_serialize( self, page, limit, @@ -192445,7 +192445,7 @@ def _index_mikrotik_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mikrotik', + resource_path='/v3/index/microsoft-kb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -192462,7 +192462,7 @@ def _index_mikrotik_get_serialize( @validate_call - def index_mindray_get( + def index_mikrotik_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -192500,10 +192500,10 @@ def index_mindray_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination: - """Return vulnerability data stored in index \"mindray\" + ) -> RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination: + """Return vulnerability data stored in index \"mikrotik\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` :param page: set the page number of the response :type page: int @@ -192575,7 +192575,7 @@ def index_mindray_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mindray_get_serialize( + _param = self._index_mikrotik_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192607,7 +192607,7 @@ def index_mindray_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", '404': "str", '500': "str", } @@ -192623,7 +192623,7 @@ def index_mindray_get( @validate_call - def index_mindray_get_with_http_info( + def index_mikrotik_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -192661,10 +192661,10 @@ def index_mindray_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination]: - """Return vulnerability data stored in index \"mindray\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination]: + """Return vulnerability data stored in index \"mikrotik\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` :param page: set the page number of the response :type page: int @@ -192736,7 +192736,7 @@ def index_mindray_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mindray_get_serialize( + _param = self._index_mikrotik_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192768,7 +192768,7 @@ def index_mindray_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", '404': "str", '500': "str", } @@ -192784,7 +192784,7 @@ def index_mindray_get_with_http_info( @validate_call - def index_mindray_get_without_preload_content( + def index_mikrotik_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -192823,9 +192823,9 @@ def index_mindray_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mindray\" + """Return vulnerability data stored in index \"mikrotik\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mikrotik index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MikroTik Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mikrotik?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mikrotik?cursor=` :param page: set the page number of the response :type page: int @@ -192897,7 +192897,7 @@ def index_mindray_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mindray_get_serialize( + _param = self._index_mikrotik_get_serialize( page=page, limit=limit, cursor=cursor, @@ -192929,7 +192929,7 @@ def index_mindray_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMikrotikPaginatePagination", '404': "str", '500': "str", } @@ -192940,7 +192940,7 @@ def index_mindray_get_without_preload_content( return response_data.response - def _index_mindray_get_serialize( + def _index_mikrotik_get_serialize( self, page, limit, @@ -193108,7 +193108,7 @@ def _index_mindray_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mindray', + resource_path='/v3/index/mikrotik', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -193125,7 +193125,7 @@ def _index_mindray_get_serialize( @validate_call - def index_misp_threat_actors_get( + def index_mindray_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193163,10 +193163,10 @@ def index_misp_threat_actors_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination: - """Return vulnerability data stored in index \"misp-threat-actors\" + ) -> RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination: + """Return vulnerability data stored in index \"mindray\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` :param page: set the page number of the response :type page: int @@ -193238,7 +193238,7 @@ def index_misp_threat_actors_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_misp_threat_actors_get_serialize( + _param = self._index_mindray_get_serialize( page=page, limit=limit, cursor=cursor, @@ -193270,7 +193270,7 @@ def index_misp_threat_actors_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", '404': "str", '500': "str", } @@ -193286,7 +193286,7 @@ def index_misp_threat_actors_get( @validate_call - def index_misp_threat_actors_get_with_http_info( + def index_mindray_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193324,10 +193324,10 @@ def index_misp_threat_actors_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination]: - """Return vulnerability data stored in index \"misp-threat-actors\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination]: + """Return vulnerability data stored in index \"mindray\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` :param page: set the page number of the response :type page: int @@ -193399,7 +193399,7 @@ def index_misp_threat_actors_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_misp_threat_actors_get_serialize( + _param = self._index_mindray_get_serialize( page=page, limit=limit, cursor=cursor, @@ -193431,7 +193431,7 @@ def index_misp_threat_actors_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", '404': "str", '500': "str", } @@ -193447,7 +193447,7 @@ def index_misp_threat_actors_get_with_http_info( @validate_call - def index_misp_threat_actors_get_without_preload_content( + def index_mindray_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193486,9 +193486,9 @@ def index_misp_threat_actors_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"misp-threat-actors\" + """Return vulnerability data stored in index \"mindray\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mindray index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mindray Cybersecurity Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mindray?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mindray?cursor=` :param page: set the page number of the response :type page: int @@ -193560,7 +193560,7 @@ def index_misp_threat_actors_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_misp_threat_actors_get_serialize( + _param = self._index_mindray_get_serialize( page=page, limit=limit, cursor=cursor, @@ -193592,7 +193592,7 @@ def index_misp_threat_actors_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMindrayPaginatePagination", '404': "str", '500': "str", } @@ -193603,7 +193603,7 @@ def index_misp_threat_actors_get_without_preload_content( return response_data.response - def _index_misp_threat_actors_get_serialize( + def _index_mindray_get_serialize( self, page, limit, @@ -193771,7 +193771,7 @@ def _index_misp_threat_actors_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/misp-threat-actors', + resource_path='/v3/index/mindray', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -193788,7 +193788,7 @@ def _index_misp_threat_actors_get_serialize( @validate_call - def index_mitel_get( + def index_misp_threat_actors_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193826,10 +193826,10 @@ def index_mitel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination: - """Return vulnerability data stored in index \"mitel\" + ) -> RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination: + """Return vulnerability data stored in index \"misp-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -193901,7 +193901,7 @@ def index_mitel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitel_get_serialize( + _param = self._index_misp_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -193933,7 +193933,7 @@ def index_mitel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", '404': "str", '500': "str", } @@ -193949,7 +193949,7 @@ def index_mitel_get( @validate_call - def index_mitel_get_with_http_info( + def index_misp_threat_actors_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -193987,10 +193987,10 @@ def index_mitel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination]: - """Return vulnerability data stored in index \"mitel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination]: + """Return vulnerability data stored in index \"misp-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -194062,7 +194062,7 @@ def index_mitel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitel_get_serialize( + _param = self._index_misp_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194094,7 +194094,7 @@ def index_mitel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", '404': "str", '500': "str", } @@ -194110,7 +194110,7 @@ def index_mitel_get_with_http_info( @validate_call - def index_mitel_get_without_preload_content( + def index_misp_threat_actors_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -194149,9 +194149,9 @@ def index_mitel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mitel\" + """Return vulnerability data stored in index \"misp-threat-actors\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the misp-threat-actors index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MISP Threat Actors ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/misp-threat-actors?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/misp-threat-actors?cursor=` :param page: set the page number of the response :type page: int @@ -194223,7 +194223,7 @@ def index_mitel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitel_get_serialize( + _param = self._index_misp_threat_actors_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194255,7 +194255,7 @@ def index_mitel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMispValuePaginatePagination", '404': "str", '500': "str", } @@ -194266,7 +194266,7 @@ def index_mitel_get_without_preload_content( return response_data.response - def _index_mitel_get_serialize( + def _index_misp_threat_actors_get_serialize( self, page, limit, @@ -194434,7 +194434,7 @@ def _index_mitel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mitel', + resource_path='/v3/index/misp-threat-actors', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -194451,7 +194451,7 @@ def _index_mitel_get_serialize( @validate_call - def index_mitre_attack_cve_get( + def index_mitel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -194489,10 +194489,10 @@ def index_mitre_attack_cve_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination: - """Return vulnerability data stored in index \"mitre-attack-cve\" + ) -> RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination: + """Return vulnerability data stored in index \"mitel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` :param page: set the page number of the response :type page: int @@ -194564,7 +194564,7 @@ def index_mitre_attack_cve_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_attack_cve_get_serialize( + _param = self._index_mitel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194596,7 +194596,7 @@ def index_mitre_attack_cve_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", '404': "str", '500': "str", } @@ -194612,7 +194612,7 @@ def index_mitre_attack_cve_get( @validate_call - def index_mitre_attack_cve_get_with_http_info( + def index_mitel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -194650,10 +194650,10 @@ def index_mitre_attack_cve_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination]: - """Return vulnerability data stored in index \"mitre-attack-cve\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination]: + """Return vulnerability data stored in index \"mitel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` :param page: set the page number of the response :type page: int @@ -194725,7 +194725,7 @@ def index_mitre_attack_cve_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_attack_cve_get_serialize( + _param = self._index_mitel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194757,7 +194757,7 @@ def index_mitre_attack_cve_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", '404': "str", '500': "str", } @@ -194773,7 +194773,7 @@ def index_mitre_attack_cve_get_with_http_info( @validate_call - def index_mitre_attack_cve_get_without_preload_content( + def index_mitel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -194812,9 +194812,9 @@ def index_mitre_attack_cve_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mitre-attack-cve\" + """Return vulnerability data stored in index \"mitel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitel Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitel?cursor=` :param page: set the page number of the response :type page: int @@ -194886,7 +194886,7 @@ def index_mitre_attack_cve_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_attack_cve_get_serialize( + _param = self._index_mitel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -194918,7 +194918,7 @@ def index_mitre_attack_cve_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitelPaginatePagination", '404': "str", '500': "str", } @@ -194929,7 +194929,7 @@ def index_mitre_attack_cve_get_without_preload_content( return response_data.response - def _index_mitre_attack_cve_get_serialize( + def _index_mitel_get_serialize( self, page, limit, @@ -195097,7 +195097,7 @@ def _index_mitre_attack_cve_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mitre-attack-cve', + resource_path='/v3/index/mitel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -195114,7 +195114,7 @@ def _index_mitre_attack_cve_get_serialize( @validate_call - def index_mitre_cvelist_v5_get( + def index_mitre_attack_cve_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195152,10 +195152,10 @@ def index_mitre_cvelist_v5_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination: - """Return vulnerability data stored in index \"mitre-cvelist-v5\" + ) -> RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination: + """Return vulnerability data stored in index \"mitre-attack-cve\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` :param page: set the page number of the response :type page: int @@ -195227,7 +195227,7 @@ def index_mitre_cvelist_v5_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_cvelist_v5_get_serialize( + _param = self._index_mitre_attack_cve_get_serialize( page=page, limit=limit, cursor=cursor, @@ -195259,7 +195259,7 @@ def index_mitre_cvelist_v5_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", '404': "str", '500': "str", } @@ -195275,7 +195275,7 @@ def index_mitre_cvelist_v5_get( @validate_call - def index_mitre_cvelist_v5_get_with_http_info( + def index_mitre_attack_cve_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195313,10 +195313,10 @@ def index_mitre_cvelist_v5_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination]: - """Return vulnerability data stored in index \"mitre-cvelist-v5\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination]: + """Return vulnerability data stored in index \"mitre-attack-cve\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` :param page: set the page number of the response :type page: int @@ -195388,7 +195388,7 @@ def index_mitre_cvelist_v5_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_cvelist_v5_get_serialize( + _param = self._index_mitre_attack_cve_get_serialize( page=page, limit=limit, cursor=cursor, @@ -195420,7 +195420,7 @@ def index_mitre_cvelist_v5_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", '404': "str", '500': "str", } @@ -195436,7 +195436,7 @@ def index_mitre_cvelist_v5_get_with_http_info( @validate_call - def index_mitre_cvelist_v5_get_without_preload_content( + def index_mitre_attack_cve_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195475,9 +195475,9 @@ def index_mitre_cvelist_v5_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mitre-cvelist-v5\" + """Return vulnerability data stored in index \"mitre-attack-cve\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-attack-cve index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE ATT&CK Technique ID to CVE List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-attack-cve?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-attack-cve?cursor=` :param page: set the page number of the response :type page: int @@ -195549,7 +195549,7 @@ def index_mitre_cvelist_v5_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitre_cvelist_v5_get_serialize( + _param = self._index_mitre_attack_cve_get_serialize( page=page, limit=limit, cursor=cursor, @@ -195581,7 +195581,7 @@ def index_mitre_cvelist_v5_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", + '200': "RenderResponseWithMetadataArrayApiMitreAttackToCVEPaginatePagination", '404': "str", '500': "str", } @@ -195592,7 +195592,7 @@ def index_mitre_cvelist_v5_get_without_preload_content( return response_data.response - def _index_mitre_cvelist_v5_get_serialize( + def _index_mitre_attack_cve_get_serialize( self, page, limit, @@ -195760,7 +195760,7 @@ def _index_mitre_cvelist_v5_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mitre-cvelist-v5', + resource_path='/v3/index/mitre-attack-cve', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -195777,7 +195777,7 @@ def _index_mitre_cvelist_v5_get_serialize( @validate_call - def index_mitsubishi_electric_get( + def index_mitre_cvelist_v5_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195815,10 +195815,10 @@ def index_mitsubishi_electric_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"mitsubishi-electric\" + ) -> RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination: + """Return vulnerability data stored in index \"mitre-cvelist-v5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` :param page: set the page number of the response :type page: int @@ -195890,7 +195890,7 @@ def index_mitsubishi_electric_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitsubishi_electric_get_serialize( + _param = self._index_mitre_cvelist_v5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -195922,7 +195922,7 @@ def index_mitsubishi_electric_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", '404': "str", '500': "str", } @@ -195938,7 +195938,7 @@ def index_mitsubishi_electric_get( @validate_call - def index_mitsubishi_electric_get_with_http_info( + def index_mitre_cvelist_v5_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -195976,10 +195976,10 @@ def index_mitsubishi_electric_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"mitsubishi-electric\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination]: + """Return vulnerability data stored in index \"mitre-cvelist-v5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` :param page: set the page number of the response :type page: int @@ -196051,7 +196051,7 @@ def index_mitsubishi_electric_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitsubishi_electric_get_serialize( + _param = self._index_mitre_cvelist_v5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196083,7 +196083,7 @@ def index_mitsubishi_electric_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", '404': "str", '500': "str", } @@ -196099,7 +196099,7 @@ def index_mitsubishi_electric_get_with_http_info( @validate_call - def index_mitsubishi_electric_get_without_preload_content( + def index_mitre_cvelist_v5_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -196138,9 +196138,9 @@ def index_mitsubishi_electric_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mitsubishi-electric\" + """Return vulnerability data stored in index \"mitre-cvelist-v5\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitre-cvelist-v5 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MITRE CVEList V5 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitre-cvelist-v5?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitre-cvelist-v5?cursor=` :param page: set the page number of the response :type page: int @@ -196212,7 +196212,7 @@ def index_mitsubishi_electric_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mitsubishi_electric_get_serialize( + _param = self._index_mitre_cvelist_v5_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196244,7 +196244,7 @@ def index_mitsubishi_electric_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitreCVEListV5PaginatePagination", '404': "str", '500': "str", } @@ -196255,7 +196255,7 @@ def index_mitsubishi_electric_get_without_preload_content( return response_data.response - def _index_mitsubishi_electric_get_serialize( + def _index_mitre_cvelist_v5_get_serialize( self, page, limit, @@ -196423,7 +196423,7 @@ def _index_mitsubishi_electric_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mitsubishi-electric', + resource_path='/v3/index/mitre-cvelist-v5', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -196440,7 +196440,7 @@ def _index_mitsubishi_electric_get_serialize( @validate_call - def index_mogwai_labs_get( + def index_mitsubishi_electric_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -196478,10 +196478,10 @@ def index_mogwai_labs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"mogwai-labs\" + ) -> RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"mitsubishi-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` :param page: set the page number of the response :type page: int @@ -196553,7 +196553,7 @@ def index_mogwai_labs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mogwai_labs_get_serialize( + _param = self._index_mitsubishi_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196585,7 +196585,7 @@ def index_mogwai_labs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -196601,7 +196601,7 @@ def index_mogwai_labs_get( @validate_call - def index_mogwai_labs_get_with_http_info( + def index_mitsubishi_electric_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -196639,10 +196639,10 @@ def index_mogwai_labs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"mogwai-labs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"mitsubishi-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` :param page: set the page number of the response :type page: int @@ -196714,7 +196714,7 @@ def index_mogwai_labs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mogwai_labs_get_serialize( + _param = self._index_mitsubishi_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196746,7 +196746,7 @@ def index_mogwai_labs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -196762,7 +196762,7 @@ def index_mogwai_labs_get_with_http_info( @validate_call - def index_mogwai_labs_get_without_preload_content( + def index_mitsubishi_electric_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -196801,9 +196801,9 @@ def index_mogwai_labs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mogwai-labs\" + """Return vulnerability data stored in index \"mitsubishi-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mitsubishi-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mitsubishi Electric Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mitsubishi-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mitsubishi-electric?cursor=` :param page: set the page number of the response :type page: int @@ -196875,7 +196875,7 @@ def index_mogwai_labs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mogwai_labs_get_serialize( + _param = self._index_mitsubishi_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -196907,7 +196907,7 @@ def index_mogwai_labs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMitsubishiElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -196918,7 +196918,7 @@ def index_mogwai_labs_get_without_preload_content( return response_data.response - def _index_mogwai_labs_get_serialize( + def _index_mitsubishi_electric_get_serialize( self, page, limit, @@ -197086,7 +197086,7 @@ def _index_mogwai_labs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mogwai-labs', + resource_path='/v3/index/mitsubishi-electric', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -197103,7 +197103,7 @@ def _index_mogwai_labs_get_serialize( @validate_call - def index_moksha_get( + def index_mogwai_labs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197141,10 +197141,10 @@ def index_moksha_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"moksha\" + ) -> RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"mogwai-labs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` :param page: set the page number of the response :type page: int @@ -197216,7 +197216,7 @@ def index_moksha_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moksha_get_serialize( + _param = self._index_mogwai_labs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -197248,7 +197248,7 @@ def index_moksha_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -197264,7 +197264,7 @@ def index_moksha_get( @validate_call - def index_moksha_get_with_http_info( + def index_mogwai_labs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197302,10 +197302,10 @@ def index_moksha_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"moksha\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"mogwai-labs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` :param page: set the page number of the response :type page: int @@ -197377,7 +197377,7 @@ def index_moksha_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moksha_get_serialize( + _param = self._index_mogwai_labs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -197409,7 +197409,7 @@ def index_moksha_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -197425,7 +197425,7 @@ def index_moksha_get_with_http_info( @validate_call - def index_moksha_get_without_preload_content( + def index_mogwai_labs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197464,9 +197464,9 @@ def index_moksha_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"moksha\" + """Return vulnerability data stored in index \"mogwai-labs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mogwai-labs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MOGWAI LABS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mogwai-labs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mogwai-labs?cursor=` :param page: set the page number of the response :type page: int @@ -197538,7 +197538,7 @@ def index_moksha_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moksha_get_serialize( + _param = self._index_mogwai_labs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -197570,7 +197570,7 @@ def index_moksha_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMogwaiLabsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -197581,7 +197581,7 @@ def index_moksha_get_without_preload_content( return response_data.response - def _index_moksha_get_serialize( + def _index_mogwai_labs_get_serialize( self, page, limit, @@ -197749,7 +197749,7 @@ def _index_moksha_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/moksha', + resource_path='/v3/index/mogwai-labs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -197766,7 +197766,7 @@ def _index_moksha_get_serialize( @validate_call - def index_mongodb_get( + def index_moksha_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197804,10 +197804,10 @@ def index_mongodb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination: - """Return vulnerability data stored in index \"mongodb\" + ) -> RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"moksha\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` :param page: set the page number of the response :type page: int @@ -197879,7 +197879,7 @@ def index_mongodb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mongodb_get_serialize( + _param = self._index_moksha_get_serialize( page=page, limit=limit, cursor=cursor, @@ -197911,7 +197911,7 @@ def index_mongodb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -197927,7 +197927,7 @@ def index_mongodb_get( @validate_call - def index_mongodb_get_with_http_info( + def index_moksha_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -197965,10 +197965,10 @@ def index_mongodb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination]: - """Return vulnerability data stored in index \"mongodb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"moksha\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` :param page: set the page number of the response :type page: int @@ -198040,7 +198040,7 @@ def index_mongodb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mongodb_get_serialize( + _param = self._index_moksha_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198072,7 +198072,7 @@ def index_mongodb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -198088,7 +198088,7 @@ def index_mongodb_get_with_http_info( @validate_call - def index_mongodb_get_without_preload_content( + def index_moksha_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -198127,9 +198127,9 @@ def index_mongodb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mongodb\" + """Return vulnerability data stored in index \"moksha\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moksha index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moksha Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moksha?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moksha?cursor=` :param page: set the page number of the response :type page: int @@ -198201,7 +198201,7 @@ def index_mongodb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mongodb_get_serialize( + _param = self._index_moksha_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198233,7 +198233,7 @@ def index_mongodb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMokshaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -198244,7 +198244,7 @@ def index_mongodb_get_without_preload_content( return response_data.response - def _index_mongodb_get_serialize( + def _index_moksha_get_serialize( self, page, limit, @@ -198412,7 +198412,7 @@ def _index_mongodb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mongodb', + resource_path='/v3/index/moksha', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -198429,7 +198429,7 @@ def _index_mongodb_get_serialize( @validate_call - def index_moxa_get( + def index_mongodb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -198467,10 +198467,10 @@ def index_moxa_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"moxa\" + ) -> RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination: + """Return vulnerability data stored in index \"mongodb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` :param page: set the page number of the response :type page: int @@ -198542,7 +198542,7 @@ def index_moxa_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moxa_get_serialize( + _param = self._index_mongodb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198574,7 +198574,7 @@ def index_moxa_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", '404': "str", '500': "str", } @@ -198590,7 +198590,7 @@ def index_moxa_get( @validate_call - def index_moxa_get_with_http_info( + def index_mongodb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -198628,10 +198628,10 @@ def index_moxa_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"moxa\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination]: + """Return vulnerability data stored in index \"mongodb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` :param page: set the page number of the response :type page: int @@ -198703,7 +198703,7 @@ def index_moxa_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moxa_get_serialize( + _param = self._index_mongodb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198735,7 +198735,7 @@ def index_moxa_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", '404': "str", '500': "str", } @@ -198751,7 +198751,7 @@ def index_moxa_get_with_http_info( @validate_call - def index_moxa_get_without_preload_content( + def index_mongodb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -198790,9 +198790,9 @@ def index_moxa_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"moxa\" + """Return vulnerability data stored in index \"mongodb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mongodb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** MongoDB Security Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mongodb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mongodb?cursor=` :param page: set the page number of the response :type page: int @@ -198864,7 +198864,7 @@ def index_moxa_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_moxa_get_serialize( + _param = self._index_mongodb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -198896,7 +198896,7 @@ def index_moxa_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMongoDBPaginatePagination", '404': "str", '500': "str", } @@ -198907,7 +198907,7 @@ def index_moxa_get_without_preload_content( return response_data.response - def _index_moxa_get_serialize( + def _index_mongodb_get_serialize( self, page, limit, @@ -199075,7 +199075,7 @@ def _index_moxa_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/moxa', + resource_path='/v3/index/mongodb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -199092,7 +199092,7 @@ def _index_moxa_get_serialize( @validate_call - def index_mozilla_get( + def index_moxa_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199130,10 +199130,10 @@ def index_mozilla_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"mozilla\" + ) -> RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"moxa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` :param page: set the page number of the response :type page: int @@ -199205,7 +199205,7 @@ def index_mozilla_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mozilla_get_serialize( + _param = self._index_moxa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -199237,7 +199237,7 @@ def index_mozilla_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -199253,7 +199253,7 @@ def index_mozilla_get( @validate_call - def index_mozilla_get_with_http_info( + def index_moxa_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199291,10 +199291,10 @@ def index_mozilla_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"mozilla\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"moxa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` :param page: set the page number of the response :type page: int @@ -199366,7 +199366,7 @@ def index_mozilla_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mozilla_get_serialize( + _param = self._index_moxa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -199398,7 +199398,7 @@ def index_mozilla_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -199414,7 +199414,7 @@ def index_mozilla_get_with_http_info( @validate_call - def index_mozilla_get_without_preload_content( + def index_moxa_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199453,9 +199453,9 @@ def index_mozilla_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"mozilla\" + """Return vulnerability data stored in index \"moxa\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the moxa index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Moxa Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/moxa?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/moxa?cursor=` :param page: set the page number of the response :type page: int @@ -199527,7 +199527,7 @@ def index_mozilla_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_mozilla_get_serialize( + _param = self._index_moxa_get_serialize( page=page, limit=limit, cursor=cursor, @@ -199559,7 +199559,7 @@ def index_mozilla_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMoxaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -199570,7 +199570,7 @@ def index_mozilla_get_without_preload_content( return response_data.response - def _index_mozilla_get_serialize( + def _index_moxa_get_serialize( self, page, limit, @@ -199738,7 +199738,7 @@ def _index_mozilla_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/mozilla', + resource_path='/v3/index/moxa', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -199755,7 +199755,7 @@ def _index_mozilla_get_serialize( @validate_call - def index_naver_get( + def index_mozilla_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199793,10 +199793,10 @@ def index_naver_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination: - """Return vulnerability data stored in index \"naver\" + ) -> RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"mozilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` :param page: set the page number of the response :type page: int @@ -199868,7 +199868,7 @@ def index_naver_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_naver_get_serialize( + _param = self._index_mozilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -199900,7 +199900,7 @@ def index_naver_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -199916,7 +199916,7 @@ def index_naver_get( @validate_call - def index_naver_get_with_http_info( + def index_mozilla_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -199954,10 +199954,10 @@ def index_naver_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination]: - """Return vulnerability data stored in index \"naver\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"mozilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` :param page: set the page number of the response :type page: int @@ -200029,7 +200029,7 @@ def index_naver_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_naver_get_serialize( + _param = self._index_mozilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200061,7 +200061,7 @@ def index_naver_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -200077,7 +200077,7 @@ def index_naver_get_with_http_info( @validate_call - def index_naver_get_without_preload_content( + def index_mozilla_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -200116,9 +200116,9 @@ def index_naver_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"naver\" + """Return vulnerability data stored in index \"mozilla\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the mozilla index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Mozilla Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/mozilla?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/mozilla?cursor=` :param page: set the page number of the response :type page: int @@ -200190,7 +200190,7 @@ def index_naver_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_naver_get_serialize( + _param = self._index_mozilla_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200222,7 +200222,7 @@ def index_naver_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMozillaAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -200233,7 +200233,7 @@ def index_naver_get_without_preload_content( return response_data.response - def _index_naver_get_serialize( + def _index_mozilla_get_serialize( self, page, limit, @@ -200401,7 +200401,7 @@ def _index_naver_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/naver', + resource_path='/v3/index/mozilla', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -200418,7 +200418,7 @@ def _index_naver_get_serialize( @validate_call - def index_ncsc_cves_get( + def index_naver_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -200456,10 +200456,10 @@ def index_ncsc_cves_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination: - """Return vulnerability data stored in index \"ncsc-cves\" + ) -> RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination: + """Return vulnerability data stored in index \"naver\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` :param page: set the page number of the response :type page: int @@ -200531,7 +200531,7 @@ def index_ncsc_cves_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_cves_get_serialize( + _param = self._index_naver_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200563,7 +200563,7 @@ def index_ncsc_cves_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", '404': "str", '500': "str", } @@ -200579,7 +200579,7 @@ def index_ncsc_cves_get( @validate_call - def index_ncsc_cves_get_with_http_info( + def index_naver_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -200617,10 +200617,10 @@ def index_ncsc_cves_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination]: - """Return vulnerability data stored in index \"ncsc-cves\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination]: + """Return vulnerability data stored in index \"naver\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` :param page: set the page number of the response :type page: int @@ -200692,7 +200692,7 @@ def index_ncsc_cves_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_cves_get_serialize( + _param = self._index_naver_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200724,7 +200724,7 @@ def index_ncsc_cves_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", '404': "str", '500': "str", } @@ -200740,7 +200740,7 @@ def index_ncsc_cves_get_with_http_info( @validate_call - def index_ncsc_cves_get_without_preload_content( + def index_naver_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -200779,9 +200779,9 @@ def index_ncsc_cves_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ncsc-cves\" + """Return vulnerability data stored in index \"naver\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the naver index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Naver Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/naver?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/naver?cursor=` :param page: set the page number of the response :type page: int @@ -200853,7 +200853,7 @@ def index_ncsc_cves_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_cves_get_serialize( + _param = self._index_naver_get_serialize( page=page, limit=limit, cursor=cursor, @@ -200885,7 +200885,7 @@ def index_ncsc_cves_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNaverPaginatePagination", '404': "str", '500': "str", } @@ -200896,7 +200896,7 @@ def index_ncsc_cves_get_without_preload_content( return response_data.response - def _index_ncsc_cves_get_serialize( + def _index_naver_get_serialize( self, page, limit, @@ -201064,7 +201064,7 @@ def _index_ncsc_cves_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ncsc-cves', + resource_path='/v3/index/naver', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -201081,7 +201081,7 @@ def _index_ncsc_cves_get_serialize( @validate_call - def index_ncsc_get( + def index_ncsc_cves_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201119,10 +201119,10 @@ def index_ncsc_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination: - """Return vulnerability data stored in index \"ncsc\" + ) -> RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination: + """Return vulnerability data stored in index \"ncsc-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` :param page: set the page number of the response :type page: int @@ -201194,7 +201194,7 @@ def index_ncsc_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_get_serialize( + _param = self._index_ncsc_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -201226,7 +201226,7 @@ def index_ncsc_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", '404': "str", '500': "str", } @@ -201242,7 +201242,7 @@ def index_ncsc_get( @validate_call - def index_ncsc_get_with_http_info( + def index_ncsc_cves_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201280,10 +201280,10 @@ def index_ncsc_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination]: - """Return vulnerability data stored in index \"ncsc\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination]: + """Return vulnerability data stored in index \"ncsc-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` :param page: set the page number of the response :type page: int @@ -201355,7 +201355,7 @@ def index_ncsc_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_get_serialize( + _param = self._index_ncsc_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -201387,7 +201387,7 @@ def index_ncsc_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", '404': "str", '500': "str", } @@ -201403,7 +201403,7 @@ def index_ncsc_get_with_http_info( @validate_call - def index_ncsc_get_without_preload_content( + def index_ncsc_cves_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201442,9 +201442,9 @@ def index_ncsc_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ncsc\" + """Return vulnerability data stored in index \"ncsc-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC CVEs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc-cves?cursor=` :param page: set the page number of the response :type page: int @@ -201516,7 +201516,7 @@ def index_ncsc_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ncsc_get_serialize( + _param = self._index_ncsc_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -201548,7 +201548,7 @@ def index_ncsc_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCCVEPaginatePagination", '404': "str", '500': "str", } @@ -201559,7 +201559,7 @@ def index_ncsc_get_without_preload_content( return response_data.response - def _index_ncsc_get_serialize( + def _index_ncsc_cves_get_serialize( self, page, limit, @@ -201727,7 +201727,7 @@ def _index_ncsc_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ncsc', + resource_path='/v3/index/ncsc-cves', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -201744,7 +201744,7 @@ def _index_ncsc_get_serialize( @validate_call - def index_nec_get( + def index_ncsc_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201782,10 +201782,10 @@ def index_nec_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination: - """Return vulnerability data stored in index \"nec\" + ) -> RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination: + """Return vulnerability data stored in index \"ncsc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` :param page: set the page number of the response :type page: int @@ -201857,7 +201857,7 @@ def index_nec_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nec_get_serialize( + _param = self._index_ncsc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -201889,7 +201889,7 @@ def index_nec_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", '404': "str", '500': "str", } @@ -201905,7 +201905,7 @@ def index_nec_get( @validate_call - def index_nec_get_with_http_info( + def index_ncsc_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -201943,10 +201943,10 @@ def index_nec_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination]: - """Return vulnerability data stored in index \"nec\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination]: + """Return vulnerability data stored in index \"ncsc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` :param page: set the page number of the response :type page: int @@ -202018,7 +202018,7 @@ def index_nec_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nec_get_serialize( + _param = self._index_ncsc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202050,7 +202050,7 @@ def index_nec_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", '404': "str", '500': "str", } @@ -202066,7 +202066,7 @@ def index_nec_get_with_http_info( @validate_call - def index_nec_get_without_preload_content( + def index_ncsc_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -202105,9 +202105,9 @@ def index_nec_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nec\" + """Return vulnerability data stored in index \"ncsc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ncsc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NCSC Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ncsc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ncsc?cursor=` :param page: set the page number of the response :type page: int @@ -202179,7 +202179,7 @@ def index_nec_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nec_get_serialize( + _param = self._index_ncsc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202211,7 +202211,7 @@ def index_nec_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNCSCPaginatePagination", '404': "str", '500': "str", } @@ -202222,7 +202222,7 @@ def index_nec_get_without_preload_content( return response_data.response - def _index_nec_get_serialize( + def _index_ncsc_get_serialize( self, page, limit, @@ -202390,7 +202390,7 @@ def _index_nec_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nec', + resource_path='/v3/index/ncsc', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -202407,7 +202407,7 @@ def _index_nec_get_serialize( @validate_call - def index_nessus_get( + def index_nec_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -202445,10 +202445,10 @@ def index_nessus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination: - """Return vulnerability data stored in index \"nessus\" + ) -> RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination: + """Return vulnerability data stored in index \"nec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` :param page: set the page number of the response :type page: int @@ -202520,7 +202520,7 @@ def index_nessus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nessus_get_serialize( + _param = self._index_nec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202552,7 +202552,7 @@ def index_nessus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", '404': "str", '500': "str", } @@ -202568,7 +202568,7 @@ def index_nessus_get( @validate_call - def index_nessus_get_with_http_info( + def index_nec_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -202606,10 +202606,10 @@ def index_nessus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination]: - """Return vulnerability data stored in index \"nessus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination]: + """Return vulnerability data stored in index \"nec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` :param page: set the page number of the response :type page: int @@ -202681,7 +202681,7 @@ def index_nessus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nessus_get_serialize( + _param = self._index_nec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202713,7 +202713,7 @@ def index_nessus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", '404': "str", '500': "str", } @@ -202729,7 +202729,7 @@ def index_nessus_get_with_http_info( @validate_call - def index_nessus_get_without_preload_content( + def index_nec_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -202768,9 +202768,9 @@ def index_nessus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nessus\" + """Return vulnerability data stored in index \"nec\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nec index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NEC Security Information Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nec?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nec?cursor=` :param page: set the page number of the response :type page: int @@ -202842,7 +202842,7 @@ def index_nessus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nessus_get_serialize( + _param = self._index_nec_get_serialize( page=page, limit=limit, cursor=cursor, @@ -202874,7 +202874,7 @@ def index_nessus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNECPaginatePagination", '404': "str", '500': "str", } @@ -202885,7 +202885,7 @@ def index_nessus_get_without_preload_content( return response_data.response - def _index_nessus_get_serialize( + def _index_nec_get_serialize( self, page, limit, @@ -203053,7 +203053,7 @@ def _index_nessus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nessus', + resource_path='/v3/index/nec', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -203070,7 +203070,7 @@ def _index_nessus_get_serialize( @validate_call - def index_netapp_get( + def index_nessus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203108,10 +203108,10 @@ def index_netapp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination: - """Return vulnerability data stored in index \"netapp\" + ) -> RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination: + """Return vulnerability data stored in index \"nessus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` :param page: set the page number of the response :type page: int @@ -203183,7 +203183,7 @@ def index_netapp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netapp_get_serialize( + _param = self._index_nessus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -203215,7 +203215,7 @@ def index_netapp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", '404': "str", '500': "str", } @@ -203231,7 +203231,7 @@ def index_netapp_get( @validate_call - def index_netapp_get_with_http_info( + def index_nessus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203269,10 +203269,10 @@ def index_netapp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination]: - """Return vulnerability data stored in index \"netapp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination]: + """Return vulnerability data stored in index \"nessus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` :param page: set the page number of the response :type page: int @@ -203344,7 +203344,7 @@ def index_netapp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netapp_get_serialize( + _param = self._index_nessus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -203376,7 +203376,7 @@ def index_netapp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", '404': "str", '500': "str", } @@ -203392,7 +203392,7 @@ def index_netapp_get_with_http_info( @validate_call - def index_netapp_get_without_preload_content( + def index_nessus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203431,9 +203431,9 @@ def index_netapp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netapp\" + """Return vulnerability data stored in index \"nessus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nessus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nessus Plugins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nessus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nessus?cursor=` :param page: set the page number of the response :type page: int @@ -203505,7 +203505,7 @@ def index_netapp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netapp_get_serialize( + _param = self._index_nessus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -203537,7 +203537,7 @@ def index_netapp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNessusPaginatePagination", '404': "str", '500': "str", } @@ -203548,7 +203548,7 @@ def index_netapp_get_without_preload_content( return response_data.response - def _index_netapp_get_serialize( + def _index_nessus_get_serialize( self, page, limit, @@ -203716,7 +203716,7 @@ def _index_netapp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netapp', + resource_path='/v3/index/nessus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -203733,7 +203733,7 @@ def _index_netapp_get_serialize( @validate_call - def index_netatalk_get( + def index_netapp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203771,10 +203771,10 @@ def index_netatalk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination: - """Return vulnerability data stored in index \"netatalk\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination: + """Return vulnerability data stored in index \"netapp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` :param page: set the page number of the response :type page: int @@ -203846,7 +203846,7 @@ def index_netatalk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netatalk_get_serialize( + _param = self._index_netapp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -203878,7 +203878,7 @@ def index_netatalk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", '404': "str", '500': "str", } @@ -203894,7 +203894,7 @@ def index_netatalk_get( @validate_call - def index_netatalk_get_with_http_info( + def index_netapp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -203932,10 +203932,10 @@ def index_netatalk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination]: - """Return vulnerability data stored in index \"netatalk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination]: + """Return vulnerability data stored in index \"netapp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` :param page: set the page number of the response :type page: int @@ -204007,7 +204007,7 @@ def index_netatalk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netatalk_get_serialize( + _param = self._index_netapp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204039,7 +204039,7 @@ def index_netatalk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", '404': "str", '500': "str", } @@ -204055,7 +204055,7 @@ def index_netatalk_get_with_http_info( @validate_call - def index_netatalk_get_without_preload_content( + def index_netapp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -204094,9 +204094,9 @@ def index_netatalk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netatalk\" + """Return vulnerability data stored in index \"netapp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netapp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NetApp Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netapp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netapp?cursor=` :param page: set the page number of the response :type page: int @@ -204168,7 +204168,7 @@ def index_netatalk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netatalk_get_serialize( + _param = self._index_netapp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204200,7 +204200,7 @@ def index_netatalk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetAppPaginatePagination", '404': "str", '500': "str", } @@ -204211,7 +204211,7 @@ def index_netatalk_get_without_preload_content( return response_data.response - def _index_netatalk_get_serialize( + def _index_netapp_get_serialize( self, page, limit, @@ -204379,7 +204379,7 @@ def _index_netatalk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netatalk', + resource_path='/v3/index/netapp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -204396,7 +204396,7 @@ def _index_netatalk_get_serialize( @validate_call - def index_netgate_get( + def index_netatalk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -204434,10 +204434,10 @@ def index_netgate_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination: - """Return vulnerability data stored in index \"netgate\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination: + """Return vulnerability data stored in index \"netatalk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` :param page: set the page number of the response :type page: int @@ -204509,7 +204509,7 @@ def index_netgate_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgate_get_serialize( + _param = self._index_netatalk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204541,7 +204541,7 @@ def index_netgate_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", '404': "str", '500': "str", } @@ -204557,7 +204557,7 @@ def index_netgate_get( @validate_call - def index_netgate_get_with_http_info( + def index_netatalk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -204595,10 +204595,10 @@ def index_netgate_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination]: - """Return vulnerability data stored in index \"netgate\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination]: + """Return vulnerability data stored in index \"netatalk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` :param page: set the page number of the response :type page: int @@ -204670,7 +204670,7 @@ def index_netgate_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgate_get_serialize( + _param = self._index_netatalk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204702,7 +204702,7 @@ def index_netgate_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", '404': "str", '500': "str", } @@ -204718,7 +204718,7 @@ def index_netgate_get_with_http_info( @validate_call - def index_netgate_get_without_preload_content( + def index_netatalk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -204757,9 +204757,9 @@ def index_netgate_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netgate\" + """Return vulnerability data stored in index \"netatalk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netatalk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netatalk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netatalk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netatalk?cursor=` :param page: set the page number of the response :type page: int @@ -204831,7 +204831,7 @@ def index_netgate_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgate_get_serialize( + _param = self._index_netatalk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -204863,7 +204863,7 @@ def index_netgate_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetatalkPaginatePagination", '404': "str", '500': "str", } @@ -204874,7 +204874,7 @@ def index_netgate_get_without_preload_content( return response_data.response - def _index_netgate_get_serialize( + def _index_netatalk_get_serialize( self, page, limit, @@ -205042,7 +205042,7 @@ def _index_netgate_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netgate', + resource_path='/v3/index/netatalk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -205059,7 +205059,7 @@ def _index_netgate_get_serialize( @validate_call - def index_netgear_get( + def index_netgate_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205097,10 +205097,10 @@ def index_netgear_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination: - """Return vulnerability data stored in index \"netgear\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination: + """Return vulnerability data stored in index \"netgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` :param page: set the page number of the response :type page: int @@ -205172,7 +205172,7 @@ def index_netgear_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgear_get_serialize( + _param = self._index_netgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -205204,7 +205204,7 @@ def index_netgear_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", '404': "str", '500': "str", } @@ -205220,7 +205220,7 @@ def index_netgear_get( @validate_call - def index_netgear_get_with_http_info( + def index_netgate_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205258,10 +205258,10 @@ def index_netgear_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination]: - """Return vulnerability data stored in index \"netgear\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination]: + """Return vulnerability data stored in index \"netgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` :param page: set the page number of the response :type page: int @@ -205333,7 +205333,7 @@ def index_netgear_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgear_get_serialize( + _param = self._index_netgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -205365,7 +205365,7 @@ def index_netgear_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", '404': "str", '500': "str", } @@ -205381,7 +205381,7 @@ def index_netgear_get_with_http_info( @validate_call - def index_netgear_get_without_preload_content( + def index_netgate_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205420,9 +205420,9 @@ def index_netgear_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netgear\" + """Return vulnerability data stored in index \"netgate\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgate index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netgate Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgate?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgate?cursor=` :param page: set the page number of the response :type page: int @@ -205494,7 +205494,7 @@ def index_netgear_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netgear_get_serialize( + _param = self._index_netgate_get_serialize( page=page, limit=limit, cursor=cursor, @@ -205526,7 +205526,7 @@ def index_netgear_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgatePaginatePagination", '404': "str", '500': "str", } @@ -205537,7 +205537,7 @@ def index_netgear_get_without_preload_content( return response_data.response - def _index_netgear_get_serialize( + def _index_netgate_get_serialize( self, page, limit, @@ -205705,7 +205705,7 @@ def _index_netgear_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netgear', + resource_path='/v3/index/netgate', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -205722,7 +205722,7 @@ def _index_netgear_get_serialize( @validate_call - def index_netskope_get( + def index_netgear_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205760,10 +205760,10 @@ def index_netskope_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination: - """Return vulnerability data stored in index \"netskope\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination: + """Return vulnerability data stored in index \"netgear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` :param page: set the page number of the response :type page: int @@ -205835,7 +205835,7 @@ def index_netskope_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netskope_get_serialize( + _param = self._index_netgear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -205867,7 +205867,7 @@ def index_netskope_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", '404': "str", '500': "str", } @@ -205883,7 +205883,7 @@ def index_netskope_get( @validate_call - def index_netskope_get_with_http_info( + def index_netgear_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -205921,10 +205921,10 @@ def index_netskope_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination]: - """Return vulnerability data stored in index \"netskope\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination]: + """Return vulnerability data stored in index \"netgear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` :param page: set the page number of the response :type page: int @@ -205996,7 +205996,7 @@ def index_netskope_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netskope_get_serialize( + _param = self._index_netgear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206028,7 +206028,7 @@ def index_netskope_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", '404': "str", '500': "str", } @@ -206044,7 +206044,7 @@ def index_netskope_get_with_http_info( @validate_call - def index_netskope_get_without_preload_content( + def index_netgear_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -206083,9 +206083,9 @@ def index_netskope_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"netskope\" + """Return vulnerability data stored in index \"netgear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netgear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NETGEAR Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netgear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netgear?cursor=` :param page: set the page number of the response :type page: int @@ -206157,7 +206157,7 @@ def index_netskope_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_netskope_get_serialize( + _param = self._index_netgear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206189,7 +206189,7 @@ def index_netskope_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetgearPaginatePagination", '404': "str", '500': "str", } @@ -206200,7 +206200,7 @@ def index_netskope_get_without_preload_content( return response_data.response - def _index_netskope_get_serialize( + def _index_netgear_get_serialize( self, page, limit, @@ -206368,7 +206368,7 @@ def _index_netskope_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/netskope', + resource_path='/v3/index/netgear', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -206385,7 +206385,7 @@ def _index_netskope_get_serialize( @validate_call - def index_nexpose_get( + def index_netskope_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -206423,10 +206423,10 @@ def index_nexpose_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination: - """Return vulnerability data stored in index \"nexpose\" + ) -> RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination: + """Return vulnerability data stored in index \"netskope\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` :param page: set the page number of the response :type page: int @@ -206498,7 +206498,7 @@ def index_nexpose_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nexpose_get_serialize( + _param = self._index_netskope_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206530,7 +206530,7 @@ def index_nexpose_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", '404': "str", '500': "str", } @@ -206546,7 +206546,7 @@ def index_nexpose_get( @validate_call - def index_nexpose_get_with_http_info( + def index_netskope_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -206584,10 +206584,10 @@ def index_nexpose_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination]: - """Return vulnerability data stored in index \"nexpose\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination]: + """Return vulnerability data stored in index \"netskope\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` :param page: set the page number of the response :type page: int @@ -206659,7 +206659,7 @@ def index_nexpose_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nexpose_get_serialize( + _param = self._index_netskope_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206691,7 +206691,7 @@ def index_nexpose_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", '404': "str", '500': "str", } @@ -206707,7 +206707,7 @@ def index_nexpose_get_with_http_info( @validate_call - def index_nexpose_get_without_preload_content( + def index_netskope_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -206746,9 +206746,9 @@ def index_nexpose_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nexpose\" + """Return vulnerability data stored in index \"netskope\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the netskope index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Netskope Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/netskope?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/netskope?cursor=` :param page: set the page number of the response :type page: int @@ -206820,7 +206820,7 @@ def index_nexpose_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nexpose_get_serialize( + _param = self._index_netskope_get_serialize( page=page, limit=limit, cursor=cursor, @@ -206852,7 +206852,7 @@ def index_nexpose_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNetskopePaginatePagination", '404': "str", '500': "str", } @@ -206863,7 +206863,7 @@ def index_nexpose_get_without_preload_content( return response_data.response - def _index_nexpose_get_serialize( + def _index_netskope_get_serialize( self, page, limit, @@ -207031,7 +207031,7 @@ def _index_nexpose_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nexpose', + resource_path='/v3/index/netskope', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -207048,7 +207048,7 @@ def _index_nexpose_get_serialize( @validate_call - def index_nginx_get( + def index_nexpose_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207086,10 +207086,10 @@ def index_nginx_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"nginx\" + ) -> RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination: + """Return vulnerability data stored in index \"nexpose\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` :param page: set the page number of the response :type page: int @@ -207161,7 +207161,7 @@ def index_nginx_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nginx_get_serialize( + _param = self._index_nexpose_get_serialize( page=page, limit=limit, cursor=cursor, @@ -207193,7 +207193,7 @@ def index_nginx_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", '404': "str", '500': "str", } @@ -207209,7 +207209,7 @@ def index_nginx_get( @validate_call - def index_nginx_get_with_http_info( + def index_nexpose_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207247,10 +207247,10 @@ def index_nginx_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"nginx\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination]: + """Return vulnerability data stored in index \"nexpose\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` :param page: set the page number of the response :type page: int @@ -207322,7 +207322,7 @@ def index_nginx_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nginx_get_serialize( + _param = self._index_nexpose_get_serialize( page=page, limit=limit, cursor=cursor, @@ -207354,7 +207354,7 @@ def index_nginx_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", '404': "str", '500': "str", } @@ -207370,7 +207370,7 @@ def index_nginx_get_with_http_info( @validate_call - def index_nginx_get_without_preload_content( + def index_nexpose_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207409,9 +207409,9 @@ def index_nginx_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nginx\" + """Return vulnerability data stored in index \"nexpose\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nexpose index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nexpose Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nexpose?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nexpose?cursor=` :param page: set the page number of the response :type page: int @@ -207483,7 +207483,7 @@ def index_nginx_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nginx_get_serialize( + _param = self._index_nexpose_get_serialize( page=page, limit=limit, cursor=cursor, @@ -207515,7 +207515,7 @@ def index_nginx_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNexposePaginatePagination", '404': "str", '500': "str", } @@ -207526,7 +207526,7 @@ def index_nginx_get_without_preload_content( return response_data.response - def _index_nginx_get_serialize( + def _index_nexpose_get_serialize( self, page, limit, @@ -207694,7 +207694,7 @@ def _index_nginx_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nginx', + resource_path='/v3/index/nexpose', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -207711,7 +207711,7 @@ def _index_nginx_get_serialize( @validate_call - def index_nhs_get( + def index_nginx_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207749,10 +207749,10 @@ def index_nhs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination: - """Return vulnerability data stored in index \"nhs\" + ) -> RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"nginx\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` :param page: set the page number of the response :type page: int @@ -207824,7 +207824,7 @@ def index_nhs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nhs_get_serialize( + _param = self._index_nginx_get_serialize( page=page, limit=limit, cursor=cursor, @@ -207856,7 +207856,7 @@ def index_nhs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -207872,7 +207872,7 @@ def index_nhs_get( @validate_call - def index_nhs_get_with_http_info( + def index_nginx_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -207910,10 +207910,10 @@ def index_nhs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination]: - """Return vulnerability data stored in index \"nhs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"nginx\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` :param page: set the page number of the response :type page: int @@ -207985,7 +207985,7 @@ def index_nhs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nhs_get_serialize( + _param = self._index_nginx_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208017,7 +208017,7 @@ def index_nhs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -208033,7 +208033,7 @@ def index_nhs_get_with_http_info( @validate_call - def index_nhs_get_without_preload_content( + def index_nginx_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -208072,9 +208072,9 @@ def index_nhs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nhs\" + """Return vulnerability data stored in index \"nginx\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nginx index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nginx Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nginx?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nginx?cursor=` :param page: set the page number of the response :type page: int @@ -208146,7 +208146,7 @@ def index_nhs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nhs_get_serialize( + _param = self._index_nginx_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208178,7 +208178,7 @@ def index_nhs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNginxAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -208189,7 +208189,7 @@ def index_nhs_get_without_preload_content( return response_data.response - def _index_nhs_get_serialize( + def _index_nginx_get_serialize( self, page, limit, @@ -208357,7 +208357,7 @@ def _index_nhs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nhs', + resource_path='/v3/index/nginx', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -208374,7 +208374,7 @@ def _index_nhs_get_serialize( @validate_call - def index_ni_get( + def index_nhs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -208412,10 +208412,10 @@ def index_ni_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination: - """Return vulnerability data stored in index \"ni\" + ) -> RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination: + """Return vulnerability data stored in index \"nhs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` :param page: set the page number of the response :type page: int @@ -208487,7 +208487,7 @@ def index_ni_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ni_get_serialize( + _param = self._index_nhs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208519,7 +208519,7 @@ def index_ni_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", '404': "str", '500': "str", } @@ -208535,7 +208535,7 @@ def index_ni_get( @validate_call - def index_ni_get_with_http_info( + def index_nhs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -208573,10 +208573,10 @@ def index_ni_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination]: - """Return vulnerability data stored in index \"ni\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination]: + """Return vulnerability data stored in index \"nhs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` :param page: set the page number of the response :type page: int @@ -208648,7 +208648,7 @@ def index_ni_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ni_get_serialize( + _param = self._index_nhs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208680,7 +208680,7 @@ def index_ni_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", '404': "str", '500': "str", } @@ -208696,7 +208696,7 @@ def index_ni_get_with_http_info( @validate_call - def index_ni_get_without_preload_content( + def index_nhs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -208735,9 +208735,9 @@ def index_ni_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ni\" + """Return vulnerability data stored in index \"nhs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nhs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NHS Cyber Alerts ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nhs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nhs?cursor=` :param page: set the page number of the response :type page: int @@ -208809,7 +208809,7 @@ def index_ni_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ni_get_serialize( + _param = self._index_nhs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -208841,7 +208841,7 @@ def index_ni_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNHSPaginatePagination", '404': "str", '500': "str", } @@ -208852,7 +208852,7 @@ def index_ni_get_without_preload_content( return response_data.response - def _index_ni_get_serialize( + def _index_nhs_get_serialize( self, page, limit, @@ -209020,7 +209020,7 @@ def _index_ni_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ni', + resource_path='/v3/index/nhs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -209037,7 +209037,7 @@ def _index_ni_get_serialize( @validate_call - def index_nist_nvd2_cpematch_get( + def index_ni_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209075,10 +209075,10 @@ def index_nist_nvd2_cpematch_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination: - """Return vulnerability data stored in index \"nist-nvd2-cpematch\" + ) -> RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination: + """Return vulnerability data stored in index \"ni\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` :param page: set the page number of the response :type page: int @@ -209150,7 +209150,7 @@ def index_nist_nvd2_cpematch_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_cpematch_get_serialize( + _param = self._index_ni_get_serialize( page=page, limit=limit, cursor=cursor, @@ -209182,7 +209182,7 @@ def index_nist_nvd2_cpematch_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", '404': "str", '500': "str", } @@ -209198,7 +209198,7 @@ def index_nist_nvd2_cpematch_get( @validate_call - def index_nist_nvd2_cpematch_get_with_http_info( + def index_ni_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209236,10 +209236,10 @@ def index_nist_nvd2_cpematch_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination]: - """Return vulnerability data stored in index \"nist-nvd2-cpematch\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination]: + """Return vulnerability data stored in index \"ni\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` :param page: set the page number of the response :type page: int @@ -209311,7 +209311,7 @@ def index_nist_nvd2_cpematch_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_cpematch_get_serialize( + _param = self._index_ni_get_serialize( page=page, limit=limit, cursor=cursor, @@ -209343,7 +209343,7 @@ def index_nist_nvd2_cpematch_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", '404': "str", '500': "str", } @@ -209359,7 +209359,7 @@ def index_nist_nvd2_cpematch_get_with_http_info( @validate_call - def index_nist_nvd2_cpematch_get_without_preload_content( + def index_ni_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209398,9 +209398,9 @@ def index_nist_nvd2_cpematch_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nist-nvd2-cpematch\" + """Return vulnerability data stored in index \"ni\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ni index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** National Instruments Security Updates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ni?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ni?cursor=` :param page: set the page number of the response :type page: int @@ -209472,7 +209472,7 @@ def index_nist_nvd2_cpematch_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_cpematch_get_serialize( + _param = self._index_ni_get_serialize( page=page, limit=limit, cursor=cursor, @@ -209504,7 +209504,7 @@ def index_nist_nvd2_cpematch_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNIPaginatePagination", '404': "str", '500': "str", } @@ -209515,7 +209515,7 @@ def index_nist_nvd2_cpematch_get_without_preload_content( return response_data.response - def _index_nist_nvd2_cpematch_get_serialize( + def _index_ni_get_serialize( self, page, limit, @@ -209683,7 +209683,7 @@ def _index_nist_nvd2_cpematch_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nist-nvd2-cpematch', + resource_path='/v3/index/ni', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -209700,7 +209700,7 @@ def _index_nist_nvd2_cpematch_get_serialize( @validate_call - def index_nist_nvd2_get( + def index_nist_nvd2_cpematch_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209738,10 +209738,10 @@ def index_nist_nvd2_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination: - """Return vulnerability data stored in index \"nist-nvd2\" + ) -> RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination: + """Return vulnerability data stored in index \"nist-nvd2-cpematch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` :param page: set the page number of the response :type page: int @@ -209813,7 +209813,7 @@ def index_nist_nvd2_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_get_serialize( + _param = self._index_nist_nvd2_cpematch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -209845,7 +209845,7 @@ def index_nist_nvd2_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", '404': "str", '500': "str", } @@ -209861,7 +209861,7 @@ def index_nist_nvd2_get( @validate_call - def index_nist_nvd2_get_with_http_info( + def index_nist_nvd2_cpematch_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -209899,10 +209899,10 @@ def index_nist_nvd2_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination]: - """Return vulnerability data stored in index \"nist-nvd2\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination]: + """Return vulnerability data stored in index \"nist-nvd2-cpematch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` :param page: set the page number of the response :type page: int @@ -209974,7 +209974,7 @@ def index_nist_nvd2_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_get_serialize( + _param = self._index_nist_nvd2_cpematch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210006,7 +210006,7 @@ def index_nist_nvd2_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", '404': "str", '500': "str", } @@ -210022,7 +210022,7 @@ def index_nist_nvd2_get_with_http_info( @validate_call - def index_nist_nvd2_get_without_preload_content( + def index_nist_nvd2_cpematch_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -210061,9 +210061,9 @@ def index_nist_nvd2_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nist-nvd2\" + """Return vulnerability data stored in index \"nist-nvd2-cpematch\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-cpematch index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 CPE Match ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-cpematch?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-cpematch?cursor=` :param page: set the page number of the response :type page: int @@ -210135,7 +210135,7 @@ def index_nist_nvd2_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_get_serialize( + _param = self._index_nist_nvd2_cpematch_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210167,7 +210167,7 @@ def index_nist_nvd2_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CPEMatchPaginatePagination", '404': "str", '500': "str", } @@ -210178,7 +210178,7 @@ def index_nist_nvd2_get_without_preload_content( return response_data.response - def _index_nist_nvd2_get_serialize( + def _index_nist_nvd2_cpematch_get_serialize( self, page, limit, @@ -210346,7 +210346,7 @@ def _index_nist_nvd2_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nist-nvd2', + resource_path='/v3/index/nist-nvd2-cpematch', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -210363,7 +210363,7 @@ def _index_nist_nvd2_get_serialize( @validate_call - def index_nist_nvd2_sources_get( + def index_nist_nvd2_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -210401,10 +210401,10 @@ def index_nist_nvd2_sources_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination: - """Return vulnerability data stored in index \"nist-nvd2-sources\" + ) -> RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination: + """Return vulnerability data stored in index \"nist-nvd2\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` :param page: set the page number of the response :type page: int @@ -210476,7 +210476,7 @@ def index_nist_nvd2_sources_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_sources_get_serialize( + _param = self._index_nist_nvd2_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210508,7 +210508,7 @@ def index_nist_nvd2_sources_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", '404': "str", '500': "str", } @@ -210524,7 +210524,7 @@ def index_nist_nvd2_sources_get( @validate_call - def index_nist_nvd2_sources_get_with_http_info( + def index_nist_nvd2_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -210562,10 +210562,10 @@ def index_nist_nvd2_sources_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination]: - """Return vulnerability data stored in index \"nist-nvd2-sources\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination]: + """Return vulnerability data stored in index \"nist-nvd2\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` :param page: set the page number of the response :type page: int @@ -210637,7 +210637,7 @@ def index_nist_nvd2_sources_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_sources_get_serialize( + _param = self._index_nist_nvd2_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210669,7 +210669,7 @@ def index_nist_nvd2_sources_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", '404': "str", '500': "str", } @@ -210685,7 +210685,7 @@ def index_nist_nvd2_sources_get_with_http_info( @validate_call - def index_nist_nvd2_sources_get_without_preload_content( + def index_nist_nvd2_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -210724,9 +210724,9 @@ def index_nist_nvd2_sources_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nist-nvd2-sources\" + """Return vulnerability data stored in index \"nist-nvd2\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2 index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2?cursor=` :param page: set the page number of the response :type page: int @@ -210798,7 +210798,7 @@ def index_nist_nvd2_sources_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd2_sources_get_serialize( + _param = self._index_nist_nvd2_get_serialize( page=page, limit=limit, cursor=cursor, @@ -210830,7 +210830,7 @@ def index_nist_nvd2_sources_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination", '404': "str", '500': "str", } @@ -210841,7 +210841,7 @@ def index_nist_nvd2_sources_get_without_preload_content( return response_data.response - def _index_nist_nvd2_sources_get_serialize( + def _index_nist_nvd2_get_serialize( self, page, limit, @@ -211009,7 +211009,7 @@ def _index_nist_nvd2_sources_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nist-nvd2-sources', + resource_path='/v3/index/nist-nvd2', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -211026,7 +211026,7 @@ def _index_nist_nvd2_sources_get_serialize( @validate_call - def index_nist_nvd_get( + def index_nist_nvd2_sources_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211064,10 +211064,10 @@ def index_nist_nvd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiCveItemsPaginatePagination: - """Return vulnerability data stored in index \"nist-nvd\" + ) -> RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination: + """Return vulnerability data stored in index \"nist-nvd2-sources\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` :param page: set the page number of the response :type page: int @@ -211139,7 +211139,7 @@ def index_nist_nvd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd_get_serialize( + _param = self._index_nist_nvd2_sources_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211171,7 +211171,7 @@ def index_nist_nvd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", '404': "str", '500': "str", } @@ -211187,7 +211187,7 @@ def index_nist_nvd_get( @validate_call - def index_nist_nvd_get_with_http_info( + def index_nist_nvd2_sources_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211225,10 +211225,10 @@ def index_nist_nvd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiCveItemsPaginatePagination]: - """Return vulnerability data stored in index \"nist-nvd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination]: + """Return vulnerability data stored in index \"nist-nvd2-sources\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` :param page: set the page number of the response :type page: int @@ -211300,7 +211300,7 @@ def index_nist_nvd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd_get_serialize( + _param = self._index_nist_nvd2_sources_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211332,7 +211332,7 @@ def index_nist_nvd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", '404': "str", '500': "str", } @@ -211348,7 +211348,7 @@ def index_nist_nvd_get_with_http_info( @validate_call - def index_nist_nvd_get_without_preload_content( + def index_nist_nvd2_sources_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211387,9 +211387,9 @@ def index_nist_nvd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nist-nvd\" + """Return vulnerability data stored in index \"nist-nvd2-sources\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd2-sources index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 2.0 Source Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd2-sources?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd2-sources?cursor=` :param page: set the page number of the response :type page: int @@ -211461,7 +211461,7 @@ def index_nist_nvd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nist_nvd_get_serialize( + _param = self._index_nist_nvd2_sources_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211493,7 +211493,7 @@ def index_nist_nvd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVD20SourcePaginatePagination", '404': "str", '500': "str", } @@ -211504,7 +211504,7 @@ def index_nist_nvd_get_without_preload_content( return response_data.response - def _index_nist_nvd_get_serialize( + def _index_nist_nvd2_sources_get_serialize( self, page, limit, @@ -211672,7 +211672,7 @@ def _index_nist_nvd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nist-nvd', + resource_path='/v3/index/nist-nvd2-sources', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -211689,7 +211689,7 @@ def _index_nist_nvd_get_serialize( @validate_call - def index_node_security_get( + def index_nist_nvd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211727,10 +211727,10 @@ def index_node_security_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination: - """Return vulnerability data stored in index \"node-security\" + ) -> RenderResponseWithMetadataArrayApiCveItemsPaginatePagination: + """Return vulnerability data stored in index \"nist-nvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` :param page: set the page number of the response :type page: int @@ -211802,7 +211802,7 @@ def index_node_security_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_node_security_get_serialize( + _param = self._index_nist_nvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211834,7 +211834,7 @@ def index_node_security_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", '404': "str", '500': "str", } @@ -211850,7 +211850,7 @@ def index_node_security_get( @validate_call - def index_node_security_get_with_http_info( + def index_nist_nvd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -211888,10 +211888,10 @@ def index_node_security_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination]: - """Return vulnerability data stored in index \"node-security\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiCveItemsPaginatePagination]: + """Return vulnerability data stored in index \"nist-nvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` :param page: set the page number of the response :type page: int @@ -211963,7 +211963,7 @@ def index_node_security_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_node_security_get_serialize( + _param = self._index_nist_nvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -211995,7 +211995,7 @@ def index_node_security_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", '404': "str", '500': "str", } @@ -212011,7 +212011,7 @@ def index_node_security_get_with_http_info( @validate_call - def index_node_security_get_without_preload_content( + def index_nist_nvd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -212050,9 +212050,9 @@ def index_node_security_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"node-security\" + """Return vulnerability data stored in index \"nist-nvd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nist-nvd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NIST NVD 1.0 CVE data built from NIST NVD 2.0 CVE Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nist-nvd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nist-nvd?cursor=` :param page: set the page number of the response :type page: int @@ -212124,7 +212124,7 @@ def index_node_security_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_node_security_get_serialize( + _param = self._index_nist_nvd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -212156,7 +212156,7 @@ def index_node_security_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiCveItemsPaginatePagination", '404': "str", '500': "str", } @@ -212167,7 +212167,7 @@ def index_node_security_get_without_preload_content( return response_data.response - def _index_node_security_get_serialize( + def _index_nist_nvd_get_serialize( self, page, limit, @@ -212335,7 +212335,7 @@ def _index_node_security_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/node-security', + resource_path='/v3/index/nist-nvd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -212352,7 +212352,7 @@ def _index_node_security_get_serialize( @validate_call - def index_nodejs_get( + def index_node_security_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -212390,10 +212390,10 @@ def index_nodejs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination: - """Return vulnerability data stored in index \"nodejs\" + ) -> RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination: + """Return vulnerability data stored in index \"node-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` :param page: set the page number of the response :type page: int @@ -212465,7 +212465,7 @@ def index_nodejs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nodejs_get_serialize( + _param = self._index_node_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -212497,7 +212497,7 @@ def index_nodejs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", '404': "str", '500': "str", } @@ -212513,7 +212513,7 @@ def index_nodejs_get( @validate_call - def index_nodejs_get_with_http_info( + def index_node_security_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -212551,10 +212551,10 @@ def index_nodejs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination]: - """Return vulnerability data stored in index \"nodejs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination]: + """Return vulnerability data stored in index \"node-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` :param page: set the page number of the response :type page: int @@ -212626,7 +212626,7 @@ def index_nodejs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nodejs_get_serialize( + _param = self._index_node_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -212658,7 +212658,7 @@ def index_nodejs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", '404': "str", '500': "str", } @@ -212674,7 +212674,7 @@ def index_nodejs_get_with_http_info( @validate_call - def index_nodejs_get_without_preload_content( + def index_node_security_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -212713,9 +212713,9 @@ def index_nodejs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nodejs\" + """Return vulnerability data stored in index \"node-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the node-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Node.js Security Working Group Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/node-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/node-security?cursor=` :param page: set the page number of the response :type page: int @@ -212787,7 +212787,7 @@ def index_nodejs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nodejs_get_serialize( + _param = self._index_node_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -212819,7 +212819,7 @@ def index_nodejs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeSecurityPaginatePagination", '404': "str", '500': "str", } @@ -212830,7 +212830,7 @@ def index_nodejs_get_without_preload_content( return response_data.response - def _index_nodejs_get_serialize( + def _index_node_security_get_serialize( self, page, limit, @@ -212998,7 +212998,7 @@ def _index_nodejs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nodejs', + resource_path='/v3/index/node-security', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -213015,7 +213015,7 @@ def _index_nodejs_get_serialize( @validate_call - def index_nokia_get( + def index_nodejs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213053,10 +213053,10 @@ def index_nokia_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination: - """Return vulnerability data stored in index \"nokia\" + ) -> RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination: + """Return vulnerability data stored in index \"nodejs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` :param page: set the page number of the response :type page: int @@ -213128,7 +213128,7 @@ def index_nokia_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nokia_get_serialize( + _param = self._index_nodejs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213160,7 +213160,7 @@ def index_nokia_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", '404': "str", '500': "str", } @@ -213176,7 +213176,7 @@ def index_nokia_get( @validate_call - def index_nokia_get_with_http_info( + def index_nodejs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213214,10 +213214,10 @@ def index_nokia_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination]: - """Return vulnerability data stored in index \"nokia\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination]: + """Return vulnerability data stored in index \"nodejs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` :param page: set the page number of the response :type page: int @@ -213289,7 +213289,7 @@ def index_nokia_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nokia_get_serialize( + _param = self._index_nodejs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213321,7 +213321,7 @@ def index_nokia_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", '404': "str", '500': "str", } @@ -213337,7 +213337,7 @@ def index_nokia_get_with_http_info( @validate_call - def index_nokia_get_without_preload_content( + def index_nodejs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213376,9 +213376,9 @@ def index_nokia_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nokia\" + """Return vulnerability data stored in index \"nodejs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nodejs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NodeJS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nodejs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nodejs?cursor=` :param page: set the page number of the response :type page: int @@ -213450,7 +213450,7 @@ def index_nokia_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nokia_get_serialize( + _param = self._index_nodejs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213482,7 +213482,7 @@ def index_nokia_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNodeJSPaginatePagination", '404': "str", '500': "str", } @@ -213493,7 +213493,7 @@ def index_nokia_get_without_preload_content( return response_data.response - def _index_nokia_get_serialize( + def _index_nodejs_get_serialize( self, page, limit, @@ -213661,7 +213661,7 @@ def _index_nokia_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nokia', + resource_path='/v3/index/nodejs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -213678,7 +213678,7 @@ def _index_nokia_get_serialize( @validate_call - def index_notepadplusplus_get( + def index_nokia_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213716,10 +213716,10 @@ def index_notepadplusplus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination: - """Return vulnerability data stored in index \"notepadplusplus\" + ) -> RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination: + """Return vulnerability data stored in index \"nokia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` :param page: set the page number of the response :type page: int @@ -213791,7 +213791,7 @@ def index_notepadplusplus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_notepadplusplus_get_serialize( + _param = self._index_nokia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213823,7 +213823,7 @@ def index_notepadplusplus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", '404': "str", '500': "str", } @@ -213839,7 +213839,7 @@ def index_notepadplusplus_get( @validate_call - def index_notepadplusplus_get_with_http_info( + def index_nokia_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -213877,10 +213877,10 @@ def index_notepadplusplus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination]: - """Return vulnerability data stored in index \"notepadplusplus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination]: + """Return vulnerability data stored in index \"nokia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` :param page: set the page number of the response :type page: int @@ -213952,7 +213952,7 @@ def index_notepadplusplus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_notepadplusplus_get_serialize( + _param = self._index_nokia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -213984,7 +213984,7 @@ def index_notepadplusplus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", '404': "str", '500': "str", } @@ -214000,7 +214000,7 @@ def index_notepadplusplus_get_with_http_info( @validate_call - def index_notepadplusplus_get_without_preload_content( + def index_nokia_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -214039,9 +214039,9 @@ def index_notepadplusplus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"notepadplusplus\" + """Return vulnerability data stored in index \"nokia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nokia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nokia Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nokia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nokia?cursor=` :param page: set the page number of the response :type page: int @@ -214113,7 +214113,7 @@ def index_notepadplusplus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_notepadplusplus_get_serialize( + _param = self._index_nokia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -214145,7 +214145,7 @@ def index_notepadplusplus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNokiaPaginatePagination", '404': "str", '500': "str", } @@ -214156,7 +214156,7 @@ def index_notepadplusplus_get_without_preload_content( return response_data.response - def _index_notepadplusplus_get_serialize( + def _index_nokia_get_serialize( self, page, limit, @@ -214324,7 +214324,7 @@ def _index_notepadplusplus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/notepadplusplus', + resource_path='/v3/index/nokia', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -214341,7 +214341,7 @@ def _index_notepadplusplus_get_serialize( @validate_call - def index_nozomi_get( + def index_notepadplusplus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -214379,10 +214379,10 @@ def index_nozomi_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination: - """Return vulnerability data stored in index \"nozomi\" + ) -> RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination: + """Return vulnerability data stored in index \"notepadplusplus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` :param page: set the page number of the response :type page: int @@ -214454,7 +214454,7 @@ def index_nozomi_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nozomi_get_serialize( + _param = self._index_notepadplusplus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -214486,7 +214486,7 @@ def index_nozomi_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", '404': "str", '500': "str", } @@ -214502,7 +214502,7 @@ def index_nozomi_get( @validate_call - def index_nozomi_get_with_http_info( + def index_notepadplusplus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -214540,10 +214540,10 @@ def index_nozomi_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination]: - """Return vulnerability data stored in index \"nozomi\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination]: + """Return vulnerability data stored in index \"notepadplusplus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` :param page: set the page number of the response :type page: int @@ -214615,7 +214615,7 @@ def index_nozomi_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nozomi_get_serialize( + _param = self._index_notepadplusplus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -214647,7 +214647,7 @@ def index_nozomi_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", '404': "str", '500': "str", } @@ -214663,7 +214663,7 @@ def index_nozomi_get_with_http_info( @validate_call - def index_nozomi_get_without_preload_content( + def index_notepadplusplus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -214702,9 +214702,9 @@ def index_nozomi_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nozomi\" + """Return vulnerability data stored in index \"notepadplusplus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the notepadplusplus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Notepad++ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/notepadplusplus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/notepadplusplus?cursor=` :param page: set the page number of the response :type page: int @@ -214776,7 +214776,7 @@ def index_nozomi_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nozomi_get_serialize( + _param = self._index_notepadplusplus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -214808,7 +214808,7 @@ def index_nozomi_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNotePadPlusPlusPaginatePagination", '404': "str", '500': "str", } @@ -214819,7 +214819,7 @@ def index_nozomi_get_without_preload_content( return response_data.response - def _index_nozomi_get_serialize( + def _index_notepadplusplus_get_serialize( self, page, limit, @@ -214987,7 +214987,7 @@ def _index_nozomi_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nozomi', + resource_path='/v3/index/notepadplusplus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -215004,7 +215004,7 @@ def _index_nozomi_get_serialize( @validate_call - def index_npm_get( + def index_nozomi_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215042,10 +215042,10 @@ def index_npm_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"npm\" + ) -> RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination: + """Return vulnerability data stored in index \"nozomi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` :param page: set the page number of the response :type page: int @@ -215117,7 +215117,7 @@ def index_npm_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_npm_get_serialize( + _param = self._index_nozomi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215149,7 +215149,7 @@ def index_npm_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", '404': "str", '500': "str", } @@ -215165,7 +215165,7 @@ def index_npm_get( @validate_call - def index_npm_get_with_http_info( + def index_nozomi_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215203,10 +215203,10 @@ def index_npm_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"npm\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination]: + """Return vulnerability data stored in index \"nozomi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` :param page: set the page number of the response :type page: int @@ -215278,7 +215278,7 @@ def index_npm_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_npm_get_serialize( + _param = self._index_nozomi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215310,7 +215310,7 @@ def index_npm_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", '404': "str", '500': "str", } @@ -215326,7 +215326,7 @@ def index_npm_get_with_http_info( @validate_call - def index_npm_get_without_preload_content( + def index_nozomi_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215365,9 +215365,9 @@ def index_npm_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"npm\" + """Return vulnerability data stored in index \"nozomi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nozomi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nozomi Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nozomi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nozomi?cursor=` :param page: set the page number of the response :type page: int @@ -215439,7 +215439,7 @@ def index_npm_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_npm_get_serialize( + _param = self._index_nozomi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215471,7 +215471,7 @@ def index_npm_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNozomiPaginatePagination", '404': "str", '500': "str", } @@ -215482,7 +215482,7 @@ def index_npm_get_without_preload_content( return response_data.response - def _index_npm_get_serialize( + def _index_nozomi_get_serialize( self, page, limit, @@ -215650,7 +215650,7 @@ def _index_npm_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/npm', + resource_path='/v3/index/nozomi', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -215667,7 +215667,7 @@ def _index_npm_get_serialize( @validate_call - def index_ntp_get( + def index_npm_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215705,10 +215705,10 @@ def index_ntp_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination: - """Return vulnerability data stored in index \"ntp\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"npm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` :param page: set the page number of the response :type page: int @@ -215780,7 +215780,7 @@ def index_ntp_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ntp_get_serialize( + _param = self._index_npm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215812,7 +215812,7 @@ def index_ntp_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -215828,7 +215828,7 @@ def index_ntp_get( @validate_call - def index_ntp_get_with_http_info( + def index_npm_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -215866,10 +215866,10 @@ def index_ntp_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination]: - """Return vulnerability data stored in index \"ntp\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"npm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` :param page: set the page number of the response :type page: int @@ -215941,7 +215941,7 @@ def index_ntp_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ntp_get_serialize( + _param = self._index_npm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -215973,7 +215973,7 @@ def index_ntp_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -215989,7 +215989,7 @@ def index_ntp_get_with_http_info( @validate_call - def index_ntp_get_without_preload_content( + def index_npm_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -216028,9 +216028,9 @@ def index_ntp_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ntp\" + """Return vulnerability data stored in index \"npm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the npm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NPM (JS/TS) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/npm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/npm?cursor=` :param page: set the page number of the response :type page: int @@ -216102,7 +216102,7 @@ def index_ntp_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ntp_get_serialize( + _param = self._index_npm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -216134,7 +216134,7 @@ def index_ntp_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -216145,7 +216145,7 @@ def index_ntp_get_without_preload_content( return response_data.response - def _index_ntp_get_serialize( + def _index_npm_get_serialize( self, page, limit, @@ -216313,7 +216313,7 @@ def _index_ntp_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ntp', + resource_path='/v3/index/npm', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -216330,7 +216330,7 @@ def _index_ntp_get_serialize( @validate_call - def index_nuclei_get( + def index_ntp_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -216368,10 +216368,10 @@ def index_nuclei_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination: - """Return vulnerability data stored in index \"nuclei\" + ) -> RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination: + """Return vulnerability data stored in index \"ntp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` :param page: set the page number of the response :type page: int @@ -216443,7 +216443,7 @@ def index_nuclei_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuclei_get_serialize( + _param = self._index_ntp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -216475,7 +216475,7 @@ def index_nuclei_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", '404': "str", '500': "str", } @@ -216491,7 +216491,7 @@ def index_nuclei_get( @validate_call - def index_nuclei_get_with_http_info( + def index_ntp_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -216529,10 +216529,10 @@ def index_nuclei_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination]: - """Return vulnerability data stored in index \"nuclei\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination]: + """Return vulnerability data stored in index \"ntp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` :param page: set the page number of the response :type page: int @@ -216604,7 +216604,7 @@ def index_nuclei_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuclei_get_serialize( + _param = self._index_ntp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -216636,7 +216636,7 @@ def index_nuclei_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", '404': "str", '500': "str", } @@ -216652,7 +216652,7 @@ def index_nuclei_get_with_http_info( @validate_call - def index_nuclei_get_without_preload_content( + def index_ntp_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -216691,9 +216691,9 @@ def index_nuclei_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nuclei\" + """Return vulnerability data stored in index \"ntp\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ntp index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NTP Security Issues ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ntp?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ntp?cursor=` :param page: set the page number of the response :type page: int @@ -216765,7 +216765,7 @@ def index_nuclei_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuclei_get_serialize( + _param = self._index_ntp_get_serialize( page=page, limit=limit, cursor=cursor, @@ -216797,7 +216797,7 @@ def index_nuclei_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNTPPaginatePagination", '404': "str", '500': "str", } @@ -216808,7 +216808,7 @@ def index_nuclei_get_without_preload_content( return response_data.response - def _index_nuclei_get_serialize( + def _index_ntp_get_serialize( self, page, limit, @@ -216976,7 +216976,7 @@ def _index_nuclei_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nuclei', + resource_path='/v3/index/ntp', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -216993,7 +216993,7 @@ def _index_nuclei_get_serialize( @validate_call - def index_nuget_get( + def index_nuclei_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217031,10 +217031,10 @@ def index_nuget_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"nuget\" + ) -> RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination: + """Return vulnerability data stored in index \"nuclei\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` :param page: set the page number of the response :type page: int @@ -217106,7 +217106,7 @@ def index_nuget_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuget_get_serialize( + _param = self._index_nuclei_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217138,7 +217138,7 @@ def index_nuget_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", '404': "str", '500': "str", } @@ -217154,7 +217154,7 @@ def index_nuget_get( @validate_call - def index_nuget_get_with_http_info( + def index_nuclei_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217192,10 +217192,10 @@ def index_nuget_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"nuget\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination]: + """Return vulnerability data stored in index \"nuclei\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` :param page: set the page number of the response :type page: int @@ -217267,7 +217267,7 @@ def index_nuget_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuget_get_serialize( + _param = self._index_nuclei_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217299,7 +217299,7 @@ def index_nuget_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", '404': "str", '500': "str", } @@ -217315,7 +217315,7 @@ def index_nuget_get_with_http_info( @validate_call - def index_nuget_get_without_preload_content( + def index_nuclei_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217354,9 +217354,9 @@ def index_nuget_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nuget\" + """Return vulnerability data stored in index \"nuclei\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuclei index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuclei Templates ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuclei?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuclei?cursor=` :param page: set the page number of the response :type page: int @@ -217428,7 +217428,7 @@ def index_nuget_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nuget_get_serialize( + _param = self._index_nuclei_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217460,7 +217460,7 @@ def index_nuget_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNucleiPaginatePagination", '404': "str", '500': "str", } @@ -217471,7 +217471,7 @@ def index_nuget_get_without_preload_content( return response_data.response - def _index_nuget_get_serialize( + def _index_nuclei_get_serialize( self, page, limit, @@ -217639,7 +217639,7 @@ def _index_nuget_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nuget', + resource_path='/v3/index/nuclei', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -217656,7 +217656,7 @@ def _index_nuget_get_serialize( @validate_call - def index_nvd_cpe_dictionary_get( + def index_nuget_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217694,10 +217694,10 @@ def index_nvd_cpe_dictionary_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination: - """Return vulnerability data stored in index \"nvd-cpe-dictionary\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"nuget\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` :param page: set the page number of the response :type page: int @@ -217769,7 +217769,7 @@ def index_nvd_cpe_dictionary_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvd_cpe_dictionary_get_serialize( + _param = self._index_nuget_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217801,7 +217801,7 @@ def index_nvd_cpe_dictionary_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -217817,7 +217817,7 @@ def index_nvd_cpe_dictionary_get( @validate_call - def index_nvd_cpe_dictionary_get_with_http_info( + def index_nuget_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -217855,10 +217855,10 @@ def index_nvd_cpe_dictionary_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination]: - """Return vulnerability data stored in index \"nvd-cpe-dictionary\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"nuget\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` :param page: set the page number of the response :type page: int @@ -217930,7 +217930,7 @@ def index_nvd_cpe_dictionary_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvd_cpe_dictionary_get_serialize( + _param = self._index_nuget_get_serialize( page=page, limit=limit, cursor=cursor, @@ -217962,7 +217962,7 @@ def index_nvd_cpe_dictionary_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -217978,7 +217978,7 @@ def index_nvd_cpe_dictionary_get_with_http_info( @validate_call - def index_nvd_cpe_dictionary_get_without_preload_content( + def index_nuget_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -218017,9 +218017,9 @@ def index_nvd_cpe_dictionary_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nvd-cpe-dictionary\" + """Return vulnerability data stored in index \"nuget\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nuget index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Nuget (C#/F#) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nuget?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nuget?cursor=` :param page: set the page number of the response :type page: int @@ -218091,7 +218091,7 @@ def index_nvd_cpe_dictionary_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvd_cpe_dictionary_get_serialize( + _param = self._index_nuget_get_serialize( page=page, limit=limit, cursor=cursor, @@ -218123,7 +218123,7 @@ def index_nvd_cpe_dictionary_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -218134,7 +218134,7 @@ def index_nvd_cpe_dictionary_get_without_preload_content( return response_data.response - def _index_nvd_cpe_dictionary_get_serialize( + def _index_nuget_get_serialize( self, page, limit, @@ -218302,7 +218302,7 @@ def _index_nvd_cpe_dictionary_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nvd-cpe-dictionary', + resource_path='/v3/index/nuget', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -218319,7 +218319,7 @@ def _index_nvd_cpe_dictionary_get_serialize( @validate_call - def index_nvidia_get( + def index_nvd_cpe_dictionary_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -218357,10 +218357,10 @@ def index_nvidia_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination: - """Return vulnerability data stored in index \"nvidia\" + ) -> RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination: + """Return vulnerability data stored in index \"nvd-cpe-dictionary\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` :param page: set the page number of the response :type page: int @@ -218432,7 +218432,7 @@ def index_nvidia_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvidia_get_serialize( + _param = self._index_nvd_cpe_dictionary_get_serialize( page=page, limit=limit, cursor=cursor, @@ -218464,7 +218464,7 @@ def index_nvidia_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", '404': "str", '500': "str", } @@ -218480,7 +218480,7 @@ def index_nvidia_get( @validate_call - def index_nvidia_get_with_http_info( + def index_nvd_cpe_dictionary_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -218518,10 +218518,10 @@ def index_nvidia_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination]: - """Return vulnerability data stored in index \"nvidia\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination]: + """Return vulnerability data stored in index \"nvd-cpe-dictionary\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` :param page: set the page number of the response :type page: int @@ -218593,7 +218593,7 @@ def index_nvidia_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvidia_get_serialize( + _param = self._index_nvd_cpe_dictionary_get_serialize( page=page, limit=limit, cursor=cursor, @@ -218625,7 +218625,7 @@ def index_nvidia_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", '404': "str", '500': "str", } @@ -218641,7 +218641,7 @@ def index_nvidia_get_with_http_info( @validate_call - def index_nvidia_get_without_preload_content( + def index_nvd_cpe_dictionary_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -218680,9 +218680,9 @@ def index_nvidia_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nvidia\" + """Return vulnerability data stored in index \"nvd-cpe-dictionary\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvd-cpe-dictionary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVD's CPE Dictionary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvd-cpe-dictionary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvd-cpe-dictionary?cursor=` :param page: set the page number of the response :type page: int @@ -218754,7 +218754,7 @@ def index_nvidia_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nvidia_get_serialize( + _param = self._index_nvd_cpe_dictionary_get_serialize( page=page, limit=limit, cursor=cursor, @@ -218786,7 +218786,7 @@ def index_nvidia_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNVDCPEDictionaryPaginatePagination", '404': "str", '500': "str", } @@ -218797,7 +218797,7 @@ def index_nvidia_get_without_preload_content( return response_data.response - def _index_nvidia_get_serialize( + def _index_nvd_cpe_dictionary_get_serialize( self, page, limit, @@ -218965,7 +218965,7 @@ def _index_nvidia_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nvidia', + resource_path='/v3/index/nvd-cpe-dictionary', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -218982,7 +218982,7 @@ def _index_nvidia_get_serialize( @validate_call - def index_nz_advisories_get( + def index_nvidia_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219020,10 +219020,10 @@ def index_nz_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"nz-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination: + """Return vulnerability data stored in index \"nvidia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` :param page: set the page number of the response :type page: int @@ -219095,7 +219095,7 @@ def index_nz_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nz_advisories_get_serialize( + _param = self._index_nvidia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219127,7 +219127,7 @@ def index_nz_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", '404': "str", '500': "str", } @@ -219143,7 +219143,7 @@ def index_nz_advisories_get( @validate_call - def index_nz_advisories_get_with_http_info( + def index_nvidia_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219181,10 +219181,10 @@ def index_nz_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"nz-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination]: + """Return vulnerability data stored in index \"nvidia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` :param page: set the page number of the response :type page: int @@ -219256,7 +219256,7 @@ def index_nz_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nz_advisories_get_serialize( + _param = self._index_nvidia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219288,7 +219288,7 @@ def index_nz_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", '404': "str", '500': "str", } @@ -219304,7 +219304,7 @@ def index_nz_advisories_get_with_http_info( @validate_call - def index_nz_advisories_get_without_preload_content( + def index_nvidia_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219343,9 +219343,9 @@ def index_nz_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"nz-advisories\" + """Return vulnerability data stored in index \"nvidia\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nvidia index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** NVIDIA Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nvidia?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nvidia?cursor=` :param page: set the page number of the response :type page: int @@ -219417,7 +219417,7 @@ def index_nz_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_nz_advisories_get_serialize( + _param = self._index_nvidia_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219449,7 +219449,7 @@ def index_nz_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityBulletinPaginatePagination", '404': "str", '500': "str", } @@ -219460,7 +219460,7 @@ def index_nz_advisories_get_without_preload_content( return response_data.response - def _index_nz_advisories_get_serialize( + def _index_nvidia_get_serialize( self, page, limit, @@ -219628,7 +219628,7 @@ def _index_nz_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/nz-advisories', + resource_path='/v3/index/nvidia', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -219645,7 +219645,7 @@ def _index_nz_advisories_get_serialize( @validate_call - def index_octopus_deploy_get( + def index_nz_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219683,10 +219683,10 @@ def index_octopus_deploy_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination: - """Return vulnerability data stored in index \"octopus-deploy\" + ) -> RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"nz-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -219758,7 +219758,7 @@ def index_octopus_deploy_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_octopus_deploy_get_serialize( + _param = self._index_nz_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219790,7 +219790,7 @@ def index_octopus_deploy_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -219806,7 +219806,7 @@ def index_octopus_deploy_get( @validate_call - def index_octopus_deploy_get_with_http_info( + def index_nz_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -219844,10 +219844,10 @@ def index_octopus_deploy_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination]: - """Return vulnerability data stored in index \"octopus-deploy\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"nz-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -219919,7 +219919,7 @@ def index_octopus_deploy_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_octopus_deploy_get_serialize( + _param = self._index_nz_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -219951,7 +219951,7 @@ def index_octopus_deploy_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -219967,7 +219967,7 @@ def index_octopus_deploy_get_with_http_info( @validate_call - def index_octopus_deploy_get_without_preload_content( + def index_nz_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -220006,9 +220006,9 @@ def index_octopus_deploy_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"octopus-deploy\" + """Return vulnerability data stored in index \"nz-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the nz-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CERT NZ Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/nz-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/nz-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -220080,7 +220080,7 @@ def index_octopus_deploy_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_octopus_deploy_get_serialize( + _param = self._index_nz_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -220112,7 +220112,7 @@ def index_octopus_deploy_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryNZAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -220123,7 +220123,7 @@ def index_octopus_deploy_get_without_preload_content( return response_data.response - def _index_octopus_deploy_get_serialize( + def _index_nz_advisories_get_serialize( self, page, limit, @@ -220291,7 +220291,7 @@ def _index_octopus_deploy_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/octopus-deploy', + resource_path='/v3/index/nz-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -220308,7 +220308,7 @@ def _index_octopus_deploy_get_serialize( @validate_call - def index_okta_get( + def index_octopus_deploy_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -220346,10 +220346,10 @@ def index_okta_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination: - """Return vulnerability data stored in index \"okta\" + ) -> RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination: + """Return vulnerability data stored in index \"octopus-deploy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` :param page: set the page number of the response :type page: int @@ -220421,7 +220421,7 @@ def index_okta_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_okta_get_serialize( + _param = self._index_octopus_deploy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -220453,7 +220453,7 @@ def index_okta_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", '404': "str", '500': "str", } @@ -220469,7 +220469,7 @@ def index_okta_get( @validate_call - def index_okta_get_with_http_info( + def index_octopus_deploy_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -220507,10 +220507,10 @@ def index_okta_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination]: - """Return vulnerability data stored in index \"okta\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination]: + """Return vulnerability data stored in index \"octopus-deploy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` :param page: set the page number of the response :type page: int @@ -220582,7 +220582,7 @@ def index_okta_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_okta_get_serialize( + _param = self._index_octopus_deploy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -220614,7 +220614,7 @@ def index_okta_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", '404': "str", '500': "str", } @@ -220630,7 +220630,7 @@ def index_okta_get_with_http_info( @validate_call - def index_okta_get_without_preload_content( + def index_octopus_deploy_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -220669,9 +220669,9 @@ def index_okta_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"okta\" + """Return vulnerability data stored in index \"octopus-deploy\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the octopus-deploy index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Octopus Deploy Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/octopus-deploy?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/octopus-deploy?cursor=` :param page: set the page number of the response :type page: int @@ -220743,7 +220743,7 @@ def index_okta_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_okta_get_serialize( + _param = self._index_octopus_deploy_get_serialize( page=page, limit=limit, cursor=cursor, @@ -220775,7 +220775,7 @@ def index_okta_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOctopusDeployPaginatePagination", '404': "str", '500': "str", } @@ -220786,7 +220786,7 @@ def index_okta_get_without_preload_content( return response_data.response - def _index_okta_get_serialize( + def _index_octopus_deploy_get_serialize( self, page, limit, @@ -220954,7 +220954,7 @@ def _index_okta_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/okta', + resource_path='/v3/index/octopus-deploy', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -220971,7 +220971,7 @@ def _index_okta_get_serialize( @validate_call - def index_omron_eol_get( + def index_okta_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221009,10 +221009,10 @@ def index_omron_eol_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: - """Return vulnerability data stored in index \"omron-eol\" + ) -> RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination: + """Return vulnerability data stored in index \"okta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` :param page: set the page number of the response :type page: int @@ -221084,7 +221084,7 @@ def index_omron_eol_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_eol_get_serialize( + _param = self._index_okta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221116,7 +221116,7 @@ def index_omron_eol_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", '404': "str", '500': "str", } @@ -221132,7 +221132,7 @@ def index_omron_eol_get( @validate_call - def index_omron_eol_get_with_http_info( + def index_okta_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221170,10 +221170,10 @@ def index_omron_eol_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: - """Return vulnerability data stored in index \"omron-eol\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination]: + """Return vulnerability data stored in index \"okta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` :param page: set the page number of the response :type page: int @@ -221245,7 +221245,7 @@ def index_omron_eol_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_eol_get_serialize( + _param = self._index_okta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221277,7 +221277,7 @@ def index_omron_eol_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", '404': "str", '500': "str", } @@ -221293,7 +221293,7 @@ def index_omron_eol_get_with_http_info( @validate_call - def index_omron_eol_get_without_preload_content( + def index_okta_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221332,9 +221332,9 @@ def index_omron_eol_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"omron-eol\" + """Return vulnerability data stored in index \"okta\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the okta index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Okta Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/okta?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/okta?cursor=` :param page: set the page number of the response :type page: int @@ -221406,7 +221406,7 @@ def index_omron_eol_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_eol_get_serialize( + _param = self._index_okta_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221438,7 +221438,7 @@ def index_omron_eol_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOktaPaginatePagination", '404': "str", '500': "str", } @@ -221449,7 +221449,7 @@ def index_omron_eol_get_without_preload_content( return response_data.response - def _index_omron_eol_get_serialize( + def _index_okta_get_serialize( self, page, limit, @@ -221617,7 +221617,7 @@ def _index_omron_eol_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/omron-eol', + resource_path='/v3/index/okta', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -221634,7 +221634,7 @@ def _index_omron_eol_get_serialize( @validate_call - def index_omron_get( + def index_omron_eol_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221672,10 +221672,10 @@ def index_omron_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination: - """Return vulnerability data stored in index \"omron\" + ) -> RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination: + """Return vulnerability data stored in index \"omron-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` :param page: set the page number of the response :type page: int @@ -221747,7 +221747,7 @@ def index_omron_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_get_serialize( + _param = self._index_omron_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221779,7 +221779,7 @@ def index_omron_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -221795,7 +221795,7 @@ def index_omron_get( @validate_call - def index_omron_get_with_http_info( + def index_omron_eol_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221833,10 +221833,10 @@ def index_omron_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination]: - """Return vulnerability data stored in index \"omron\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination]: + """Return vulnerability data stored in index \"omron-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` :param page: set the page number of the response :type page: int @@ -221908,7 +221908,7 @@ def index_omron_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_get_serialize( + _param = self._index_omron_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -221940,7 +221940,7 @@ def index_omron_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -221956,7 +221956,7 @@ def index_omron_get_with_http_info( @validate_call - def index_omron_get_without_preload_content( + def index_omron_eol_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -221995,9 +221995,9 @@ def index_omron_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"omron\" + """Return vulnerability data stored in index \"omron-eol\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron-eol index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron End of Life Notices ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron-eol?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron-eol?cursor=` :param page: set the page number of the response :type page: int @@ -222069,7 +222069,7 @@ def index_omron_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_omron_get_serialize( + _param = self._index_omron_eol_get_serialize( page=page, limit=limit, cursor=cursor, @@ -222101,7 +222101,7 @@ def index_omron_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryGenericEOLPaginatePagination", '404': "str", '500': "str", } @@ -222112,7 +222112,7 @@ def index_omron_get_without_preload_content( return response_data.response - def _index_omron_get_serialize( + def _index_omron_eol_get_serialize( self, page, limit, @@ -222280,7 +222280,7 @@ def _index_omron_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/omron', + resource_path='/v3/index/omron-eol', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -222297,7 +222297,7 @@ def _index_omron_get_serialize( @validate_call - def index_one_e_get( + def index_omron_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -222335,10 +222335,10 @@ def index_one_e_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination: - """Return vulnerability data stored in index \"one-e\" + ) -> RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination: + """Return vulnerability data stored in index \"omron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` :param page: set the page number of the response :type page: int @@ -222410,7 +222410,7 @@ def index_one_e_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_one_e_get_serialize( + _param = self._index_omron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -222442,7 +222442,7 @@ def index_one_e_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", '404': "str", '500': "str", } @@ -222458,7 +222458,7 @@ def index_one_e_get( @validate_call - def index_one_e_get_with_http_info( + def index_omron_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -222496,10 +222496,10 @@ def index_one_e_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination]: - """Return vulnerability data stored in index \"one-e\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination]: + """Return vulnerability data stored in index \"omron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` :param page: set the page number of the response :type page: int @@ -222571,7 +222571,7 @@ def index_one_e_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_one_e_get_serialize( + _param = self._index_omron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -222603,7 +222603,7 @@ def index_one_e_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", '404': "str", '500': "str", } @@ -222619,7 +222619,7 @@ def index_one_e_get_with_http_info( @validate_call - def index_one_e_get_without_preload_content( + def index_omron_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -222658,9 +222658,9 @@ def index_one_e_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"one-e\" + """Return vulnerability data stored in index \"omron\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the omron index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Omron Vulnerability Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/omron?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/omron?cursor=` :param page: set the page number of the response :type page: int @@ -222732,7 +222732,7 @@ def index_one_e_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_one_e_get_serialize( + _param = self._index_omron_get_serialize( page=page, limit=limit, cursor=cursor, @@ -222764,7 +222764,7 @@ def index_one_e_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOmronPaginatePagination", '404': "str", '500': "str", } @@ -222775,7 +222775,7 @@ def index_one_e_get_without_preload_content( return response_data.response - def _index_one_e_get_serialize( + def _index_omron_get_serialize( self, page, limit, @@ -222943,7 +222943,7 @@ def _index_one_e_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/one-e', + resource_path='/v3/index/omron', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -222960,7 +222960,7 @@ def _index_one_e_get_serialize( @validate_call - def index_opam_get( + def index_one_e_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -222998,10 +222998,10 @@ def index_opam_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"opam\" + ) -> RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination: + """Return vulnerability data stored in index \"one-e\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` :param page: set the page number of the response :type page: int @@ -223073,7 +223073,7 @@ def index_opam_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opam_get_serialize( + _param = self._index_one_e_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223105,7 +223105,7 @@ def index_opam_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", '404': "str", '500': "str", } @@ -223121,7 +223121,7 @@ def index_opam_get( @validate_call - def index_opam_get_with_http_info( + def index_one_e_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223159,10 +223159,10 @@ def index_opam_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"opam\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination]: + """Return vulnerability data stored in index \"one-e\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` :param page: set the page number of the response :type page: int @@ -223234,7 +223234,7 @@ def index_opam_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opam_get_serialize( + _param = self._index_one_e_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223266,7 +223266,7 @@ def index_opam_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", '404': "str", '500': "str", } @@ -223282,7 +223282,7 @@ def index_opam_get_with_http_info( @validate_call - def index_opam_get_without_preload_content( + def index_one_e_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223321,9 +223321,9 @@ def index_opam_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"opam\" + """Return vulnerability data stored in index \"one-e\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the one-e index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** 1E Published Product Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/one-e?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/one-e?cursor=` :param page: set the page number of the response :type page: int @@ -223395,7 +223395,7 @@ def index_opam_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opam_get_serialize( + _param = self._index_one_e_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223427,7 +223427,7 @@ def index_opam_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOneEPaginatePagination", '404': "str", '500': "str", } @@ -223438,7 +223438,7 @@ def index_opam_get_without_preload_content( return response_data.response - def _index_opam_get_serialize( + def _index_one_e_get_serialize( self, page, limit, @@ -223606,7 +223606,7 @@ def _index_opam_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/opam', + resource_path='/v3/index/one-e', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -223623,7 +223623,7 @@ def _index_opam_get_serialize( @validate_call - def index_opc_foundation_get( + def index_opam_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223661,10 +223661,10 @@ def index_opc_foundation_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"opc-foundation\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"opam\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` :param page: set the page number of the response :type page: int @@ -223736,7 +223736,7 @@ def index_opc_foundation_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opc_foundation_get_serialize( + _param = self._index_opam_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223768,7 +223768,7 @@ def index_opc_foundation_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -223784,7 +223784,7 @@ def index_opc_foundation_get( @validate_call - def index_opc_foundation_get_with_http_info( + def index_opam_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223822,10 +223822,10 @@ def index_opc_foundation_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"opc-foundation\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"opam\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` :param page: set the page number of the response :type page: int @@ -223897,7 +223897,7 @@ def index_opc_foundation_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opc_foundation_get_serialize( + _param = self._index_opam_get_serialize( page=page, limit=limit, cursor=cursor, @@ -223929,7 +223929,7 @@ def index_opc_foundation_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -223945,7 +223945,7 @@ def index_opc_foundation_get_with_http_info( @validate_call - def index_opc_foundation_get_without_preload_content( + def index_opam_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -223984,9 +223984,9 @@ def index_opc_foundation_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"opc-foundation\" + """Return vulnerability data stored in index \"opam\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opam index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** opam (OCaml) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opam?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opam?cursor=` :param page: set the page number of the response :type page: int @@ -224058,7 +224058,7 @@ def index_opc_foundation_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opc_foundation_get_serialize( + _param = self._index_opam_get_serialize( page=page, limit=limit, cursor=cursor, @@ -224090,7 +224090,7 @@ def index_opc_foundation_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -224101,7 +224101,7 @@ def index_opc_foundation_get_without_preload_content( return response_data.response - def _index_opc_foundation_get_serialize( + def _index_opam_get_serialize( self, page, limit, @@ -224269,7 +224269,7 @@ def _index_opc_foundation_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/opc-foundation', + resource_path='/v3/index/opam', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -224286,7 +224286,7 @@ def _index_opc_foundation_get_serialize( @validate_call - def index_open_cvdb_get( + def index_opc_foundation_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -224324,10 +224324,10 @@ def index_open_cvdb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination: - """Return vulnerability data stored in index \"open-cvdb\" + ) -> RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"opc-foundation\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` :param page: set the page number of the response :type page: int @@ -224399,7 +224399,7 @@ def index_open_cvdb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_open_cvdb_get_serialize( + _param = self._index_opc_foundation_get_serialize( page=page, limit=limit, cursor=cursor, @@ -224431,7 +224431,7 @@ def index_open_cvdb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -224447,7 +224447,7 @@ def index_open_cvdb_get( @validate_call - def index_open_cvdb_get_with_http_info( + def index_opc_foundation_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -224485,10 +224485,10 @@ def index_open_cvdb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination]: - """Return vulnerability data stored in index \"open-cvdb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"opc-foundation\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` :param page: set the page number of the response :type page: int @@ -224560,7 +224560,7 @@ def index_open_cvdb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_open_cvdb_get_serialize( + _param = self._index_opc_foundation_get_serialize( page=page, limit=limit, cursor=cursor, @@ -224592,7 +224592,7 @@ def index_open_cvdb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -224608,7 +224608,7 @@ def index_open_cvdb_get_with_http_info( @validate_call - def index_open_cvdb_get_without_preload_content( + def index_opc_foundation_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -224647,9 +224647,9 @@ def index_open_cvdb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"open-cvdb\" + """Return vulnerability data stored in index \"opc-foundation\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opc-foundation index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OPC Foundation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opc-foundation?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opc-foundation?cursor=` :param page: set the page number of the response :type page: int @@ -224721,7 +224721,7 @@ def index_open_cvdb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_open_cvdb_get_serialize( + _param = self._index_opc_foundation_get_serialize( page=page, limit=limit, cursor=cursor, @@ -224753,7 +224753,7 @@ def index_open_cvdb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOPCFoundationAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -224764,7 +224764,7 @@ def index_open_cvdb_get_without_preload_content( return response_data.response - def _index_open_cvdb_get_serialize( + def _index_opc_foundation_get_serialize( self, page, limit, @@ -224932,7 +224932,7 @@ def _index_open_cvdb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/open-cvdb', + resource_path='/v3/index/opc-foundation', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -224949,7 +224949,7 @@ def _index_open_cvdb_get_serialize( @validate_call - def index_openbsd_get( + def index_open_cvdb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -224987,10 +224987,10 @@ def index_openbsd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination: - """Return vulnerability data stored in index \"openbsd\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination: + """Return vulnerability data stored in index \"open-cvdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` :param page: set the page number of the response :type page: int @@ -225062,7 +225062,7 @@ def index_openbsd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openbsd_get_serialize( + _param = self._index_open_cvdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225094,7 +225094,7 @@ def index_openbsd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", '404': "str", '500': "str", } @@ -225110,7 +225110,7 @@ def index_openbsd_get( @validate_call - def index_openbsd_get_with_http_info( + def index_open_cvdb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225148,10 +225148,10 @@ def index_openbsd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination]: - """Return vulnerability data stored in index \"openbsd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination]: + """Return vulnerability data stored in index \"open-cvdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` :param page: set the page number of the response :type page: int @@ -225223,7 +225223,7 @@ def index_openbsd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openbsd_get_serialize( + _param = self._index_open_cvdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225255,7 +225255,7 @@ def index_openbsd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", '404': "str", '500': "str", } @@ -225271,7 +225271,7 @@ def index_openbsd_get_with_http_info( @validate_call - def index_openbsd_get_without_preload_content( + def index_open_cvdb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225310,9 +225310,9 @@ def index_openbsd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openbsd\" + """Return vulnerability data stored in index \"open-cvdb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the open-cvdb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** The Open Cloud Vulnerability & Security Issue Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/open-cvdb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/open-cvdb?cursor=` :param page: set the page number of the response :type page: int @@ -225384,7 +225384,7 @@ def index_openbsd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openbsd_get_serialize( + _param = self._index_open_cvdb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225416,7 +225416,7 @@ def index_openbsd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenCVDBPaginatePagination", '404': "str", '500': "str", } @@ -225427,7 +225427,7 @@ def index_openbsd_get_without_preload_content( return response_data.response - def _index_openbsd_get_serialize( + def _index_open_cvdb_get_serialize( self, page, limit, @@ -225595,7 +225595,7 @@ def _index_openbsd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openbsd', + resource_path='/v3/index/open-cvdb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -225612,7 +225612,7 @@ def _index_openbsd_get_serialize( @validate_call - def index_opengear_get( + def index_openbsd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225650,10 +225650,10 @@ def index_opengear_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination: - """Return vulnerability data stored in index \"opengear\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination: + """Return vulnerability data stored in index \"openbsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` :param page: set the page number of the response :type page: int @@ -225725,7 +225725,7 @@ def index_opengear_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opengear_get_serialize( + _param = self._index_openbsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225757,7 +225757,7 @@ def index_opengear_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", '404': "str", '500': "str", } @@ -225773,7 +225773,7 @@ def index_opengear_get( @validate_call - def index_opengear_get_with_http_info( + def index_openbsd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225811,10 +225811,10 @@ def index_opengear_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination]: - """Return vulnerability data stored in index \"opengear\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination]: + """Return vulnerability data stored in index \"openbsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` :param page: set the page number of the response :type page: int @@ -225886,7 +225886,7 @@ def index_opengear_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opengear_get_serialize( + _param = self._index_openbsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -225918,7 +225918,7 @@ def index_opengear_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", '404': "str", '500': "str", } @@ -225934,7 +225934,7 @@ def index_opengear_get_with_http_info( @validate_call - def index_opengear_get_without_preload_content( + def index_openbsd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -225973,9 +225973,9 @@ def index_opengear_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"opengear\" + """Return vulnerability data stored in index \"openbsd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openbsd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenBSD Security Fixes ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openbsd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openbsd?cursor=` :param page: set the page number of the response :type page: int @@ -226047,7 +226047,7 @@ def index_opengear_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_opengear_get_serialize( + _param = self._index_openbsd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -226079,7 +226079,7 @@ def index_opengear_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenBSDPaginatePagination", '404': "str", '500': "str", } @@ -226090,7 +226090,7 @@ def index_opengear_get_without_preload_content( return response_data.response - def _index_opengear_get_serialize( + def _index_openbsd_get_serialize( self, page, limit, @@ -226258,7 +226258,7 @@ def _index_opengear_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/opengear', + resource_path='/v3/index/openbsd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -226275,7 +226275,7 @@ def _index_opengear_get_serialize( @validate_call - def index_openjdk_get( + def index_opengear_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -226313,10 +226313,10 @@ def index_openjdk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination: - """Return vulnerability data stored in index \"openjdk\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination: + """Return vulnerability data stored in index \"opengear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` :param page: set the page number of the response :type page: int @@ -226388,7 +226388,7 @@ def index_openjdk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openjdk_get_serialize( + _param = self._index_opengear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -226420,7 +226420,7 @@ def index_openjdk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", '404': "str", '500': "str", } @@ -226436,7 +226436,7 @@ def index_openjdk_get( @validate_call - def index_openjdk_get_with_http_info( + def index_opengear_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -226474,10 +226474,10 @@ def index_openjdk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination]: - """Return vulnerability data stored in index \"openjdk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination]: + """Return vulnerability data stored in index \"opengear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` :param page: set the page number of the response :type page: int @@ -226549,7 +226549,7 @@ def index_openjdk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openjdk_get_serialize( + _param = self._index_opengear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -226581,7 +226581,7 @@ def index_openjdk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", '404': "str", '500': "str", } @@ -226597,7 +226597,7 @@ def index_openjdk_get_with_http_info( @validate_call - def index_openjdk_get_without_preload_content( + def index_opengear_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -226636,9 +226636,9 @@ def index_openjdk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openjdk\" + """Return vulnerability data stored in index \"opengear\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the opengear index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Opengear Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/opengear?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/opengear?cursor=` :param page: set the page number of the response :type page: int @@ -226710,7 +226710,7 @@ def index_openjdk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openjdk_get_serialize( + _param = self._index_opengear_get_serialize( page=page, limit=limit, cursor=cursor, @@ -226742,7 +226742,7 @@ def index_openjdk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpengearPaginatePagination", '404': "str", '500': "str", } @@ -226753,7 +226753,7 @@ def index_openjdk_get_without_preload_content( return response_data.response - def _index_openjdk_get_serialize( + def _index_opengear_get_serialize( self, page, limit, @@ -226921,7 +226921,7 @@ def _index_openjdk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openjdk', + resource_path='/v3/index/opengear', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -226938,7 +226938,7 @@ def _index_openjdk_get_serialize( @validate_call - def index_openssh_get( + def index_openjdk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -226976,10 +226976,10 @@ def index_openssh_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination: - """Return vulnerability data stored in index \"openssh\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination: + """Return vulnerability data stored in index \"openjdk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` :param page: set the page number of the response :type page: int @@ -227051,7 +227051,7 @@ def index_openssh_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssh_get_serialize( + _param = self._index_openjdk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227083,7 +227083,7 @@ def index_openssh_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", '404': "str", '500': "str", } @@ -227099,7 +227099,7 @@ def index_openssh_get( @validate_call - def index_openssh_get_with_http_info( + def index_openjdk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227137,10 +227137,10 @@ def index_openssh_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination]: - """Return vulnerability data stored in index \"openssh\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination]: + """Return vulnerability data stored in index \"openjdk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` :param page: set the page number of the response :type page: int @@ -227212,7 +227212,7 @@ def index_openssh_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssh_get_serialize( + _param = self._index_openjdk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227244,7 +227244,7 @@ def index_openssh_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", '404': "str", '500': "str", } @@ -227260,7 +227260,7 @@ def index_openssh_get_with_http_info( @validate_call - def index_openssh_get_without_preload_content( + def index_openjdk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227299,9 +227299,9 @@ def index_openssh_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openssh\" + """Return vulnerability data stored in index \"openjdk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openjdk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenJDK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openjdk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openjdk?cursor=` :param page: set the page number of the response :type page: int @@ -227373,7 +227373,7 @@ def index_openssh_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssh_get_serialize( + _param = self._index_openjdk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227405,7 +227405,7 @@ def index_openssh_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenJDKPaginatePagination", '404': "str", '500': "str", } @@ -227416,7 +227416,7 @@ def index_openssh_get_without_preload_content( return response_data.response - def _index_openssh_get_serialize( + def _index_openjdk_get_serialize( self, page, limit, @@ -227584,7 +227584,7 @@ def _index_openssh_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openssh', + resource_path='/v3/index/openjdk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -227601,7 +227601,7 @@ def _index_openssh_get_serialize( @validate_call - def index_openssl_secadv_get( + def index_openssh_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227639,10 +227639,10 @@ def index_openssl_secadv_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination: - """Return vulnerability data stored in index \"openssl-secadv\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination: + """Return vulnerability data stored in index \"openssh\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` :param page: set the page number of the response :type page: int @@ -227714,7 +227714,7 @@ def index_openssl_secadv_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssl_secadv_get_serialize( + _param = self._index_openssh_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227746,7 +227746,7 @@ def index_openssl_secadv_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", '404': "str", '500': "str", } @@ -227762,7 +227762,7 @@ def index_openssl_secadv_get( @validate_call - def index_openssl_secadv_get_with_http_info( + def index_openssh_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227800,10 +227800,10 @@ def index_openssl_secadv_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination]: - """Return vulnerability data stored in index \"openssl-secadv\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination]: + """Return vulnerability data stored in index \"openssh\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` :param page: set the page number of the response :type page: int @@ -227875,7 +227875,7 @@ def index_openssl_secadv_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssl_secadv_get_serialize( + _param = self._index_openssh_get_serialize( page=page, limit=limit, cursor=cursor, @@ -227907,7 +227907,7 @@ def index_openssl_secadv_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", '404': "str", '500': "str", } @@ -227923,7 +227923,7 @@ def index_openssl_secadv_get_with_http_info( @validate_call - def index_openssl_secadv_get_without_preload_content( + def index_openssh_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -227962,9 +227962,9 @@ def index_openssl_secadv_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openssl-secadv\" + """Return vulnerability data stored in index \"openssh\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssh index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSH Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssh?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssh?cursor=` :param page: set the page number of the response :type page: int @@ -228036,7 +228036,7 @@ def index_openssl_secadv_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openssl_secadv_get_serialize( + _param = self._index_openssh_get_serialize( page=page, limit=limit, cursor=cursor, @@ -228068,7 +228068,7 @@ def index_openssl_secadv_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSHPaginatePagination", '404': "str", '500': "str", } @@ -228079,7 +228079,7 @@ def index_openssl_secadv_get_without_preload_content( return response_data.response - def _index_openssl_secadv_get_serialize( + def _index_openssh_get_serialize( self, page, limit, @@ -228247,7 +228247,7 @@ def _index_openssl_secadv_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openssl-secadv', + resource_path='/v3/index/openssh', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -228264,7 +228264,7 @@ def _index_openssl_secadv_get_serialize( @validate_call - def index_openstack_get( + def index_openssl_secadv_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -228302,10 +228302,10 @@ def index_openstack_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination: - """Return vulnerability data stored in index \"openstack\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination: + """Return vulnerability data stored in index \"openssl-secadv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` :param page: set the page number of the response :type page: int @@ -228377,7 +228377,7 @@ def index_openstack_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openstack_get_serialize( + _param = self._index_openssl_secadv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -228409,7 +228409,7 @@ def index_openstack_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", '404': "str", '500': "str", } @@ -228425,7 +228425,7 @@ def index_openstack_get( @validate_call - def index_openstack_get_with_http_info( + def index_openssl_secadv_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -228463,10 +228463,10 @@ def index_openstack_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination]: - """Return vulnerability data stored in index \"openstack\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination]: + """Return vulnerability data stored in index \"openssl-secadv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` :param page: set the page number of the response :type page: int @@ -228538,7 +228538,7 @@ def index_openstack_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openstack_get_serialize( + _param = self._index_openssl_secadv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -228570,7 +228570,7 @@ def index_openstack_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", '404': "str", '500': "str", } @@ -228586,7 +228586,7 @@ def index_openstack_get_with_http_info( @validate_call - def index_openstack_get_without_preload_content( + def index_openssl_secadv_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -228625,9 +228625,9 @@ def index_openstack_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openstack\" + """Return vulnerability data stored in index \"openssl-secadv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openssl-secadv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenSSL Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openssl-secadv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openssl-secadv?cursor=` :param page: set the page number of the response :type page: int @@ -228699,7 +228699,7 @@ def index_openstack_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openstack_get_serialize( + _param = self._index_openssl_secadv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -228731,7 +228731,7 @@ def index_openstack_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenSSLSecAdvPaginatePagination", '404': "str", '500': "str", } @@ -228742,7 +228742,7 @@ def index_openstack_get_without_preload_content( return response_data.response - def _index_openstack_get_serialize( + def _index_openssl_secadv_get_serialize( self, page, limit, @@ -228910,7 +228910,7 @@ def _index_openstack_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openstack', + resource_path='/v3/index/openssl-secadv', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -228927,7 +228927,7 @@ def _index_openstack_get_serialize( @validate_call - def index_openwrt_get( + def index_openstack_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -228965,10 +228965,10 @@ def index_openwrt_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination: - """Return vulnerability data stored in index \"openwrt\" + ) -> RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination: + """Return vulnerability data stored in index \"openstack\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` :param page: set the page number of the response :type page: int @@ -229040,7 +229040,7 @@ def index_openwrt_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openwrt_get_serialize( + _param = self._index_openstack_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229072,7 +229072,7 @@ def index_openwrt_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", '404': "str", '500': "str", } @@ -229088,7 +229088,7 @@ def index_openwrt_get( @validate_call - def index_openwrt_get_with_http_info( + def index_openstack_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229126,10 +229126,10 @@ def index_openwrt_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination]: - """Return vulnerability data stored in index \"openwrt\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination]: + """Return vulnerability data stored in index \"openstack\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` :param page: set the page number of the response :type page: int @@ -229201,7 +229201,7 @@ def index_openwrt_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openwrt_get_serialize( + _param = self._index_openstack_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229233,7 +229233,7 @@ def index_openwrt_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", '404': "str", '500': "str", } @@ -229249,7 +229249,7 @@ def index_openwrt_get_with_http_info( @validate_call - def index_openwrt_get_without_preload_content( + def index_openstack_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229288,9 +229288,9 @@ def index_openwrt_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"openwrt\" + """Return vulnerability data stored in index \"openstack\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openstack index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenStack Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openstack?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openstack?cursor=` :param page: set the page number of the response :type page: int @@ -229362,7 +229362,7 @@ def index_openwrt_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_openwrt_get_serialize( + _param = self._index_openstack_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229394,7 +229394,7 @@ def index_openwrt_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOpenStackPaginatePagination", '404': "str", '500': "str", } @@ -229405,7 +229405,7 @@ def index_openwrt_get_without_preload_content( return response_data.response - def _index_openwrt_get_serialize( + def _index_openstack_get_serialize( self, page, limit, @@ -229573,7 +229573,7 @@ def _index_openwrt_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/openwrt', + resource_path='/v3/index/openstack', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -229590,7 +229590,7 @@ def _index_openwrt_get_serialize( @validate_call - def index_oracle_cpu_csaf_get( + def index_openwrt_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229628,10 +229628,10 @@ def index_oracle_cpu_csaf_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination: - """Return vulnerability data stored in index \"oracle-cpu-csaf\" + ) -> RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination: + """Return vulnerability data stored in index \"openwrt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` :param page: set the page number of the response :type page: int @@ -229703,7 +229703,7 @@ def index_oracle_cpu_csaf_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_csaf_get_serialize( + _param = self._index_openwrt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229735,7 +229735,7 @@ def index_oracle_cpu_csaf_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", '404': "str", '500': "str", } @@ -229751,7 +229751,7 @@ def index_oracle_cpu_csaf_get( @validate_call - def index_oracle_cpu_csaf_get_with_http_info( + def index_openwrt_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229789,10 +229789,10 @@ def index_oracle_cpu_csaf_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination]: - """Return vulnerability data stored in index \"oracle-cpu-csaf\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination]: + """Return vulnerability data stored in index \"openwrt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` :param page: set the page number of the response :type page: int @@ -229864,7 +229864,7 @@ def index_oracle_cpu_csaf_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_csaf_get_serialize( + _param = self._index_openwrt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -229896,7 +229896,7 @@ def index_oracle_cpu_csaf_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", '404': "str", '500': "str", } @@ -229912,7 +229912,7 @@ def index_oracle_cpu_csaf_get_with_http_info( @validate_call - def index_oracle_cpu_csaf_get_without_preload_content( + def index_openwrt_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -229951,9 +229951,9 @@ def index_oracle_cpu_csaf_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"oracle-cpu-csaf\" + """Return vulnerability data stored in index \"openwrt\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the openwrt index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OpenWrt Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/openwrt?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/openwrt?cursor=` :param page: set the page number of the response :type page: int @@ -230025,7 +230025,7 @@ def index_oracle_cpu_csaf_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_csaf_get_serialize( + _param = self._index_openwrt_get_serialize( page=page, limit=limit, cursor=cursor, @@ -230057,7 +230057,7 @@ def index_oracle_cpu_csaf_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryWRTPaginatePagination", '404': "str", '500': "str", } @@ -230068,7 +230068,7 @@ def index_oracle_cpu_csaf_get_without_preload_content( return response_data.response - def _index_oracle_cpu_csaf_get_serialize( + def _index_openwrt_get_serialize( self, page, limit, @@ -230236,7 +230236,7 @@ def _index_oracle_cpu_csaf_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/oracle-cpu-csaf', + resource_path='/v3/index/openwrt', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -230253,7 +230253,7 @@ def _index_oracle_cpu_csaf_get_serialize( @validate_call - def index_oracle_cpu_get( + def index_oracle_cpu_csaf_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -230291,10 +230291,10 @@ def index_oracle_cpu_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination: - """Return vulnerability data stored in index \"oracle-cpu\" + ) -> RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination: + """Return vulnerability data stored in index \"oracle-cpu-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -230366,7 +230366,7 @@ def index_oracle_cpu_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_get_serialize( + _param = self._index_oracle_cpu_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -230398,7 +230398,7 @@ def index_oracle_cpu_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", '404': "str", '500': "str", } @@ -230414,7 +230414,7 @@ def index_oracle_cpu_get( @validate_call - def index_oracle_cpu_get_with_http_info( + def index_oracle_cpu_csaf_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -230452,10 +230452,10 @@ def index_oracle_cpu_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination]: - """Return vulnerability data stored in index \"oracle-cpu\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination]: + """Return vulnerability data stored in index \"oracle-cpu-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -230527,7 +230527,7 @@ def index_oracle_cpu_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_get_serialize( + _param = self._index_oracle_cpu_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -230559,7 +230559,7 @@ def index_oracle_cpu_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", '404': "str", '500': "str", } @@ -230575,7 +230575,7 @@ def index_oracle_cpu_get_with_http_info( @validate_call - def index_oracle_cpu_get_without_preload_content( + def index_oracle_cpu_csaf_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -230614,9 +230614,9 @@ def index_oracle_cpu_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"oracle-cpu\" + """Return vulnerability data stored in index \"oracle-cpu-csaf\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu-csaf index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Updates CSAF ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu-csaf?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu-csaf?cursor=` :param page: set the page number of the response :type page: int @@ -230688,7 +230688,7 @@ def index_oracle_cpu_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_cpu_get_serialize( + _param = self._index_oracle_cpu_csaf_get_serialize( page=page, limit=limit, cursor=cursor, @@ -230720,7 +230720,7 @@ def index_oracle_cpu_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUCSAFPaginatePagination", '404': "str", '500': "str", } @@ -230731,7 +230731,7 @@ def index_oracle_cpu_get_without_preload_content( return response_data.response - def _index_oracle_cpu_get_serialize( + def _index_oracle_cpu_csaf_get_serialize( self, page, limit, @@ -230899,7 +230899,7 @@ def _index_oracle_cpu_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/oracle-cpu', + resource_path='/v3/index/oracle-cpu-csaf', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -230916,7 +230916,7 @@ def _index_oracle_cpu_get_serialize( @validate_call - def index_oracle_get( + def index_oracle_cpu_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -230954,10 +230954,10 @@ def index_oracle_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination: - """Return vulnerability data stored in index \"oracle\" + ) -> RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination: + """Return vulnerability data stored in index \"oracle-cpu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` :param page: set the page number of the response :type page: int @@ -231029,7 +231029,7 @@ def index_oracle_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_get_serialize( + _param = self._index_oracle_cpu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231061,7 +231061,7 @@ def index_oracle_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", '404': "str", '500': "str", } @@ -231077,7 +231077,7 @@ def index_oracle_get( @validate_call - def index_oracle_get_with_http_info( + def index_oracle_cpu_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231115,10 +231115,10 @@ def index_oracle_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination]: - """Return vulnerability data stored in index \"oracle\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination]: + """Return vulnerability data stored in index \"oracle-cpu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` :param page: set the page number of the response :type page: int @@ -231190,7 +231190,7 @@ def index_oracle_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_get_serialize( + _param = self._index_oracle_cpu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231222,7 +231222,7 @@ def index_oracle_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", '404': "str", '500': "str", } @@ -231238,7 +231238,7 @@ def index_oracle_get_with_http_info( @validate_call - def index_oracle_get_without_preload_content( + def index_oracle_cpu_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231277,9 +231277,9 @@ def index_oracle_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"oracle\" + """Return vulnerability data stored in index \"oracle-cpu\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle-cpu index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Critical Patch Update Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle-cpu?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle-cpu?cursor=` :param page: set the page number of the response :type page: int @@ -231351,7 +231351,7 @@ def index_oracle_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_oracle_get_serialize( + _param = self._index_oracle_cpu_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231383,7 +231383,7 @@ def index_oracle_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOracleCPUPaginatePagination", '404': "str", '500': "str", } @@ -231394,7 +231394,7 @@ def index_oracle_get_without_preload_content( return response_data.response - def _index_oracle_get_serialize( + def _index_oracle_cpu_get_serialize( self, page, limit, @@ -231562,7 +231562,7 @@ def _index_oracle_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/oracle', + resource_path='/v3/index/oracle-cpu', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -231579,7 +231579,7 @@ def _index_oracle_get_serialize( @validate_call - def index_osv_get( + def index_oracle_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231617,10 +231617,10 @@ def index_osv_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination: - """Return vulnerability data stored in index \"osv\" + ) -> RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination: + """Return vulnerability data stored in index \"oracle\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` :param page: set the page number of the response :type page: int @@ -231692,7 +231692,7 @@ def index_osv_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_osv_get_serialize( + _param = self._index_oracle_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231724,7 +231724,7 @@ def index_osv_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", '404': "str", '500': "str", } @@ -231740,7 +231740,7 @@ def index_osv_get( @validate_call - def index_osv_get_with_http_info( + def index_oracle_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231778,10 +231778,10 @@ def index_osv_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination]: - """Return vulnerability data stored in index \"osv\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination]: + """Return vulnerability data stored in index \"oracle\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` :param page: set the page number of the response :type page: int @@ -231853,7 +231853,7 @@ def index_osv_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_osv_get_serialize( + _param = self._index_oracle_get_serialize( page=page, limit=limit, cursor=cursor, @@ -231885,7 +231885,7 @@ def index_osv_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", '404': "str", '500': "str", } @@ -231901,7 +231901,7 @@ def index_osv_get_with_http_info( @validate_call - def index_osv_get_without_preload_content( + def index_oracle_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -231940,9 +231940,9 @@ def index_osv_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"osv\" + """Return vulnerability data stored in index \"oracle\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the oracle index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Oracle Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/oracle?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/oracle?cursor=` :param page: set the page number of the response :type page: int @@ -232014,7 +232014,7 @@ def index_osv_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_osv_get_serialize( + _param = self._index_oracle_get_serialize( page=page, limit=limit, cursor=cursor, @@ -232046,7 +232046,7 @@ def index_osv_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryMetaDataPaginatePagination", '404': "str", '500': "str", } @@ -232057,7 +232057,7 @@ def index_osv_get_without_preload_content( return response_data.response - def _index_osv_get_serialize( + def _index_oracle_get_serialize( self, page, limit, @@ -232225,7 +232225,7 @@ def _index_osv_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/osv', + resource_path='/v3/index/oracle', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -232242,7 +232242,7 @@ def _index_osv_get_serialize( @validate_call - def index_otrs_get( + def index_osv_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -232280,10 +232280,10 @@ def index_otrs_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination: - """Return vulnerability data stored in index \"otrs\" + ) -> RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination: + """Return vulnerability data stored in index \"osv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` :param page: set the page number of the response :type page: int @@ -232355,7 +232355,7 @@ def index_otrs_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_otrs_get_serialize( + _param = self._index_osv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -232387,7 +232387,7 @@ def index_otrs_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", '404': "str", '500': "str", } @@ -232403,7 +232403,7 @@ def index_otrs_get( @validate_call - def index_otrs_get_with_http_info( + def index_osv_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -232441,10 +232441,10 @@ def index_otrs_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination]: - """Return vulnerability data stored in index \"otrs\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination]: + """Return vulnerability data stored in index \"osv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` :param page: set the page number of the response :type page: int @@ -232516,7 +232516,7 @@ def index_otrs_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_otrs_get_serialize( + _param = self._index_osv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -232548,7 +232548,7 @@ def index_otrs_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", '404': "str", '500': "str", } @@ -232564,7 +232564,7 @@ def index_otrs_get_with_http_info( @validate_call - def index_otrs_get_without_preload_content( + def index_osv_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -232603,9 +232603,9 @@ def index_otrs_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"otrs\" + """Return vulnerability data stored in index \"osv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the osv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Open Source Vulnerabilities Database ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/osv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/osv?cursor=` :param page: set the page number of the response :type page: int @@ -232677,7 +232677,7 @@ def index_otrs_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_otrs_get_serialize( + _param = self._index_osv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -232709,7 +232709,7 @@ def index_otrs_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOSVPaginatePagination", '404': "str", '500': "str", } @@ -232720,7 +232720,7 @@ def index_otrs_get_without_preload_content( return response_data.response - def _index_otrs_get_serialize( + def _index_osv_get_serialize( self, page, limit, @@ -232888,7 +232888,7 @@ def _index_otrs_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/otrs', + resource_path='/v3/index/osv', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -232905,7 +232905,7 @@ def _index_otrs_get_serialize( @validate_call - def index_owncloud_get( + def index_otrs_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -232943,10 +232943,10 @@ def index_owncloud_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination: - """Return vulnerability data stored in index \"owncloud\" + ) -> RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination: + """Return vulnerability data stored in index \"otrs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` :param page: set the page number of the response :type page: int @@ -233018,7 +233018,7 @@ def index_owncloud_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_owncloud_get_serialize( + _param = self._index_otrs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233050,7 +233050,7 @@ def index_owncloud_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", '404': "str", '500': "str", } @@ -233066,7 +233066,7 @@ def index_owncloud_get( @validate_call - def index_owncloud_get_with_http_info( + def index_otrs_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233104,10 +233104,10 @@ def index_owncloud_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination]: - """Return vulnerability data stored in index \"owncloud\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination]: + """Return vulnerability data stored in index \"otrs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` :param page: set the page number of the response :type page: int @@ -233179,7 +233179,7 @@ def index_owncloud_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_owncloud_get_serialize( + _param = self._index_otrs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233211,7 +233211,7 @@ def index_owncloud_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", '404': "str", '500': "str", } @@ -233227,7 +233227,7 @@ def index_owncloud_get_with_http_info( @validate_call - def index_owncloud_get_without_preload_content( + def index_otrs_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233266,9 +233266,9 @@ def index_owncloud_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"owncloud\" + """Return vulnerability data stored in index \"otrs\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the otrs index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OTRS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/otrs?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/otrs?cursor=` :param page: set the page number of the response :type page: int @@ -233340,7 +233340,7 @@ def index_owncloud_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_owncloud_get_serialize( + _param = self._index_otrs_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233372,7 +233372,7 @@ def index_owncloud_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOTRSPaginatePagination", '404': "str", '500': "str", } @@ -233383,7 +233383,7 @@ def index_owncloud_get_without_preload_content( return response_data.response - def _index_owncloud_get_serialize( + def _index_otrs_get_serialize( self, page, limit, @@ -233551,7 +233551,7 @@ def _index_owncloud_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/owncloud', + resource_path='/v3/index/otrs', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -233568,7 +233568,7 @@ def _index_owncloud_get_serialize( @validate_call - def index_packetstorm_get( + def index_owncloud_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233606,10 +233606,10 @@ def index_packetstorm_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination: - """Return vulnerability data stored in index \"packetstorm\" + ) -> RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination: + """Return vulnerability data stored in index \"owncloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` :param page: set the page number of the response :type page: int @@ -233681,7 +233681,7 @@ def index_packetstorm_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_packetstorm_get_serialize( + _param = self._index_owncloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233713,7 +233713,7 @@ def index_packetstorm_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", '404': "str", '500': "str", } @@ -233729,7 +233729,7 @@ def index_packetstorm_get( @validate_call - def index_packetstorm_get_with_http_info( + def index_owncloud_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233767,10 +233767,10 @@ def index_packetstorm_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination]: - """Return vulnerability data stored in index \"packetstorm\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination]: + """Return vulnerability data stored in index \"owncloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` :param page: set the page number of the response :type page: int @@ -233842,7 +233842,7 @@ def index_packetstorm_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_packetstorm_get_serialize( + _param = self._index_owncloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -233874,7 +233874,7 @@ def index_packetstorm_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", '404': "str", '500': "str", } @@ -233890,7 +233890,7 @@ def index_packetstorm_get_with_http_info( @validate_call - def index_packetstorm_get_without_preload_content( + def index_owncloud_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -233929,9 +233929,9 @@ def index_packetstorm_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"packetstorm\" + """Return vulnerability data stored in index \"owncloud\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the owncloud index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** OwnCloud Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/owncloud?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/owncloud?cursor=` :param page: set the page number of the response :type page: int @@ -234003,7 +234003,7 @@ def index_packetstorm_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_packetstorm_get_serialize( + _param = self._index_owncloud_get_serialize( page=page, limit=limit, cursor=cursor, @@ -234035,7 +234035,7 @@ def index_packetstorm_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryOwnCloudPaginatePagination", '404': "str", '500': "str", } @@ -234046,7 +234046,7 @@ def index_packetstorm_get_without_preload_content( return response_data.response - def _index_packetstorm_get_serialize( + def _index_owncloud_get_serialize( self, page, limit, @@ -234214,7 +234214,7 @@ def _index_packetstorm_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/packetstorm', + resource_path='/v3/index/owncloud', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -234231,7 +234231,7 @@ def _index_packetstorm_get_serialize( @validate_call - def index_palantir_get( + def index_packetstorm_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -234269,10 +234269,10 @@ def index_palantir_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination: - """Return vulnerability data stored in index \"palantir\" + ) -> RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination: + """Return vulnerability data stored in index \"packetstorm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` :param page: set the page number of the response :type page: int @@ -234344,7 +234344,7 @@ def index_palantir_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palantir_get_serialize( + _param = self._index_packetstorm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -234376,7 +234376,7 @@ def index_palantir_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", '404': "str", '500': "str", } @@ -234392,7 +234392,7 @@ def index_palantir_get( @validate_call - def index_palantir_get_with_http_info( + def index_packetstorm_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -234430,10 +234430,10 @@ def index_palantir_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination]: - """Return vulnerability data stored in index \"palantir\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination]: + """Return vulnerability data stored in index \"packetstorm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` :param page: set the page number of the response :type page: int @@ -234505,7 +234505,7 @@ def index_palantir_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palantir_get_serialize( + _param = self._index_packetstorm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -234537,7 +234537,7 @@ def index_palantir_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", '404': "str", '500': "str", } @@ -234553,7 +234553,7 @@ def index_palantir_get_with_http_info( @validate_call - def index_palantir_get_without_preload_content( + def index_packetstorm_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -234592,9 +234592,9 @@ def index_palantir_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"palantir\" + """Return vulnerability data stored in index \"packetstorm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the packetstorm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PacketStorm ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/packetstorm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/packetstorm?cursor=` :param page: set the page number of the response :type page: int @@ -234666,7 +234666,7 @@ def index_palantir_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palantir_get_serialize( + _param = self._index_packetstorm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -234698,7 +234698,7 @@ def index_palantir_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPacketstormExploitPaginatePagination", '404': "str", '500': "str", } @@ -234709,7 +234709,7 @@ def index_palantir_get_without_preload_content( return response_data.response - def _index_palantir_get_serialize( + def _index_packetstorm_get_serialize( self, page, limit, @@ -234877,7 +234877,7 @@ def _index_palantir_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/palantir', + resource_path='/v3/index/packetstorm', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -234894,7 +234894,7 @@ def _index_palantir_get_serialize( @validate_call - def index_palo_alto_get( + def index_palantir_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -234932,10 +234932,10 @@ def index_palo_alto_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"palo-alto\" + ) -> RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination: + """Return vulnerability data stored in index \"palantir\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` :param page: set the page number of the response :type page: int @@ -235007,7 +235007,7 @@ def index_palo_alto_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palo_alto_get_serialize( + _param = self._index_palantir_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235039,7 +235039,7 @@ def index_palo_alto_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", '404': "str", '500': "str", } @@ -235055,7 +235055,7 @@ def index_palo_alto_get( @validate_call - def index_palo_alto_get_with_http_info( + def index_palantir_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235093,10 +235093,10 @@ def index_palo_alto_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"palo-alto\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination]: + """Return vulnerability data stored in index \"palantir\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` :param page: set the page number of the response :type page: int @@ -235168,7 +235168,7 @@ def index_palo_alto_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palo_alto_get_serialize( + _param = self._index_palantir_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235200,7 +235200,7 @@ def index_palo_alto_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", '404': "str", '500': "str", } @@ -235216,7 +235216,7 @@ def index_palo_alto_get_with_http_info( @validate_call - def index_palo_alto_get_without_preload_content( + def index_palantir_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235255,9 +235255,9 @@ def index_palo_alto_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"palo-alto\" + """Return vulnerability data stored in index \"palantir\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palantir index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palantir Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palantir?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palantir?cursor=` :param page: set the page number of the response :type page: int @@ -235329,7 +235329,7 @@ def index_palo_alto_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_palo_alto_get_serialize( + _param = self._index_palantir_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235361,7 +235361,7 @@ def index_palo_alto_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPalantirPaginatePagination", '404': "str", '500': "str", } @@ -235372,7 +235372,7 @@ def index_palo_alto_get_without_preload_content( return response_data.response - def _index_palo_alto_get_serialize( + def _index_palantir_get_serialize( self, page, limit, @@ -235540,7 +235540,7 @@ def _index_palo_alto_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/palo-alto', + resource_path='/v3/index/palantir', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -235557,7 +235557,7 @@ def _index_palo_alto_get_serialize( @validate_call - def index_panasonic_get( + def index_palo_alto_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235595,10 +235595,10 @@ def index_panasonic_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination: - """Return vulnerability data stored in index \"panasonic\" + ) -> RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"palo-alto\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` :param page: set the page number of the response :type page: int @@ -235670,7 +235670,7 @@ def index_panasonic_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_panasonic_get_serialize( + _param = self._index_palo_alto_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235702,7 +235702,7 @@ def index_panasonic_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -235718,7 +235718,7 @@ def index_panasonic_get( @validate_call - def index_panasonic_get_with_http_info( + def index_palo_alto_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235756,10 +235756,10 @@ def index_panasonic_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination]: - """Return vulnerability data stored in index \"panasonic\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"palo-alto\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` :param page: set the page number of the response :type page: int @@ -235831,7 +235831,7 @@ def index_panasonic_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_panasonic_get_serialize( + _param = self._index_palo_alto_get_serialize( page=page, limit=limit, cursor=cursor, @@ -235863,7 +235863,7 @@ def index_panasonic_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -235879,7 +235879,7 @@ def index_panasonic_get_with_http_info( @validate_call - def index_panasonic_get_without_preload_content( + def index_palo_alto_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -235918,9 +235918,9 @@ def index_panasonic_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"panasonic\" + """Return vulnerability data stored in index \"palo-alto\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the palo-alto index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Palo Alto Networks Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/palo-alto?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/palo-alto?cursor=` :param page: set the page number of the response :type page: int @@ -235992,7 +235992,7 @@ def index_panasonic_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_panasonic_get_serialize( + _param = self._index_palo_alto_get_serialize( page=page, limit=limit, cursor=cursor, @@ -236024,7 +236024,7 @@ def index_panasonic_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaloAltoAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -236035,7 +236035,7 @@ def index_panasonic_get_without_preload_content( return response_data.response - def _index_panasonic_get_serialize( + def _index_palo_alto_get_serialize( self, page, limit, @@ -236203,7 +236203,7 @@ def _index_panasonic_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/panasonic', + resource_path='/v3/index/palo-alto', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -236220,7 +236220,7 @@ def _index_panasonic_get_serialize( @validate_call - def index_papercut_get( + def index_panasonic_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -236258,10 +236258,10 @@ def index_papercut_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination: - """Return vulnerability data stored in index \"papercut\" + ) -> RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination: + """Return vulnerability data stored in index \"panasonic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` :param page: set the page number of the response :type page: int @@ -236333,7 +236333,7 @@ def index_papercut_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_papercut_get_serialize( + _param = self._index_panasonic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -236365,7 +236365,7 @@ def index_papercut_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", '404': "str", '500': "str", } @@ -236381,7 +236381,7 @@ def index_papercut_get( @validate_call - def index_papercut_get_with_http_info( + def index_panasonic_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -236419,10 +236419,10 @@ def index_papercut_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination]: - """Return vulnerability data stored in index \"papercut\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination]: + """Return vulnerability data stored in index \"panasonic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` :param page: set the page number of the response :type page: int @@ -236494,7 +236494,7 @@ def index_papercut_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_papercut_get_serialize( + _param = self._index_panasonic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -236526,7 +236526,7 @@ def index_papercut_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", '404': "str", '500': "str", } @@ -236542,7 +236542,7 @@ def index_papercut_get_with_http_info( @validate_call - def index_papercut_get_without_preload_content( + def index_panasonic_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -236581,9 +236581,9 @@ def index_papercut_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"papercut\" + """Return vulnerability data stored in index \"panasonic\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the panasonic index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Panasonic Vulnerability Advisory List ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/panasonic?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/panasonic?cursor=` :param page: set the page number of the response :type page: int @@ -236655,7 +236655,7 @@ def index_papercut_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_papercut_get_serialize( + _param = self._index_panasonic_get_serialize( page=page, limit=limit, cursor=cursor, @@ -236687,7 +236687,7 @@ def index_papercut_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPanasonicPaginatePagination", '404': "str", '500': "str", } @@ -236698,7 +236698,7 @@ def index_papercut_get_without_preload_content( return response_data.response - def _index_papercut_get_serialize( + def _index_panasonic_get_serialize( self, page, limit, @@ -236866,7 +236866,7 @@ def _index_papercut_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/papercut', + resource_path='/v3/index/panasonic', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -236883,7 +236883,7 @@ def _index_papercut_get_serialize( @validate_call - def index_pega_get( + def index_papercut_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -236921,10 +236921,10 @@ def index_pega_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination: - """Return vulnerability data stored in index \"pega\" + ) -> RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination: + """Return vulnerability data stored in index \"papercut\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` :param page: set the page number of the response :type page: int @@ -236996,7 +236996,7 @@ def index_pega_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pega_get_serialize( + _param = self._index_papercut_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237028,7 +237028,7 @@ def index_pega_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", '404': "str", '500': "str", } @@ -237044,7 +237044,7 @@ def index_pega_get( @validate_call - def index_pega_get_with_http_info( + def index_papercut_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237082,10 +237082,10 @@ def index_pega_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination]: - """Return vulnerability data stored in index \"pega\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination]: + """Return vulnerability data stored in index \"papercut\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` :param page: set the page number of the response :type page: int @@ -237157,7 +237157,7 @@ def index_pega_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pega_get_serialize( + _param = self._index_papercut_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237189,7 +237189,7 @@ def index_pega_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", '404': "str", '500': "str", } @@ -237205,7 +237205,7 @@ def index_pega_get_with_http_info( @validate_call - def index_pega_get_without_preload_content( + def index_papercut_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237244,9 +237244,9 @@ def index_pega_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pega\" + """Return vulnerability data stored in index \"papercut\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the papercut index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PaperCut Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/papercut?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/papercut?cursor=` :param page: set the page number of the response :type page: int @@ -237318,7 +237318,7 @@ def index_pega_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pega_get_serialize( + _param = self._index_papercut_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237350,7 +237350,7 @@ def index_pega_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPaperCutPaginatePagination", '404': "str", '500': "str", } @@ -237361,7 +237361,7 @@ def index_pega_get_without_preload_content( return response_data.response - def _index_pega_get_serialize( + def _index_papercut_get_serialize( self, page, limit, @@ -237529,7 +237529,7 @@ def _index_pega_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pega', + resource_path='/v3/index/papercut', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -237546,7 +237546,7 @@ def _index_pega_get_serialize( @validate_call - def index_philips_get( + def index_pega_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237584,10 +237584,10 @@ def index_philips_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"philips\" + ) -> RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination: + """Return vulnerability data stored in index \"pega\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` :param page: set the page number of the response :type page: int @@ -237659,7 +237659,7 @@ def index_philips_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_philips_get_serialize( + _param = self._index_pega_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237691,7 +237691,7 @@ def index_philips_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", '404': "str", '500': "str", } @@ -237707,7 +237707,7 @@ def index_philips_get( @validate_call - def index_philips_get_with_http_info( + def index_pega_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237745,10 +237745,10 @@ def index_philips_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"philips\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination]: + """Return vulnerability data stored in index \"pega\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` :param page: set the page number of the response :type page: int @@ -237820,7 +237820,7 @@ def index_philips_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_philips_get_serialize( + _param = self._index_pega_get_serialize( page=page, limit=limit, cursor=cursor, @@ -237852,7 +237852,7 @@ def index_philips_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", '404': "str", '500': "str", } @@ -237868,7 +237868,7 @@ def index_philips_get_with_http_info( @validate_call - def index_philips_get_without_preload_content( + def index_pega_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -237907,9 +237907,9 @@ def index_philips_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"philips\" + """Return vulnerability data stored in index \"pega\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pega index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pega Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pega?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pega?cursor=` :param page: set the page number of the response :type page: int @@ -237981,7 +237981,7 @@ def index_philips_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_philips_get_serialize( + _param = self._index_pega_get_serialize( page=page, limit=limit, cursor=cursor, @@ -238013,7 +238013,7 @@ def index_philips_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPegaPaginatePagination", '404': "str", '500': "str", } @@ -238024,7 +238024,7 @@ def index_philips_get_without_preload_content( return response_data.response - def _index_philips_get_serialize( + def _index_pega_get_serialize( self, page, limit, @@ -238192,7 +238192,7 @@ def _index_philips_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/philips', + resource_path='/v3/index/pega', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -238209,7 +238209,7 @@ def _index_philips_get_serialize( @validate_call - def index_phoenix_contact_get( + def index_philips_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -238247,10 +238247,10 @@ def index_phoenix_contact_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"phoenix-contact\" + ) -> RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"philips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` :param page: set the page number of the response :type page: int @@ -238322,7 +238322,7 @@ def index_phoenix_contact_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_phoenix_contact_get_serialize( + _param = self._index_philips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -238354,7 +238354,7 @@ def index_phoenix_contact_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -238370,7 +238370,7 @@ def index_phoenix_contact_get( @validate_call - def index_phoenix_contact_get_with_http_info( + def index_philips_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -238408,10 +238408,10 @@ def index_phoenix_contact_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"phoenix-contact\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"philips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` :param page: set the page number of the response :type page: int @@ -238483,7 +238483,7 @@ def index_phoenix_contact_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_phoenix_contact_get_serialize( + _param = self._index_philips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -238515,7 +238515,7 @@ def index_phoenix_contact_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -238531,7 +238531,7 @@ def index_phoenix_contact_get_with_http_info( @validate_call - def index_phoenix_contact_get_without_preload_content( + def index_philips_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -238570,9 +238570,9 @@ def index_phoenix_contact_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"phoenix-contact\" + """Return vulnerability data stored in index \"philips\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the philips index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Philips Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/philips?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/philips?cursor=` :param page: set the page number of the response :type page: int @@ -238644,7 +238644,7 @@ def index_phoenix_contact_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_phoenix_contact_get_serialize( + _param = self._index_philips_get_serialize( page=page, limit=limit, cursor=cursor, @@ -238676,7 +238676,7 @@ def index_phoenix_contact_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhilipsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -238687,7 +238687,7 @@ def index_phoenix_contact_get_without_preload_content( return response_data.response - def _index_phoenix_contact_get_serialize( + def _index_philips_get_serialize( self, page, limit, @@ -238855,7 +238855,7 @@ def _index_phoenix_contact_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/phoenix-contact', + resource_path='/v3/index/philips', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -238872,7 +238872,7 @@ def _index_phoenix_contact_get_serialize( @validate_call - def index_php_my_admin_get( + def index_phoenix_contact_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -238910,10 +238910,10 @@ def index_php_my_admin_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination: - """Return vulnerability data stored in index \"php-my-admin\" + ) -> RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"phoenix-contact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` :param page: set the page number of the response :type page: int @@ -238985,7 +238985,7 @@ def index_php_my_admin_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_php_my_admin_get_serialize( + _param = self._index_phoenix_contact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239017,7 +239017,7 @@ def index_php_my_admin_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -239033,7 +239033,7 @@ def index_php_my_admin_get( @validate_call - def index_php_my_admin_get_with_http_info( + def index_phoenix_contact_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239071,10 +239071,10 @@ def index_php_my_admin_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination]: - """Return vulnerability data stored in index \"php-my-admin\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"phoenix-contact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` :param page: set the page number of the response :type page: int @@ -239146,7 +239146,7 @@ def index_php_my_admin_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_php_my_admin_get_serialize( + _param = self._index_phoenix_contact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239178,7 +239178,7 @@ def index_php_my_admin_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -239194,7 +239194,7 @@ def index_php_my_admin_get_with_http_info( @validate_call - def index_php_my_admin_get_without_preload_content( + def index_phoenix_contact_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239233,9 +239233,9 @@ def index_php_my_admin_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"php-my-admin\" + """Return vulnerability data stored in index \"phoenix-contact\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the phoenix-contact index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Phoenix Contact Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/phoenix-contact?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/phoenix-contact?cursor=` :param page: set the page number of the response :type page: int @@ -239307,7 +239307,7 @@ def index_php_my_admin_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_php_my_admin_get_serialize( + _param = self._index_phoenix_contact_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239339,7 +239339,7 @@ def index_php_my_admin_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPhoenixContactAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -239350,7 +239350,7 @@ def index_php_my_admin_get_without_preload_content( return response_data.response - def _index_php_my_admin_get_serialize( + def _index_phoenix_contact_get_serialize( self, page, limit, @@ -239518,7 +239518,7 @@ def _index_php_my_admin_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/php-my-admin', + resource_path='/v3/index/phoenix-contact', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -239535,7 +239535,7 @@ def _index_php_my_admin_get_serialize( @validate_call - def index_pkcert_get( + def index_php_my_admin_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239573,10 +239573,10 @@ def index_pkcert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination: - """Return vulnerability data stored in index \"pkcert\" + ) -> RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination: + """Return vulnerability data stored in index \"php-my-admin\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` :param page: set the page number of the response :type page: int @@ -239648,7 +239648,7 @@ def index_pkcert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pkcert_get_serialize( + _param = self._index_php_my_admin_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239680,7 +239680,7 @@ def index_pkcert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", '404': "str", '500': "str", } @@ -239696,7 +239696,7 @@ def index_pkcert_get( @validate_call - def index_pkcert_get_with_http_info( + def index_php_my_admin_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239734,10 +239734,10 @@ def index_pkcert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination]: - """Return vulnerability data stored in index \"pkcert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination]: + """Return vulnerability data stored in index \"php-my-admin\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` :param page: set the page number of the response :type page: int @@ -239809,7 +239809,7 @@ def index_pkcert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pkcert_get_serialize( + _param = self._index_php_my_admin_get_serialize( page=page, limit=limit, cursor=cursor, @@ -239841,7 +239841,7 @@ def index_pkcert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", '404': "str", '500': "str", } @@ -239857,7 +239857,7 @@ def index_pkcert_get_with_http_info( @validate_call - def index_pkcert_get_without_preload_content( + def index_php_my_admin_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -239896,9 +239896,9 @@ def index_pkcert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pkcert\" + """Return vulnerability data stored in index \"php-my-admin\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the php-my-admin index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** phpMyAdmin Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/php-my-admin?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/php-my-admin?cursor=` :param page: set the page number of the response :type page: int @@ -239970,7 +239970,7 @@ def index_pkcert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pkcert_get_serialize( + _param = self._index_php_my_admin_get_serialize( page=page, limit=limit, cursor=cursor, @@ -240002,7 +240002,7 @@ def index_pkcert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPHPMyAdminPaginatePagination", '404': "str", '500': "str", } @@ -240013,7 +240013,7 @@ def index_pkcert_get_without_preload_content( return response_data.response - def _index_pkcert_get_serialize( + def _index_php_my_admin_get_serialize( self, page, limit, @@ -240181,7 +240181,7 @@ def _index_pkcert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pkcert', + resource_path='/v3/index/php-my-admin', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -240198,7 +240198,7 @@ def _index_pkcert_get_serialize( @validate_call - def index_postgressql_get( + def index_pkcert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -240236,10 +240236,10 @@ def index_postgressql_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination: - """Return vulnerability data stored in index \"postgressql\" + ) -> RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination: + """Return vulnerability data stored in index \"pkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` :param page: set the page number of the response :type page: int @@ -240311,7 +240311,7 @@ def index_postgressql_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_postgressql_get_serialize( + _param = self._index_pkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -240343,7 +240343,7 @@ def index_postgressql_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", '404': "str", '500': "str", } @@ -240359,7 +240359,7 @@ def index_postgressql_get( @validate_call - def index_postgressql_get_with_http_info( + def index_pkcert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -240397,10 +240397,10 @@ def index_postgressql_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination]: - """Return vulnerability data stored in index \"postgressql\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination]: + """Return vulnerability data stored in index \"pkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` :param page: set the page number of the response :type page: int @@ -240472,7 +240472,7 @@ def index_postgressql_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_postgressql_get_serialize( + _param = self._index_pkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -240504,7 +240504,7 @@ def index_postgressql_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", '404': "str", '500': "str", } @@ -240520,7 +240520,7 @@ def index_postgressql_get_with_http_info( @validate_call - def index_postgressql_get_without_preload_content( + def index_pkcert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -240559,9 +240559,9 @@ def index_postgressql_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"postgressql\" + """Return vulnerability data stored in index \"pkcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pkcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PK CERT Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pkcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pkcert?cursor=` :param page: set the page number of the response :type page: int @@ -240633,7 +240633,7 @@ def index_postgressql_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_postgressql_get_serialize( + _param = self._index_pkcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -240665,7 +240665,7 @@ def index_postgressql_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPKCertPaginatePagination", '404': "str", '500': "str", } @@ -240676,7 +240676,7 @@ def index_postgressql_get_without_preload_content( return response_data.response - def _index_postgressql_get_serialize( + def _index_pkcert_get_serialize( self, page, limit, @@ -240844,7 +240844,7 @@ def _index_postgressql_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/postgressql', + resource_path='/v3/index/pkcert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -240861,7 +240861,7 @@ def _index_postgressql_get_serialize( @validate_call - def index_powerdns_get( + def index_postgressql_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -240899,10 +240899,10 @@ def index_powerdns_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination: - """Return vulnerability data stored in index \"powerdns\" + ) -> RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination: + """Return vulnerability data stored in index \"postgressql\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` :param page: set the page number of the response :type page: int @@ -240974,7 +240974,7 @@ def index_powerdns_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_powerdns_get_serialize( + _param = self._index_postgressql_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241006,7 +241006,7 @@ def index_powerdns_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", '404': "str", '500': "str", } @@ -241022,7 +241022,7 @@ def index_powerdns_get( @validate_call - def index_powerdns_get_with_http_info( + def index_postgressql_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241060,10 +241060,10 @@ def index_powerdns_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination]: - """Return vulnerability data stored in index \"powerdns\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination]: + """Return vulnerability data stored in index \"postgressql\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` :param page: set the page number of the response :type page: int @@ -241135,7 +241135,7 @@ def index_powerdns_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_powerdns_get_serialize( + _param = self._index_postgressql_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241167,7 +241167,7 @@ def index_powerdns_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", '404': "str", '500': "str", } @@ -241183,7 +241183,7 @@ def index_powerdns_get_with_http_info( @validate_call - def index_powerdns_get_without_preload_content( + def index_postgressql_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241222,9 +241222,9 @@ def index_powerdns_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"powerdns\" + """Return vulnerability data stored in index \"postgressql\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the postgressql index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PostgresSQL Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/postgressql?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/postgressql?cursor=` :param page: set the page number of the response :type page: int @@ -241296,7 +241296,7 @@ def index_powerdns_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_powerdns_get_serialize( + _param = self._index_postgressql_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241328,7 +241328,7 @@ def index_powerdns_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPostgresSQLPaginatePagination", '404': "str", '500': "str", } @@ -241339,7 +241339,7 @@ def index_powerdns_get_without_preload_content( return response_data.response - def _index_powerdns_get_serialize( + def _index_postgressql_get_serialize( self, page, limit, @@ -241507,7 +241507,7 @@ def _index_powerdns_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/powerdns', + resource_path='/v3/index/postgressql', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -241524,7 +241524,7 @@ def _index_powerdns_get_serialize( @validate_call - def index_progress_get( + def index_powerdns_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241562,10 +241562,10 @@ def index_progress_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination: - """Return vulnerability data stored in index \"progress\" + ) -> RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination: + """Return vulnerability data stored in index \"powerdns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` :param page: set the page number of the response :type page: int @@ -241637,7 +241637,7 @@ def index_progress_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_progress_get_serialize( + _param = self._index_powerdns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241669,7 +241669,7 @@ def index_progress_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", '404': "str", '500': "str", } @@ -241685,7 +241685,7 @@ def index_progress_get( @validate_call - def index_progress_get_with_http_info( + def index_powerdns_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241723,10 +241723,10 @@ def index_progress_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination]: - """Return vulnerability data stored in index \"progress\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination]: + """Return vulnerability data stored in index \"powerdns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` :param page: set the page number of the response :type page: int @@ -241798,7 +241798,7 @@ def index_progress_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_progress_get_serialize( + _param = self._index_powerdns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241830,7 +241830,7 @@ def index_progress_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", '404': "str", '500': "str", } @@ -241846,7 +241846,7 @@ def index_progress_get_with_http_info( @validate_call - def index_progress_get_without_preload_content( + def index_powerdns_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -241885,9 +241885,9 @@ def index_progress_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"progress\" + """Return vulnerability data stored in index \"powerdns\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the powerdns index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PowerDNS Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/powerdns?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/powerdns?cursor=` :param page: set the page number of the response :type page: int @@ -241959,7 +241959,7 @@ def index_progress_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_progress_get_serialize( + _param = self._index_powerdns_get_serialize( page=page, limit=limit, cursor=cursor, @@ -241991,7 +241991,7 @@ def index_progress_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPowerDNSPaginatePagination", '404': "str", '500': "str", } @@ -242002,7 +242002,7 @@ def index_progress_get_without_preload_content( return response_data.response - def _index_progress_get_serialize( + def _index_powerdns_get_serialize( self, page, limit, @@ -242170,7 +242170,7 @@ def _index_progress_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/progress', + resource_path='/v3/index/powerdns', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -242187,7 +242187,7 @@ def _index_progress_get_serialize( @validate_call - def index_proofpoint_get( + def index_progress_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -242225,10 +242225,10 @@ def index_proofpoint_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination: - """Return vulnerability data stored in index \"proofpoint\" + ) -> RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination: + """Return vulnerability data stored in index \"progress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` :param page: set the page number of the response :type page: int @@ -242300,7 +242300,7 @@ def index_proofpoint_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_proofpoint_get_serialize( + _param = self._index_progress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -242332,7 +242332,7 @@ def index_proofpoint_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", '404': "str", '500': "str", } @@ -242348,7 +242348,7 @@ def index_proofpoint_get( @validate_call - def index_proofpoint_get_with_http_info( + def index_progress_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -242386,10 +242386,10 @@ def index_proofpoint_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination]: - """Return vulnerability data stored in index \"proofpoint\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination]: + """Return vulnerability data stored in index \"progress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` :param page: set the page number of the response :type page: int @@ -242461,7 +242461,7 @@ def index_proofpoint_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_proofpoint_get_serialize( + _param = self._index_progress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -242493,7 +242493,7 @@ def index_proofpoint_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", '404': "str", '500': "str", } @@ -242509,7 +242509,7 @@ def index_proofpoint_get_with_http_info( @validate_call - def index_proofpoint_get_without_preload_content( + def index_progress_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -242548,9 +242548,9 @@ def index_proofpoint_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"proofpoint\" + """Return vulnerability data stored in index \"progress\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the progress index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Progress Product Alert Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/progress?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/progress?cursor=` :param page: set the page number of the response :type page: int @@ -242622,7 +242622,7 @@ def index_proofpoint_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_proofpoint_get_serialize( + _param = self._index_progress_get_serialize( page=page, limit=limit, cursor=cursor, @@ -242654,7 +242654,7 @@ def index_proofpoint_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProgressPaginatePagination", '404': "str", '500': "str", } @@ -242665,7 +242665,7 @@ def index_proofpoint_get_without_preload_content( return response_data.response - def _index_proofpoint_get_serialize( + def _index_progress_get_serialize( self, page, limit, @@ -242833,7 +242833,7 @@ def _index_proofpoint_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/proofpoint', + resource_path='/v3/index/progress', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -242850,7 +242850,7 @@ def _index_proofpoint_get_serialize( @validate_call - def index_ptc_get( + def index_proofpoint_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -242888,10 +242888,10 @@ def index_ptc_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination: - """Return vulnerability data stored in index \"ptc\" + ) -> RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination: + """Return vulnerability data stored in index \"proofpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` :param page: set the page number of the response :type page: int @@ -242963,7 +242963,7 @@ def index_ptc_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ptc_get_serialize( + _param = self._index_proofpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -242995,7 +242995,7 @@ def index_ptc_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", '404': "str", '500': "str", } @@ -243011,7 +243011,7 @@ def index_ptc_get( @validate_call - def index_ptc_get_with_http_info( + def index_proofpoint_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243049,10 +243049,10 @@ def index_ptc_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination]: - """Return vulnerability data stored in index \"ptc\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination]: + """Return vulnerability data stored in index \"proofpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` :param page: set the page number of the response :type page: int @@ -243124,7 +243124,7 @@ def index_ptc_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ptc_get_serialize( + _param = self._index_proofpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243156,7 +243156,7 @@ def index_ptc_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", '404': "str", '500': "str", } @@ -243172,7 +243172,7 @@ def index_ptc_get_with_http_info( @validate_call - def index_ptc_get_without_preload_content( + def index_proofpoint_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243211,9 +243211,9 @@ def index_ptc_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ptc\" + """Return vulnerability data stored in index \"proofpoint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the proofpoint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Proofpoint Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/proofpoint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/proofpoint?cursor=` :param page: set the page number of the response :type page: int @@ -243285,7 +243285,7 @@ def index_ptc_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ptc_get_serialize( + _param = self._index_proofpoint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243317,7 +243317,7 @@ def index_ptc_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryProofpointPaginatePagination", '404': "str", '500': "str", } @@ -243328,7 +243328,7 @@ def index_ptc_get_without_preload_content( return response_data.response - def _index_ptc_get_serialize( + def _index_proofpoint_get_serialize( self, page, limit, @@ -243496,7 +243496,7 @@ def _index_ptc_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ptc', + resource_path='/v3/index/proofpoint', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -243513,7 +243513,7 @@ def _index_ptc_get_serialize( @validate_call - def index_pub_get( + def index_ptc_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243551,10 +243551,10 @@ def index_pub_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"pub\" + ) -> RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination: + """Return vulnerability data stored in index \"ptc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` :param page: set the page number of the response :type page: int @@ -243626,7 +243626,7 @@ def index_pub_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pub_get_serialize( + _param = self._index_ptc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243658,7 +243658,7 @@ def index_pub_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", '404': "str", '500': "str", } @@ -243674,7 +243674,7 @@ def index_pub_get( @validate_call - def index_pub_get_with_http_info( + def index_ptc_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243712,10 +243712,10 @@ def index_pub_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"pub\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination]: + """Return vulnerability data stored in index \"ptc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` :param page: set the page number of the response :type page: int @@ -243787,7 +243787,7 @@ def index_pub_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pub_get_serialize( + _param = self._index_ptc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243819,7 +243819,7 @@ def index_pub_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", '404': "str", '500': "str", } @@ -243835,7 +243835,7 @@ def index_pub_get_with_http_info( @validate_call - def index_pub_get_without_preload_content( + def index_ptc_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -243874,9 +243874,9 @@ def index_pub_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pub\" + """Return vulnerability data stored in index \"ptc\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ptc index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PTC Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ptc?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ptc?cursor=` :param page: set the page number of the response :type page: int @@ -243948,7 +243948,7 @@ def index_pub_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pub_get_serialize( + _param = self._index_ptc_get_serialize( page=page, limit=limit, cursor=cursor, @@ -243980,7 +243980,7 @@ def index_pub_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPTCPaginatePagination", '404': "str", '500': "str", } @@ -243991,7 +243991,7 @@ def index_pub_get_without_preload_content( return response_data.response - def _index_pub_get_serialize( + def _index_ptc_get_serialize( self, page, limit, @@ -244159,7 +244159,7 @@ def _index_pub_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pub', + resource_path='/v3/index/ptc', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -244176,7 +244176,7 @@ def _index_pub_get_serialize( @validate_call - def index_pure_storage_get( + def index_pub_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -244214,10 +244214,10 @@ def index_pure_storage_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination: - """Return vulnerability data stored in index \"pure-storage\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"pub\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` :param page: set the page number of the response :type page: int @@ -244289,7 +244289,7 @@ def index_pure_storage_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pure_storage_get_serialize( + _param = self._index_pub_get_serialize( page=page, limit=limit, cursor=cursor, @@ -244321,7 +244321,7 @@ def index_pure_storage_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -244337,7 +244337,7 @@ def index_pure_storage_get( @validate_call - def index_pure_storage_get_with_http_info( + def index_pub_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -244375,10 +244375,10 @@ def index_pure_storage_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination]: - """Return vulnerability data stored in index \"pure-storage\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"pub\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` :param page: set the page number of the response :type page: int @@ -244450,7 +244450,7 @@ def index_pure_storage_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pure_storage_get_serialize( + _param = self._index_pub_get_serialize( page=page, limit=limit, cursor=cursor, @@ -244482,7 +244482,7 @@ def index_pure_storage_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -244498,7 +244498,7 @@ def index_pure_storage_get_with_http_info( @validate_call - def index_pure_storage_get_without_preload_content( + def index_pub_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -244537,9 +244537,9 @@ def index_pure_storage_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pure-storage\" + """Return vulnerability data stored in index \"pub\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pub index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pub (Dart/Flutter) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pub?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pub?cursor=` :param page: set the page number of the response :type page: int @@ -244611,7 +244611,7 @@ def index_pure_storage_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pure_storage_get_serialize( + _param = self._index_pub_get_serialize( page=page, limit=limit, cursor=cursor, @@ -244643,7 +244643,7 @@ def index_pure_storage_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -244654,7 +244654,7 @@ def index_pure_storage_get_without_preload_content( return response_data.response - def _index_pure_storage_get_serialize( + def _index_pub_get_serialize( self, page, limit, @@ -244822,7 +244822,7 @@ def _index_pure_storage_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pure-storage', + resource_path='/v3/index/pub', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -244839,7 +244839,7 @@ def _index_pure_storage_get_serialize( @validate_call - def index_pypa_advisories_get( + def index_pure_storage_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -244877,10 +244877,10 @@ def index_pypa_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"pypa-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination: + """Return vulnerability data stored in index \"pure-storage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` :param page: set the page number of the response :type page: int @@ -244952,7 +244952,7 @@ def index_pypa_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypa_advisories_get_serialize( + _param = self._index_pure_storage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -244984,7 +244984,7 @@ def index_pypa_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", '404': "str", '500': "str", } @@ -245000,7 +245000,7 @@ def index_pypa_advisories_get( @validate_call - def index_pypa_advisories_get_with_http_info( + def index_pure_storage_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245038,10 +245038,10 @@ def index_pypa_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"pypa-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination]: + """Return vulnerability data stored in index \"pure-storage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` :param page: set the page number of the response :type page: int @@ -245113,7 +245113,7 @@ def index_pypa_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypa_advisories_get_serialize( + _param = self._index_pure_storage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245145,7 +245145,7 @@ def index_pypa_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", '404': "str", '500': "str", } @@ -245161,7 +245161,7 @@ def index_pypa_advisories_get_with_http_info( @validate_call - def index_pypa_advisories_get_without_preload_content( + def index_pure_storage_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245200,9 +245200,9 @@ def index_pypa_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pypa-advisories\" + """Return vulnerability data stored in index \"pure-storage\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pure-storage index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Pure Storage Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pure-storage?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pure-storage?cursor=` :param page: set the page number of the response :type page: int @@ -245274,7 +245274,7 @@ def index_pypa_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypa_advisories_get_serialize( + _param = self._index_pure_storage_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245306,7 +245306,7 @@ def index_pypa_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPureStoragePaginatePagination", '404': "str", '500': "str", } @@ -245317,7 +245317,7 @@ def index_pypa_advisories_get_without_preload_content( return response_data.response - def _index_pypa_advisories_get_serialize( + def _index_pure_storage_get_serialize( self, page, limit, @@ -245485,7 +245485,7 @@ def _index_pypa_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pypa-advisories', + resource_path='/v3/index/pure-storage', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -245502,7 +245502,7 @@ def _index_pypa_advisories_get_serialize( @validate_call - def index_pypi_get( + def index_pypa_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245540,10 +245540,10 @@ def index_pypi_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"pypi\" + ) -> RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"pypa-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -245615,7 +245615,7 @@ def index_pypi_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypi_get_serialize( + _param = self._index_pypa_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245647,7 +245647,7 @@ def index_pypi_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -245663,7 +245663,7 @@ def index_pypi_get( @validate_call - def index_pypi_get_with_http_info( + def index_pypa_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245701,10 +245701,10 @@ def index_pypi_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"pypi\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"pypa-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -245776,7 +245776,7 @@ def index_pypi_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypi_get_serialize( + _param = self._index_pypa_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245808,7 +245808,7 @@ def index_pypi_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -245824,7 +245824,7 @@ def index_pypi_get_with_http_info( @validate_call - def index_pypi_get_without_preload_content( + def index_pypa_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -245863,9 +245863,9 @@ def index_pypi_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"pypi\" + """Return vulnerability data stored in index \"pypa-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypa-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPA Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypa-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypa-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -245937,7 +245937,7 @@ def index_pypi_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_pypi_get_serialize( + _param = self._index_pypa_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -245969,7 +245969,7 @@ def index_pypi_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryPyPAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -245980,7 +245980,7 @@ def index_pypi_get_without_preload_content( return response_data.response - def _index_pypi_get_serialize( + def _index_pypa_advisories_get_serialize( self, page, limit, @@ -246148,7 +246148,7 @@ def _index_pypi_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/pypi', + resource_path='/v3/index/pypa-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -246165,7 +246165,7 @@ def _index_pypi_get_serialize( @validate_call - def index_qnap_get( + def index_pypi_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -246203,10 +246203,10 @@ def index_qnap_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"qnap\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"pypi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` :param page: set the page number of the response :type page: int @@ -246278,7 +246278,7 @@ def index_qnap_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qnap_get_serialize( + _param = self._index_pypi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -246310,7 +246310,7 @@ def index_qnap_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -246326,7 +246326,7 @@ def index_qnap_get( @validate_call - def index_qnap_get_with_http_info( + def index_pypi_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -246364,10 +246364,10 @@ def index_qnap_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"qnap\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"pypi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` :param page: set the page number of the response :type page: int @@ -246439,7 +246439,7 @@ def index_qnap_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qnap_get_serialize( + _param = self._index_pypi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -246471,7 +246471,7 @@ def index_qnap_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -246487,7 +246487,7 @@ def index_qnap_get_with_http_info( @validate_call - def index_qnap_get_without_preload_content( + def index_pypi_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -246526,9 +246526,9 @@ def index_qnap_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qnap\" + """Return vulnerability data stored in index \"pypi\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the pypi index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** PyPi (Python) packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/pypi?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/pypi?cursor=` :param page: set the page number of the response :type page: int @@ -246600,7 +246600,7 @@ def index_qnap_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qnap_get_serialize( + _param = self._index_pypi_get_serialize( page=page, limit=limit, cursor=cursor, @@ -246632,7 +246632,7 @@ def index_qnap_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -246643,7 +246643,7 @@ def index_qnap_get_without_preload_content( return response_data.response - def _index_qnap_get_serialize( + def _index_pypi_get_serialize( self, page, limit, @@ -246811,7 +246811,7 @@ def _index_qnap_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qnap', + resource_path='/v3/index/pypi', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -246828,7 +246828,7 @@ def _index_qnap_get_serialize( @validate_call - def index_qqids_get( + def index_qnap_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -246866,10 +246866,10 @@ def index_qqids_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination: - """Return vulnerability data stored in index \"qqids\" + ) -> RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"qnap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` :param page: set the page number of the response :type page: int @@ -246941,7 +246941,7 @@ def index_qqids_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qqids_get_serialize( + _param = self._index_qnap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -246973,7 +246973,7 @@ def index_qqids_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -246989,7 +246989,7 @@ def index_qqids_get( @validate_call - def index_qqids_get_with_http_info( + def index_qnap_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247027,10 +247027,10 @@ def index_qqids_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination]: - """Return vulnerability data stored in index \"qqids\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"qnap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` :param page: set the page number of the response :type page: int @@ -247102,7 +247102,7 @@ def index_qqids_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qqids_get_serialize( + _param = self._index_qnap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247134,7 +247134,7 @@ def index_qqids_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -247150,7 +247150,7 @@ def index_qqids_get_with_http_info( @validate_call - def index_qqids_get_without_preload_content( + def index_qnap_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247189,9 +247189,9 @@ def index_qqids_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qqids\" + """Return vulnerability data stored in index \"qnap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qnap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** QNAP Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qnap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qnap?cursor=` :param page: set the page number of the response :type page: int @@ -247263,7 +247263,7 @@ def index_qqids_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qqids_get_serialize( + _param = self._index_qnap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247295,7 +247295,7 @@ def index_qqids_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQNAPAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -247306,7 +247306,7 @@ def index_qqids_get_without_preload_content( return response_data.response - def _index_qqids_get_serialize( + def _index_qnap_get_serialize( self, page, limit, @@ -247474,7 +247474,7 @@ def _index_qqids_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qqids', + resource_path='/v3/index/qnap', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -247491,7 +247491,7 @@ def _index_qqids_get_serialize( @validate_call - def index_qualcomm_get( + def index_qqids_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247529,10 +247529,10 @@ def index_qualcomm_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination: - """Return vulnerability data stored in index \"qualcomm\" + ) -> RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination: + """Return vulnerability data stored in index \"qqids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` :param page: set the page number of the response :type page: int @@ -247604,7 +247604,7 @@ def index_qualcomm_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualcomm_get_serialize( + _param = self._index_qqids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247636,7 +247636,7 @@ def index_qualcomm_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", '404': "str", '500': "str", } @@ -247652,7 +247652,7 @@ def index_qualcomm_get( @validate_call - def index_qualcomm_get_with_http_info( + def index_qqids_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247690,10 +247690,10 @@ def index_qualcomm_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination]: - """Return vulnerability data stored in index \"qualcomm\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination]: + """Return vulnerability data stored in index \"qqids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` :param page: set the page number of the response :type page: int @@ -247765,7 +247765,7 @@ def index_qualcomm_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualcomm_get_serialize( + _param = self._index_qqids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247797,7 +247797,7 @@ def index_qualcomm_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", '404': "str", '500': "str", } @@ -247813,7 +247813,7 @@ def index_qualcomm_get_with_http_info( @validate_call - def index_qualcomm_get_without_preload_content( + def index_qqids_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -247852,9 +247852,9 @@ def index_qualcomm_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qualcomm\" + """Return vulnerability data stored in index \"qqids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qqids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QIDs ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qqids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qqids?cursor=` :param page: set the page number of the response :type page: int @@ -247926,7 +247926,7 @@ def index_qualcomm_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualcomm_get_serialize( + _param = self._index_qqids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -247958,7 +247958,7 @@ def index_qualcomm_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQQIDPaginatePagination", '404': "str", '500': "str", } @@ -247969,7 +247969,7 @@ def index_qualcomm_get_without_preload_content( return response_data.response - def _index_qualcomm_get_serialize( + def _index_qqids_get_serialize( self, page, limit, @@ -248137,7 +248137,7 @@ def _index_qualcomm_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qualcomm', + resource_path='/v3/index/qqids', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -248154,7 +248154,7 @@ def _index_qualcomm_get_serialize( @validate_call - def index_qualys_get( + def index_qualcomm_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -248192,10 +248192,10 @@ def index_qualys_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination: - """Return vulnerability data stored in index \"qualys\" + ) -> RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination: + """Return vulnerability data stored in index \"qualcomm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` :param page: set the page number of the response :type page: int @@ -248267,7 +248267,7 @@ def index_qualys_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_get_serialize( + _param = self._index_qualcomm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -248299,7 +248299,7 @@ def index_qualys_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", '404': "str", '500': "str", } @@ -248315,7 +248315,7 @@ def index_qualys_get( @validate_call - def index_qualys_get_with_http_info( + def index_qualcomm_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -248353,10 +248353,10 @@ def index_qualys_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination]: - """Return vulnerability data stored in index \"qualys\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination]: + """Return vulnerability data stored in index \"qualcomm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` :param page: set the page number of the response :type page: int @@ -248428,7 +248428,7 @@ def index_qualys_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_get_serialize( + _param = self._index_qualcomm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -248460,7 +248460,7 @@ def index_qualys_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", '404': "str", '500': "str", } @@ -248476,7 +248476,7 @@ def index_qualys_get_with_http_info( @validate_call - def index_qualys_get_without_preload_content( + def index_qualcomm_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -248515,9 +248515,9 @@ def index_qualys_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qualys\" + """Return vulnerability data stored in index \"qualcomm\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualcomm index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualcomm Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualcomm?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualcomm?cursor=` :param page: set the page number of the response :type page: int @@ -248589,7 +248589,7 @@ def index_qualys_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_get_serialize( + _param = self._index_qualcomm_get_serialize( page=page, limit=limit, cursor=cursor, @@ -248621,7 +248621,7 @@ def index_qualys_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualcommPaginatePagination", '404': "str", '500': "str", } @@ -248632,7 +248632,7 @@ def index_qualys_get_without_preload_content( return response_data.response - def _index_qualys_get_serialize( + def _index_qualcomm_get_serialize( self, page, limit, @@ -248800,7 +248800,7 @@ def _index_qualys_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qualys', + resource_path='/v3/index/qualcomm', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -248817,7 +248817,7 @@ def _index_qualys_get_serialize( @validate_call - def index_qualys_qids_get( + def index_qualys_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -248855,10 +248855,10 @@ def index_qualys_qids_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination: - """Return vulnerability data stored in index \"qualys-qids\" + ) -> RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination: + """Return vulnerability data stored in index \"qualys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` :param page: set the page number of the response :type page: int @@ -248930,7 +248930,7 @@ def index_qualys_qids_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_qids_get_serialize( + _param = self._index_qualys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -248962,7 +248962,7 @@ def index_qualys_qids_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", '404': "str", '500': "str", } @@ -248978,7 +248978,7 @@ def index_qualys_qids_get( @validate_call - def index_qualys_qids_get_with_http_info( + def index_qualys_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249016,10 +249016,10 @@ def index_qualys_qids_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination]: - """Return vulnerability data stored in index \"qualys-qids\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination]: + """Return vulnerability data stored in index \"qualys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` :param page: set the page number of the response :type page: int @@ -249091,7 +249091,7 @@ def index_qualys_qids_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_qids_get_serialize( + _param = self._index_qualys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249123,7 +249123,7 @@ def index_qualys_qids_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", '404': "str", '500': "str", } @@ -249139,7 +249139,7 @@ def index_qualys_qids_get_with_http_info( @validate_call - def index_qualys_qids_get_without_preload_content( + def index_qualys_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249178,9 +249178,9 @@ def index_qualys_qids_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qualys-qids\" + """Return vulnerability data stored in index \"qualys\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys?cursor=` :param page: set the page number of the response :type page: int @@ -249252,7 +249252,7 @@ def index_qualys_qids_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qualys_qids_get_serialize( + _param = self._index_qualys_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249284,7 +249284,7 @@ def index_qualys_qids_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysPaginatePagination", '404': "str", '500': "str", } @@ -249295,7 +249295,7 @@ def index_qualys_qids_get_without_preload_content( return response_data.response - def _index_qualys_qids_get_serialize( + def _index_qualys_get_serialize( self, page, limit, @@ -249463,7 +249463,7 @@ def _index_qualys_qids_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qualys-qids', + resource_path='/v3/index/qualys', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -249480,7 +249480,7 @@ def _index_qualys_qids_get_serialize( @validate_call - def index_qubes_qsb_get( + def index_qualys_qids_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249518,10 +249518,10 @@ def index_qubes_qsb_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination: - """Return vulnerability data stored in index \"qubes-qsb\" + ) -> RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination: + """Return vulnerability data stored in index \"qualys-qids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` :param page: set the page number of the response :type page: int @@ -249593,7 +249593,7 @@ def index_qubes_qsb_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qubes_qsb_get_serialize( + _param = self._index_qualys_qids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249625,7 +249625,7 @@ def index_qubes_qsb_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", '404': "str", '500': "str", } @@ -249641,7 +249641,7 @@ def index_qubes_qsb_get( @validate_call - def index_qubes_qsb_get_with_http_info( + def index_qualys_qids_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249679,10 +249679,10 @@ def index_qubes_qsb_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination]: - """Return vulnerability data stored in index \"qubes-qsb\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination]: + """Return vulnerability data stored in index \"qualys-qids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` :param page: set the page number of the response :type page: int @@ -249754,7 +249754,7 @@ def index_qubes_qsb_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qubes_qsb_get_serialize( + _param = self._index_qualys_qids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249786,7 +249786,7 @@ def index_qubes_qsb_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", '404': "str", '500': "str", } @@ -249802,7 +249802,7 @@ def index_qubes_qsb_get_with_http_info( @validate_call - def index_qubes_qsb_get_without_preload_content( + def index_qualys_qids_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -249841,9 +249841,9 @@ def index_qubes_qsb_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"qubes-qsb\" + """Return vulnerability data stored in index \"qualys-qids\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qualys-qids index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qualys QID ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qualys-qids?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qualys-qids?cursor=` :param page: set the page number of the response :type page: int @@ -249915,7 +249915,7 @@ def index_qubes_qsb_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_qubes_qsb_get_serialize( + _param = self._index_qualys_qids_get_serialize( page=page, limit=limit, cursor=cursor, @@ -249947,7 +249947,7 @@ def index_qubes_qsb_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQualysQIDPaginatePagination", '404': "str", '500': "str", } @@ -249958,7 +249958,7 @@ def index_qubes_qsb_get_without_preload_content( return response_data.response - def _index_qubes_qsb_get_serialize( + def _index_qualys_qids_get_serialize( self, page, limit, @@ -250126,7 +250126,7 @@ def _index_qubes_qsb_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/qubes-qsb', + resource_path='/v3/index/qualys-qids', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -250143,7 +250143,7 @@ def _index_qubes_qsb_get_serialize( @validate_call - def index_ransomware_get( + def index_qubes_qsb_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -250181,10 +250181,10 @@ def index_ransomware_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination: - """Return vulnerability data stored in index \"ransomware\" + ) -> RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination: + """Return vulnerability data stored in index \"qubes-qsb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` :param page: set the page number of the response :type page: int @@ -250256,7 +250256,7 @@ def index_ransomware_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ransomware_get_serialize( + _param = self._index_qubes_qsb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -250288,7 +250288,7 @@ def index_ransomware_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", '404': "str", '500': "str", } @@ -250304,7 +250304,7 @@ def index_ransomware_get( @validate_call - def index_ransomware_get_with_http_info( + def index_qubes_qsb_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -250342,10 +250342,10 @@ def index_ransomware_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination]: - """Return vulnerability data stored in index \"ransomware\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination]: + """Return vulnerability data stored in index \"qubes-qsb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` :param page: set the page number of the response :type page: int @@ -250417,7 +250417,7 @@ def index_ransomware_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ransomware_get_serialize( + _param = self._index_qubes_qsb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -250449,7 +250449,7 @@ def index_ransomware_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", '404': "str", '500': "str", } @@ -250465,7 +250465,7 @@ def index_ransomware_get_with_http_info( @validate_call - def index_ransomware_get_without_preload_content( + def index_qubes_qsb_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -250504,9 +250504,9 @@ def index_ransomware_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ransomware\" + """Return vulnerability data stored in index \"qubes-qsb\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the qubes-qsb index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Qubes Security Bulletin ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/qubes-qsb?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/qubes-qsb?cursor=` :param page: set the page number of the response :type page: int @@ -250578,7 +250578,7 @@ def index_ransomware_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ransomware_get_serialize( + _param = self._index_qubes_qsb_get_serialize( page=page, limit=limit, cursor=cursor, @@ -250610,7 +250610,7 @@ def index_ransomware_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryQSBPaginatePagination", '404': "str", '500': "str", } @@ -250621,7 +250621,7 @@ def index_ransomware_get_without_preload_content( return response_data.response - def _index_ransomware_get_serialize( + def _index_qubes_qsb_get_serialize( self, page, limit, @@ -250789,7 +250789,7 @@ def _index_ransomware_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ransomware', + resource_path='/v3/index/qubes-qsb', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -250806,7 +250806,7 @@ def _index_ransomware_get_serialize( @validate_call - def index_red_lion_get( + def index_ransomware_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -250844,10 +250844,10 @@ def index_red_lion_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination: - """Return vulnerability data stored in index \"red-lion\" + ) -> RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination: + """Return vulnerability data stored in index \"ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -250919,7 +250919,7 @@ def index_red_lion_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_red_lion_get_serialize( + _param = self._index_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -250951,7 +250951,7 @@ def index_red_lion_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", '404': "str", '500': "str", } @@ -250967,7 +250967,7 @@ def index_red_lion_get( @validate_call - def index_red_lion_get_with_http_info( + def index_ransomware_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251005,10 +251005,10 @@ def index_red_lion_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination]: - """Return vulnerability data stored in index \"red-lion\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination]: + """Return vulnerability data stored in index \"ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -251080,7 +251080,7 @@ def index_red_lion_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_red_lion_get_serialize( + _param = self._index_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251112,7 +251112,7 @@ def index_red_lion_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", '404': "str", '500': "str", } @@ -251128,7 +251128,7 @@ def index_red_lion_get_with_http_info( @validate_call - def index_red_lion_get_without_preload_content( + def index_ransomware_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251167,9 +251167,9 @@ def index_red_lion_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"red-lion\" + """Return vulnerability data stored in index \"ransomware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ransomware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Ransomware ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ransomware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ransomware?cursor=` :param page: set the page number of the response :type page: int @@ -251241,7 +251241,7 @@ def index_red_lion_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_red_lion_get_serialize( + _param = self._index_ransomware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251273,7 +251273,7 @@ def index_red_lion_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRansomwareExploitPaginatePagination", '404': "str", '500': "str", } @@ -251284,7 +251284,7 @@ def index_red_lion_get_without_preload_content( return response_data.response - def _index_red_lion_get_serialize( + def _index_ransomware_get_serialize( self, page, limit, @@ -251452,7 +251452,7 @@ def _index_red_lion_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/red-lion', + resource_path='/v3/index/ransomware', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -251469,7 +251469,7 @@ def _index_red_lion_get_serialize( @validate_call - def index_redhat_cves_get( + def index_red_lion_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251507,10 +251507,10 @@ def index_redhat_cves_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination: - """Return vulnerability data stored in index \"redhat-cves\" + ) -> RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination: + """Return vulnerability data stored in index \"red-lion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` :param page: set the page number of the response :type page: int @@ -251582,7 +251582,7 @@ def index_redhat_cves_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_cves_get_serialize( + _param = self._index_red_lion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251614,7 +251614,7 @@ def index_redhat_cves_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", '404': "str", '500': "str", } @@ -251630,7 +251630,7 @@ def index_redhat_cves_get( @validate_call - def index_redhat_cves_get_with_http_info( + def index_red_lion_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251668,10 +251668,10 @@ def index_redhat_cves_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination]: - """Return vulnerability data stored in index \"redhat-cves\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination]: + """Return vulnerability data stored in index \"red-lion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` :param page: set the page number of the response :type page: int @@ -251743,7 +251743,7 @@ def index_redhat_cves_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_cves_get_serialize( + _param = self._index_red_lion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251775,7 +251775,7 @@ def index_redhat_cves_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", '404': "str", '500': "str", } @@ -251791,7 +251791,7 @@ def index_redhat_cves_get_with_http_info( @validate_call - def index_redhat_cves_get_without_preload_content( + def index_red_lion_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -251830,9 +251830,9 @@ def index_redhat_cves_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"redhat-cves\" + """Return vulnerability data stored in index \"red-lion\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the red-lion index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red-Lion Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/red-lion?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/red-lion?cursor=` :param page: set the page number of the response :type page: int @@ -251904,7 +251904,7 @@ def index_redhat_cves_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_cves_get_serialize( + _param = self._index_red_lion_get_serialize( page=page, limit=limit, cursor=cursor, @@ -251936,7 +251936,7 @@ def index_redhat_cves_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedLionPaginatePagination", '404': "str", '500': "str", } @@ -251947,7 +251947,7 @@ def index_redhat_cves_get_without_preload_content( return response_data.response - def _index_redhat_cves_get_serialize( + def _index_red_lion_get_serialize( self, page, limit, @@ -252115,7 +252115,7 @@ def _index_redhat_cves_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/redhat-cves', + resource_path='/v3/index/red-lion', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -252132,7 +252132,7 @@ def _index_redhat_cves_get_serialize( @validate_call - def index_redhat_get( + def index_redhat_cves_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252170,10 +252170,10 @@ def index_redhat_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination: - """Return vulnerability data stored in index \"redhat\" + ) -> RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination: + """Return vulnerability data stored in index \"redhat-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` :param page: set the page number of the response :type page: int @@ -252245,7 +252245,7 @@ def index_redhat_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_get_serialize( + _param = self._index_redhat_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -252277,7 +252277,7 @@ def index_redhat_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", '404': "str", '500': "str", } @@ -252293,7 +252293,7 @@ def index_redhat_get( @validate_call - def index_redhat_get_with_http_info( + def index_redhat_cves_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252331,10 +252331,10 @@ def index_redhat_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination]: - """Return vulnerability data stored in index \"redhat\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination]: + """Return vulnerability data stored in index \"redhat-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` :param page: set the page number of the response :type page: int @@ -252406,7 +252406,7 @@ def index_redhat_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_get_serialize( + _param = self._index_redhat_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -252438,7 +252438,7 @@ def index_redhat_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", '404': "str", '500': "str", } @@ -252454,7 +252454,7 @@ def index_redhat_get_with_http_info( @validate_call - def index_redhat_get_without_preload_content( + def index_redhat_cves_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252493,9 +252493,9 @@ def index_redhat_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"redhat\" + """Return vulnerability data stored in index \"redhat-cves\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat-cves index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSAF data for redhat ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat-cves?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat-cves?cursor=` :param page: set the page number of the response :type page: int @@ -252567,7 +252567,7 @@ def index_redhat_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_redhat_get_serialize( + _param = self._index_redhat_cves_get_serialize( page=page, limit=limit, cursor=cursor, @@ -252599,7 +252599,7 @@ def index_redhat_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRhelCVEPaginatePagination", '404': "str", '500': "str", } @@ -252610,7 +252610,7 @@ def index_redhat_get_without_preload_content( return response_data.response - def _index_redhat_get_serialize( + def _index_redhat_cves_get_serialize( self, page, limit, @@ -252778,7 +252778,7 @@ def _index_redhat_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/redhat', + resource_path='/v3/index/redhat-cves', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -252795,7 +252795,7 @@ def _index_redhat_get_serialize( @validate_call - def index_renesas_get( + def index_redhat_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252833,10 +252833,10 @@ def index_renesas_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination: - """Return vulnerability data stored in index \"renesas\" + ) -> RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination: + """Return vulnerability data stored in index \"redhat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` :param page: set the page number of the response :type page: int @@ -252908,7 +252908,7 @@ def index_renesas_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_renesas_get_serialize( + _param = self._index_redhat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -252940,7 +252940,7 @@ def index_renesas_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", '404': "str", '500': "str", } @@ -252956,7 +252956,7 @@ def index_renesas_get( @validate_call - def index_renesas_get_with_http_info( + def index_redhat_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -252994,10 +252994,10 @@ def index_renesas_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination]: - """Return vulnerability data stored in index \"renesas\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination]: + """Return vulnerability data stored in index \"redhat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` :param page: set the page number of the response :type page: int @@ -253069,7 +253069,7 @@ def index_renesas_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_renesas_get_serialize( + _param = self._index_redhat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253101,7 +253101,7 @@ def index_renesas_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", '404': "str", '500': "str", } @@ -253117,7 +253117,7 @@ def index_renesas_get_with_http_info( @validate_call - def index_renesas_get_without_preload_content( + def index_redhat_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -253156,9 +253156,9 @@ def index_renesas_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"renesas\" + """Return vulnerability data stored in index \"redhat\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the redhat index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Red Hat Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/redhat?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/redhat?cursor=` :param page: set the page number of the response :type page: int @@ -253230,7 +253230,7 @@ def index_renesas_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_renesas_get_serialize( + _param = self._index_redhat_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253262,7 +253262,7 @@ def index_renesas_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRedhatCVEPaginatePagination", '404': "str", '500': "str", } @@ -253273,7 +253273,7 @@ def index_renesas_get_without_preload_content( return response_data.response - def _index_renesas_get_serialize( + def _index_redhat_get_serialize( self, page, limit, @@ -253441,7 +253441,7 @@ def _index_renesas_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/renesas', + resource_path='/v3/index/redhat', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -253458,7 +253458,7 @@ def _index_renesas_get_serialize( @validate_call - def index_revive_get( + def index_renesas_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -253496,10 +253496,10 @@ def index_revive_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination: - """Return vulnerability data stored in index \"revive\" + ) -> RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination: + """Return vulnerability data stored in index \"renesas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` :param page: set the page number of the response :type page: int @@ -253571,7 +253571,7 @@ def index_revive_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_revive_get_serialize( + _param = self._index_renesas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253603,7 +253603,7 @@ def index_revive_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", '404': "str", '500': "str", } @@ -253619,7 +253619,7 @@ def index_revive_get( @validate_call - def index_revive_get_with_http_info( + def index_renesas_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -253657,10 +253657,10 @@ def index_revive_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination]: - """Return vulnerability data stored in index \"revive\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination]: + """Return vulnerability data stored in index \"renesas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` :param page: set the page number of the response :type page: int @@ -253732,7 +253732,7 @@ def index_revive_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_revive_get_serialize( + _param = self._index_renesas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253764,7 +253764,7 @@ def index_revive_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", '404': "str", '500': "str", } @@ -253780,7 +253780,7 @@ def index_revive_get_with_http_info( @validate_call - def index_revive_get_without_preload_content( + def index_renesas_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -253819,9 +253819,9 @@ def index_revive_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"revive\" + """Return vulnerability data stored in index \"renesas\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the renesas index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Renesas Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/renesas?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/renesas?cursor=` :param page: set the page number of the response :type page: int @@ -253893,7 +253893,7 @@ def index_revive_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_revive_get_serialize( + _param = self._index_renesas_get_serialize( page=page, limit=limit, cursor=cursor, @@ -253925,7 +253925,7 @@ def index_revive_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRenesasPaginatePagination", '404': "str", '500': "str", } @@ -253936,7 +253936,7 @@ def index_revive_get_without_preload_content( return response_data.response - def _index_revive_get_serialize( + def _index_renesas_get_serialize( self, page, limit, @@ -254104,7 +254104,7 @@ def _index_revive_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/revive', + resource_path='/v3/index/renesas', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -254121,7 +254121,7 @@ def _index_revive_get_serialize( @validate_call - def index_roche_get( + def index_revive_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254159,10 +254159,10 @@ def index_roche_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination: - """Return vulnerability data stored in index \"roche\" + ) -> RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination: + """Return vulnerability data stored in index \"revive\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` :param page: set the page number of the response :type page: int @@ -254234,7 +254234,7 @@ def index_roche_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_roche_get_serialize( + _param = self._index_revive_get_serialize( page=page, limit=limit, cursor=cursor, @@ -254266,7 +254266,7 @@ def index_roche_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", '404': "str", '500': "str", } @@ -254282,7 +254282,7 @@ def index_roche_get( @validate_call - def index_roche_get_with_http_info( + def index_revive_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254320,10 +254320,10 @@ def index_roche_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination]: - """Return vulnerability data stored in index \"roche\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination]: + """Return vulnerability data stored in index \"revive\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` :param page: set the page number of the response :type page: int @@ -254395,7 +254395,7 @@ def index_roche_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_roche_get_serialize( + _param = self._index_revive_get_serialize( page=page, limit=limit, cursor=cursor, @@ -254427,7 +254427,7 @@ def index_roche_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", '404': "str", '500': "str", } @@ -254443,7 +254443,7 @@ def index_roche_get_with_http_info( @validate_call - def index_roche_get_without_preload_content( + def index_revive_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254482,9 +254482,9 @@ def index_roche_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"roche\" + """Return vulnerability data stored in index \"revive\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the revive index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Revive Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/revive?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/revive?cursor=` :param page: set the page number of the response :type page: int @@ -254556,7 +254556,7 @@ def index_roche_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_roche_get_serialize( + _param = self._index_revive_get_serialize( page=page, limit=limit, cursor=cursor, @@ -254588,7 +254588,7 @@ def index_roche_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRevivePaginatePagination", '404': "str", '500': "str", } @@ -254599,7 +254599,7 @@ def index_roche_get_without_preload_content( return response_data.response - def _index_roche_get_serialize( + def _index_revive_get_serialize( self, page, limit, @@ -254767,7 +254767,7 @@ def _index_roche_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/roche', + resource_path='/v3/index/revive', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -254784,7 +254784,7 @@ def _index_roche_get_serialize( @validate_call - def index_rockwell_get( + def index_roche_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254822,10 +254822,10 @@ def index_rockwell_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination: - """Return vulnerability data stored in index \"rockwell\" + ) -> RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination: + """Return vulnerability data stored in index \"roche\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` :param page: set the page number of the response :type page: int @@ -254897,7 +254897,7 @@ def index_rockwell_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rockwell_get_serialize( + _param = self._index_roche_get_serialize( page=page, limit=limit, cursor=cursor, @@ -254929,7 +254929,7 @@ def index_rockwell_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", '404': "str", '500': "str", } @@ -254945,7 +254945,7 @@ def index_rockwell_get( @validate_call - def index_rockwell_get_with_http_info( + def index_roche_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -254983,10 +254983,10 @@ def index_rockwell_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination]: - """Return vulnerability data stored in index \"rockwell\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination]: + """Return vulnerability data stored in index \"roche\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` :param page: set the page number of the response :type page: int @@ -255058,7 +255058,7 @@ def index_rockwell_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rockwell_get_serialize( + _param = self._index_roche_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255090,7 +255090,7 @@ def index_rockwell_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", '404': "str", '500': "str", } @@ -255106,7 +255106,7 @@ def index_rockwell_get_with_http_info( @validate_call - def index_rockwell_get_without_preload_content( + def index_roche_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -255145,9 +255145,9 @@ def index_rockwell_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rockwell\" + """Return vulnerability data stored in index \"roche\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the roche index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Roche Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/roche?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/roche?cursor=` :param page: set the page number of the response :type page: int @@ -255219,7 +255219,7 @@ def index_rockwell_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rockwell_get_serialize( + _param = self._index_roche_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255251,7 +255251,7 @@ def index_rockwell_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRochePaginatePagination", '404': "str", '500': "str", } @@ -255262,7 +255262,7 @@ def index_rockwell_get_without_preload_content( return response_data.response - def _index_rockwell_get_serialize( + def _index_roche_get_serialize( self, page, limit, @@ -255430,7 +255430,7 @@ def _index_rockwell_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rockwell', + resource_path='/v3/index/roche', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -255447,7 +255447,7 @@ def _index_rockwell_get_serialize( @validate_call - def index_rocky_errata_get( + def index_rockwell_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -255485,10 +255485,10 @@ def index_rocky_errata_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination: - """Return vulnerability data stored in index \"rocky-errata\" + ) -> RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination: + """Return vulnerability data stored in index \"rockwell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` :param page: set the page number of the response :type page: int @@ -255560,7 +255560,7 @@ def index_rocky_errata_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_errata_get_serialize( + _param = self._index_rockwell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255592,7 +255592,7 @@ def index_rocky_errata_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", '404': "str", '500': "str", } @@ -255608,7 +255608,7 @@ def index_rocky_errata_get( @validate_call - def index_rocky_errata_get_with_http_info( + def index_rockwell_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -255646,10 +255646,10 @@ def index_rocky_errata_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination]: - """Return vulnerability data stored in index \"rocky-errata\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination]: + """Return vulnerability data stored in index \"rockwell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` :param page: set the page number of the response :type page: int @@ -255721,7 +255721,7 @@ def index_rocky_errata_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_errata_get_serialize( + _param = self._index_rockwell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255753,7 +255753,7 @@ def index_rocky_errata_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", '404': "str", '500': "str", } @@ -255769,7 +255769,7 @@ def index_rocky_errata_get_with_http_info( @validate_call - def index_rocky_errata_get_without_preload_content( + def index_rockwell_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -255808,9 +255808,9 @@ def index_rocky_errata_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rocky-errata\" + """Return vulnerability data stored in index \"rockwell\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rockwell index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rockwell Automation Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rockwell?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rockwell?cursor=` :param page: set the page number of the response :type page: int @@ -255882,7 +255882,7 @@ def index_rocky_errata_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_errata_get_serialize( + _param = self._index_rockwell_get_serialize( page=page, limit=limit, cursor=cursor, @@ -255914,7 +255914,7 @@ def index_rocky_errata_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockwellPaginatePagination", '404': "str", '500': "str", } @@ -255925,7 +255925,7 @@ def index_rocky_errata_get_without_preload_content( return response_data.response - def _index_rocky_errata_get_serialize( + def _index_rockwell_get_serialize( self, page, limit, @@ -256093,7 +256093,7 @@ def _index_rocky_errata_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rocky-errata', + resource_path='/v3/index/rockwell', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -256110,7 +256110,7 @@ def _index_rocky_errata_get_serialize( @validate_call - def index_rocky_get( + def index_rocky_errata_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256148,10 +256148,10 @@ def index_rocky_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiUpdatePaginatePagination: - """Return vulnerability data stored in index \"rocky\" + ) -> RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination: + """Return vulnerability data stored in index \"rocky-errata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` :param page: set the page number of the response :type page: int @@ -256223,7 +256223,7 @@ def index_rocky_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_get_serialize( + _param = self._index_rocky_errata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -256255,7 +256255,7 @@ def index_rocky_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", '404': "str", '500': "str", } @@ -256271,7 +256271,7 @@ def index_rocky_get( @validate_call - def index_rocky_get_with_http_info( + def index_rocky_errata_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256309,10 +256309,10 @@ def index_rocky_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiUpdatePaginatePagination]: - """Return vulnerability data stored in index \"rocky\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination]: + """Return vulnerability data stored in index \"rocky-errata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` :param page: set the page number of the response :type page: int @@ -256384,7 +256384,7 @@ def index_rocky_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_get_serialize( + _param = self._index_rocky_errata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -256416,7 +256416,7 @@ def index_rocky_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", '404': "str", '500': "str", } @@ -256432,7 +256432,7 @@ def index_rocky_get_with_http_info( @validate_call - def index_rocky_get_without_preload_content( + def index_rocky_errata_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256471,9 +256471,9 @@ def index_rocky_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rocky\" + """Return vulnerability data stored in index \"rocky-errata\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-errata index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Errata ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-errata?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-errata?cursor=` :param page: set the page number of the response :type page: int @@ -256545,7 +256545,7 @@ def index_rocky_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_get_serialize( + _param = self._index_rocky_errata_get_serialize( page=page, limit=limit, cursor=cursor, @@ -256577,7 +256577,7 @@ def index_rocky_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRockyErrataPaginatePagination", '404': "str", '500': "str", } @@ -256588,7 +256588,7 @@ def index_rocky_get_without_preload_content( return response_data.response - def _index_rocky_get_serialize( + def _index_rocky_errata_get_serialize( self, page, limit, @@ -256756,7 +256756,7 @@ def _index_rocky_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rocky', + resource_path='/v3/index/rocky-errata', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -256773,7 +256773,7 @@ def _index_rocky_get_serialize( @validate_call - def index_rocky_purls_get( + def index_rocky_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256811,10 +256811,10 @@ def index_rocky_purls_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination: - """Return vulnerability data stored in index \"rocky-purls\" + ) -> RenderResponseWithMetadataArrayApiUpdatePaginatePagination: + """Return vulnerability data stored in index \"rocky\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` :param page: set the page number of the response :type page: int @@ -256886,7 +256886,7 @@ def index_rocky_purls_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_purls_get_serialize( + _param = self._index_rocky_get_serialize( page=page, limit=limit, cursor=cursor, @@ -256918,7 +256918,7 @@ def index_rocky_purls_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", '404': "str", '500': "str", } @@ -256934,7 +256934,7 @@ def index_rocky_purls_get( @validate_call - def index_rocky_purls_get_with_http_info( + def index_rocky_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -256972,10 +256972,10 @@ def index_rocky_purls_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination]: - """Return vulnerability data stored in index \"rocky-purls\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiUpdatePaginatePagination]: + """Return vulnerability data stored in index \"rocky\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` :param page: set the page number of the response :type page: int @@ -257047,7 +257047,7 @@ def index_rocky_purls_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_purls_get_serialize( + _param = self._index_rocky_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257079,7 +257079,7 @@ def index_rocky_purls_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", '404': "str", '500': "str", } @@ -257095,7 +257095,7 @@ def index_rocky_purls_get_with_http_info( @validate_call - def index_rocky_purls_get_without_preload_content( + def index_rocky_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -257134,9 +257134,9 @@ def index_rocky_purls_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rocky-purls\" + """Return vulnerability data stored in index \"rocky\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Linux Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky?cursor=` :param page: set the page number of the response :type page: int @@ -257208,7 +257208,7 @@ def index_rocky_purls_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rocky_purls_get_serialize( + _param = self._index_rocky_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257240,7 +257240,7 @@ def index_rocky_purls_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", + '200': "RenderResponseWithMetadataArrayApiUpdatePaginatePagination", '404': "str", '500': "str", } @@ -257251,7 +257251,7 @@ def index_rocky_purls_get_without_preload_content( return response_data.response - def _index_rocky_purls_get_serialize( + def _index_rocky_get_serialize( self, page, limit, @@ -257419,7 +257419,7 @@ def _index_rocky_purls_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rocky-purls', + resource_path='/v3/index/rocky', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -257436,7 +257436,7 @@ def _index_rocky_purls_get_serialize( @validate_call - def index_rsync_get( + def index_rocky_purls_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -257474,10 +257474,10 @@ def index_rsync_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination: - """Return vulnerability data stored in index \"rsync\" + ) -> RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination: + """Return vulnerability data stored in index \"rocky-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` :param page: set the page number of the response :type page: int @@ -257549,7 +257549,7 @@ def index_rsync_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rsync_get_serialize( + _param = self._index_rocky_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257581,7 +257581,7 @@ def index_rsync_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -257597,7 +257597,7 @@ def index_rsync_get( @validate_call - def index_rsync_get_with_http_info( + def index_rocky_purls_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -257635,10 +257635,10 @@ def index_rsync_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination]: - """Return vulnerability data stored in index \"rsync\" + ) -> ApiResponse[RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination]: + """Return vulnerability data stored in index \"rocky-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` :param page: set the page number of the response :type page: int @@ -257710,7 +257710,7 @@ def index_rsync_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rsync_get_serialize( + _param = self._index_rocky_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257742,7 +257742,7 @@ def index_rsync_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -257758,7 +257758,7 @@ def index_rsync_get_with_http_info( @validate_call - def index_rsync_get_without_preload_content( + def index_rocky_purls_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -257797,9 +257797,9 @@ def index_rsync_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rsync\" + """Return vulnerability data stored in index \"rocky-purls\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rocky-purls index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rocky Purls ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rocky-purls?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rocky-purls?cursor=` :param page: set the page number of the response :type page: int @@ -257871,7 +257871,7 @@ def index_rsync_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rsync_get_serialize( + _param = self._index_rocky_purls_get_serialize( page=page, limit=limit, cursor=cursor, @@ -257903,7 +257903,7 @@ def index_rsync_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", + '200': "RenderResponseWithMetadataArrayPurlsPurlResponsePaginatePagination", '404': "str", '500': "str", } @@ -257914,7 +257914,7 @@ def index_rsync_get_without_preload_content( return response_data.response - def _index_rsync_get_serialize( + def _index_rocky_purls_get_serialize( self, page, limit, @@ -258082,7 +258082,7 @@ def _index_rsync_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rsync', + resource_path='/v3/index/rocky-purls', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -258099,7 +258099,7 @@ def _index_rsync_get_serialize( @validate_call - def index_ruckus_get( + def index_rsync_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258137,10 +258137,10 @@ def index_ruckus_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination: - """Return vulnerability data stored in index \"ruckus\" + ) -> RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination: + """Return vulnerability data stored in index \"rsync\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` :param page: set the page number of the response :type page: int @@ -258212,7 +258212,7 @@ def index_ruckus_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ruckus_get_serialize( + _param = self._index_rsync_get_serialize( page=page, limit=limit, cursor=cursor, @@ -258244,7 +258244,7 @@ def index_ruckus_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", '404': "str", '500': "str", } @@ -258260,7 +258260,7 @@ def index_ruckus_get( @validate_call - def index_ruckus_get_with_http_info( + def index_rsync_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258298,10 +258298,10 @@ def index_ruckus_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination]: - """Return vulnerability data stored in index \"ruckus\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination]: + """Return vulnerability data stored in index \"rsync\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` :param page: set the page number of the response :type page: int @@ -258373,7 +258373,7 @@ def index_ruckus_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ruckus_get_serialize( + _param = self._index_rsync_get_serialize( page=page, limit=limit, cursor=cursor, @@ -258405,7 +258405,7 @@ def index_ruckus_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", '404': "str", '500': "str", } @@ -258421,7 +258421,7 @@ def index_ruckus_get_with_http_info( @validate_call - def index_ruckus_get_without_preload_content( + def index_rsync_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258460,9 +258460,9 @@ def index_ruckus_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ruckus\" + """Return vulnerability data stored in index \"rsync\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rsync index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Rsync Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rsync?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rsync?cursor=` :param page: set the page number of the response :type page: int @@ -258534,7 +258534,7 @@ def index_ruckus_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ruckus_get_serialize( + _param = self._index_rsync_get_serialize( page=page, limit=limit, cursor=cursor, @@ -258566,7 +258566,7 @@ def index_ruckus_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRsyncPaginatePagination", '404': "str", '500': "str", } @@ -258577,7 +258577,7 @@ def index_ruckus_get_without_preload_content( return response_data.response - def _index_ruckus_get_serialize( + def _index_rsync_get_serialize( self, page, limit, @@ -258745,7 +258745,7 @@ def _index_ruckus_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ruckus', + resource_path='/v3/index/rsync', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -258762,7 +258762,7 @@ def _index_ruckus_get_serialize( @validate_call - def index_rustsec_advisories_get( + def index_ruckus_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258800,10 +258800,10 @@ def index_rustsec_advisories_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"rustsec-advisories\" + ) -> RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination: + """Return vulnerability data stored in index \"ruckus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` :param page: set the page number of the response :type page: int @@ -258875,7 +258875,7 @@ def index_rustsec_advisories_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rustsec_advisories_get_serialize( + _param = self._index_ruckus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -258907,7 +258907,7 @@ def index_rustsec_advisories_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", '404': "str", '500': "str", } @@ -258923,7 +258923,7 @@ def index_rustsec_advisories_get( @validate_call - def index_rustsec_advisories_get_with_http_info( + def index_ruckus_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -258961,10 +258961,10 @@ def index_rustsec_advisories_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"rustsec-advisories\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination]: + """Return vulnerability data stored in index \"ruckus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` :param page: set the page number of the response :type page: int @@ -259036,7 +259036,7 @@ def index_rustsec_advisories_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rustsec_advisories_get_serialize( + _param = self._index_ruckus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259068,7 +259068,7 @@ def index_rustsec_advisories_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", '404': "str", '500': "str", } @@ -259084,7 +259084,7 @@ def index_rustsec_advisories_get_with_http_info( @validate_call - def index_rustsec_advisories_get_without_preload_content( + def index_ruckus_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -259123,9 +259123,9 @@ def index_rustsec_advisories_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"rustsec-advisories\" + """Return vulnerability data stored in index \"ruckus\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ruckus index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Ruckus Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ruckus?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ruckus?cursor=` :param page: set the page number of the response :type page: int @@ -259197,7 +259197,7 @@ def index_rustsec_advisories_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_rustsec_advisories_get_serialize( + _param = self._index_ruckus_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259229,7 +259229,7 @@ def index_rustsec_advisories_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRuckusPaginatePagination", '404': "str", '500': "str", } @@ -259240,7 +259240,7 @@ def index_rustsec_advisories_get_without_preload_content( return response_data.response - def _index_rustsec_advisories_get_serialize( + def _index_ruckus_get_serialize( self, page, limit, @@ -259408,7 +259408,7 @@ def _index_rustsec_advisories_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/rustsec-advisories', + resource_path='/v3/index/ruckus', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -259425,7 +259425,7 @@ def _index_rustsec_advisories_get_serialize( @validate_call - def index_sacert_get( + def index_rustsec_advisories_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -259463,10 +259463,10 @@ def index_sacert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"sacert\" + ) -> RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"rustsec-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -259538,7 +259538,7 @@ def index_sacert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sacert_get_serialize( + _param = self._index_rustsec_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259570,7 +259570,7 @@ def index_sacert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -259586,7 +259586,7 @@ def index_sacert_get( @validate_call - def index_sacert_get_with_http_info( + def index_rustsec_advisories_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -259624,10 +259624,10 @@ def index_sacert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"sacert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"rustsec-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -259699,7 +259699,7 @@ def index_sacert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sacert_get_serialize( + _param = self._index_rustsec_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259731,7 +259731,7 @@ def index_sacert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -259747,7 +259747,7 @@ def index_sacert_get_with_http_info( @validate_call - def index_sacert_get_without_preload_content( + def index_rustsec_advisories_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -259786,9 +259786,9 @@ def index_sacert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sacert\" + """Return vulnerability data stored in index \"rustsec-advisories\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the rustsec-advisories index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** RustSec Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/rustsec-advisories?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/rustsec-advisories?cursor=` :param page: set the page number of the response :type page: int @@ -259860,7 +259860,7 @@ def index_sacert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sacert_get_serialize( + _param = self._index_rustsec_advisories_get_serialize( page=page, limit=limit, cursor=cursor, @@ -259892,7 +259892,7 @@ def index_sacert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryRustsecAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -259903,7 +259903,7 @@ def index_sacert_get_without_preload_content( return response_data.response - def _index_sacert_get_serialize( + def _index_rustsec_advisories_get_serialize( self, page, limit, @@ -260071,7 +260071,7 @@ def _index_sacert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sacert', + resource_path='/v3/index/rustsec-advisories', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -260088,7 +260088,7 @@ def _index_sacert_get_serialize( @validate_call - def index_safran_get( + def index_sacert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260126,10 +260126,10 @@ def index_safran_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination: - """Return vulnerability data stored in index \"safran\" + ) -> RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"sacert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` :param page: set the page number of the response :type page: int @@ -260201,7 +260201,7 @@ def index_safran_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_safran_get_serialize( + _param = self._index_sacert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -260233,7 +260233,7 @@ def index_safran_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -260249,7 +260249,7 @@ def index_safran_get( @validate_call - def index_safran_get_with_http_info( + def index_sacert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260287,10 +260287,10 @@ def index_safran_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination]: - """Return vulnerability data stored in index \"safran\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"sacert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` :param page: set the page number of the response :type page: int @@ -260362,7 +260362,7 @@ def index_safran_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_safran_get_serialize( + _param = self._index_sacert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -260394,7 +260394,7 @@ def index_safran_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -260410,7 +260410,7 @@ def index_safran_get_with_http_info( @validate_call - def index_safran_get_without_preload_content( + def index_sacert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260449,9 +260449,9 @@ def index_safran_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"safran\" + """Return vulnerability data stored in index \"sacert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sacert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Saudi CERT ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sacert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sacert?cursor=` :param page: set the page number of the response :type page: int @@ -260523,7 +260523,7 @@ def index_safran_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_safran_get_serialize( + _param = self._index_sacert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -260555,7 +260555,7 @@ def index_safran_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -260566,7 +260566,7 @@ def index_safran_get_without_preload_content( return response_data.response - def _index_safran_get_serialize( + def _index_sacert_get_serialize( self, page, limit, @@ -260734,7 +260734,7 @@ def _index_safran_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/safran', + resource_path='/v3/index/sacert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -260751,7 +260751,7 @@ def _index_safran_get_serialize( @validate_call - def index_saint_get( + def index_safran_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260789,10 +260789,10 @@ def index_saint_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination: - """Return vulnerability data stored in index \"saint\" + ) -> RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination: + """Return vulnerability data stored in index \"safran\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` :param page: set the page number of the response :type page: int @@ -260864,7 +260864,7 @@ def index_saint_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_saint_get_serialize( + _param = self._index_safran_get_serialize( page=page, limit=limit, cursor=cursor, @@ -260896,7 +260896,7 @@ def index_saint_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", '404': "str", '500': "str", } @@ -260912,7 +260912,7 @@ def index_saint_get( @validate_call - def index_saint_get_with_http_info( + def index_safran_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -260950,10 +260950,10 @@ def index_saint_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination]: - """Return vulnerability data stored in index \"saint\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination]: + """Return vulnerability data stored in index \"safran\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` :param page: set the page number of the response :type page: int @@ -261025,7 +261025,7 @@ def index_saint_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_saint_get_serialize( + _param = self._index_safran_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261057,7 +261057,7 @@ def index_saint_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", '404': "str", '500': "str", } @@ -261073,7 +261073,7 @@ def index_saint_get_with_http_info( @validate_call - def index_saint_get_without_preload_content( + def index_safran_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -261112,9 +261112,9 @@ def index_saint_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"saint\" + """Return vulnerability data stored in index \"safran\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the safran index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Safran Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/safran?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/safran?cursor=` :param page: set the page number of the response :type page: int @@ -261186,7 +261186,7 @@ def index_saint_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_saint_get_serialize( + _param = self._index_safran_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261218,7 +261218,7 @@ def index_saint_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySafranPaginatePagination", '404': "str", '500': "str", } @@ -261229,7 +261229,7 @@ def index_saint_get_without_preload_content( return response_data.response - def _index_saint_get_serialize( + def _index_safran_get_serialize( self, page, limit, @@ -261397,7 +261397,7 @@ def _index_saint_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/saint', + resource_path='/v3/index/safran', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -261414,7 +261414,7 @@ def _index_saint_get_serialize( @validate_call - def index_salesforce_get( + def index_saint_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -261452,10 +261452,10 @@ def index_salesforce_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination: - """Return vulnerability data stored in index \"salesforce\" + ) -> RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination: + """Return vulnerability data stored in index \"saint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` :param page: set the page number of the response :type page: int @@ -261527,7 +261527,7 @@ def index_salesforce_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_salesforce_get_serialize( + _param = self._index_saint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261559,7 +261559,7 @@ def index_salesforce_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", '404': "str", '500': "str", } @@ -261575,7 +261575,7 @@ def index_salesforce_get( @validate_call - def index_salesforce_get_with_http_info( + def index_saint_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -261613,10 +261613,10 @@ def index_salesforce_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination]: - """Return vulnerability data stored in index \"salesforce\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination]: + """Return vulnerability data stored in index \"saint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` :param page: set the page number of the response :type page: int @@ -261688,7 +261688,7 @@ def index_salesforce_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_salesforce_get_serialize( + _param = self._index_saint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261720,7 +261720,7 @@ def index_salesforce_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", '404': "str", '500': "str", } @@ -261736,7 +261736,7 @@ def index_salesforce_get_with_http_info( @validate_call - def index_salesforce_get_without_preload_content( + def index_saint_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -261775,9 +261775,9 @@ def index_salesforce_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"salesforce\" + """Return vulnerability data stored in index \"saint\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the saint index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAINT Exploits ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/saint?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/saint?cursor=` :param page: set the page number of the response :type page: int @@ -261849,7 +261849,7 @@ def index_salesforce_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_salesforce_get_serialize( + _param = self._index_saint_get_serialize( page=page, limit=limit, cursor=cursor, @@ -261881,7 +261881,7 @@ def index_salesforce_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySaintExploitPaginatePagination", '404': "str", '500': "str", } @@ -261892,7 +261892,7 @@ def index_salesforce_get_without_preload_content( return response_data.response - def _index_salesforce_get_serialize( + def _index_saint_get_serialize( self, page, limit, @@ -262060,7 +262060,7 @@ def _index_salesforce_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/salesforce', + resource_path='/v3/index/saint', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -262077,7 +262077,7 @@ def _index_salesforce_get_serialize( @validate_call - def index_samba_get( + def index_salesforce_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262115,10 +262115,10 @@ def index_samba_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination: - """Return vulnerability data stored in index \"samba\" + ) -> RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination: + """Return vulnerability data stored in index \"salesforce\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` :param page: set the page number of the response :type page: int @@ -262190,7 +262190,7 @@ def index_samba_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_samba_get_serialize( + _param = self._index_salesforce_get_serialize( page=page, limit=limit, cursor=cursor, @@ -262222,7 +262222,7 @@ def index_samba_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", '404': "str", '500': "str", } @@ -262238,7 +262238,7 @@ def index_samba_get( @validate_call - def index_samba_get_with_http_info( + def index_salesforce_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262276,10 +262276,10 @@ def index_samba_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination]: - """Return vulnerability data stored in index \"samba\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination]: + """Return vulnerability data stored in index \"salesforce\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` :param page: set the page number of the response :type page: int @@ -262351,7 +262351,7 @@ def index_samba_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_samba_get_serialize( + _param = self._index_salesforce_get_serialize( page=page, limit=limit, cursor=cursor, @@ -262383,7 +262383,7 @@ def index_samba_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", '404': "str", '500': "str", } @@ -262399,7 +262399,7 @@ def index_samba_get_with_http_info( @validate_call - def index_samba_get_without_preload_content( + def index_salesforce_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262438,9 +262438,9 @@ def index_samba_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"samba\" + """Return vulnerability data stored in index \"salesforce\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the salesforce index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SalesForce Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/salesforce?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/salesforce?cursor=` :param page: set the page number of the response :type page: int @@ -262512,7 +262512,7 @@ def index_samba_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_samba_get_serialize( + _param = self._index_salesforce_get_serialize( page=page, limit=limit, cursor=cursor, @@ -262544,7 +262544,7 @@ def index_samba_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySalesForcePaginatePagination", '404': "str", '500': "str", } @@ -262555,7 +262555,7 @@ def index_samba_get_without_preload_content( return response_data.response - def _index_samba_get_serialize( + def _index_salesforce_get_serialize( self, page, limit, @@ -262723,7 +262723,7 @@ def _index_samba_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/samba', + resource_path='/v3/index/salesforce', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -262740,7 +262740,7 @@ def _index_samba_get_serialize( @validate_call - def index_sandisk_get( + def index_samba_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262778,10 +262778,10 @@ def index_sandisk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination: - """Return vulnerability data stored in index \"sandisk\" + ) -> RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination: + """Return vulnerability data stored in index \"samba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` :param page: set the page number of the response :type page: int @@ -262853,7 +262853,7 @@ def index_sandisk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sandisk_get_serialize( + _param = self._index_samba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -262885,7 +262885,7 @@ def index_sandisk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", '404': "str", '500': "str", } @@ -262901,7 +262901,7 @@ def index_sandisk_get( @validate_call - def index_sandisk_get_with_http_info( + def index_samba_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -262939,10 +262939,10 @@ def index_sandisk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination]: - """Return vulnerability data stored in index \"sandisk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination]: + """Return vulnerability data stored in index \"samba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` :param page: set the page number of the response :type page: int @@ -263014,7 +263014,7 @@ def index_sandisk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sandisk_get_serialize( + _param = self._index_samba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263046,7 +263046,7 @@ def index_sandisk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", '404': "str", '500': "str", } @@ -263062,7 +263062,7 @@ def index_sandisk_get_with_http_info( @validate_call - def index_sandisk_get_without_preload_content( + def index_samba_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -263101,9 +263101,9 @@ def index_sandisk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sandisk\" + """Return vulnerability data stored in index \"samba\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the samba index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Samba Security Releases ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/samba?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/samba?cursor=` :param page: set the page number of the response :type page: int @@ -263175,7 +263175,7 @@ def index_sandisk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sandisk_get_serialize( + _param = self._index_samba_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263207,7 +263207,7 @@ def index_sandisk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySambaPaginatePagination", '404': "str", '500': "str", } @@ -263218,7 +263218,7 @@ def index_sandisk_get_without_preload_content( return response_data.response - def _index_sandisk_get_serialize( + def _index_samba_get_serialize( self, page, limit, @@ -263386,7 +263386,7 @@ def _index_sandisk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sandisk', + resource_path='/v3/index/samba', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -263403,7 +263403,7 @@ def _index_sandisk_get_serialize( @validate_call - def index_sans_dshield_get( + def index_sandisk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -263441,10 +263441,10 @@ def index_sans_dshield_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination: - """Return vulnerability data stored in index \"sans-dshield\" + ) -> RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination: + """Return vulnerability data stored in index \"sandisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` :param page: set the page number of the response :type page: int @@ -263516,7 +263516,7 @@ def index_sans_dshield_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sans_dshield_get_serialize( + _param = self._index_sandisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263548,7 +263548,7 @@ def index_sans_dshield_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", '404': "str", '500': "str", } @@ -263564,7 +263564,7 @@ def index_sans_dshield_get( @validate_call - def index_sans_dshield_get_with_http_info( + def index_sandisk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -263602,10 +263602,10 @@ def index_sans_dshield_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination]: - """Return vulnerability data stored in index \"sans-dshield\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination]: + """Return vulnerability data stored in index \"sandisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` :param page: set the page number of the response :type page: int @@ -263677,7 +263677,7 @@ def index_sans_dshield_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sans_dshield_get_serialize( + _param = self._index_sandisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263709,7 +263709,7 @@ def index_sans_dshield_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", '404': "str", '500': "str", } @@ -263725,7 +263725,7 @@ def index_sans_dshield_get_with_http_info( @validate_call - def index_sans_dshield_get_without_preload_content( + def index_sandisk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -263764,9 +263764,9 @@ def index_sans_dshield_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sans-dshield\" + """Return vulnerability data stored in index \"sandisk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sandisk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sandisk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sandisk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sandisk?cursor=` :param page: set the page number of the response :type page: int @@ -263838,7 +263838,7 @@ def index_sans_dshield_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sans_dshield_get_serialize( + _param = self._index_sandisk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -263870,7 +263870,7 @@ def index_sans_dshield_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySandiskPaginatePagination", '404': "str", '500': "str", } @@ -263881,7 +263881,7 @@ def index_sans_dshield_get_without_preload_content( return response_data.response - def _index_sans_dshield_get_serialize( + def _index_sandisk_get_serialize( self, page, limit, @@ -264049,7 +264049,7 @@ def _index_sans_dshield_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sans-dshield', + resource_path='/v3/index/sandisk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -264066,7 +264066,7 @@ def _index_sans_dshield_get_serialize( @validate_call - def index_sap_get( + def index_sans_dshield_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264104,10 +264104,10 @@ def index_sap_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination: - """Return vulnerability data stored in index \"sap\" + ) -> RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination: + """Return vulnerability data stored in index \"sans-dshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` :param page: set the page number of the response :type page: int @@ -264179,7 +264179,7 @@ def index_sap_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sap_get_serialize( + _param = self._index_sans_dshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -264211,7 +264211,7 @@ def index_sap_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", '404': "str", '500': "str", } @@ -264227,7 +264227,7 @@ def index_sap_get( @validate_call - def index_sap_get_with_http_info( + def index_sans_dshield_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264265,10 +264265,10 @@ def index_sap_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination]: - """Return vulnerability data stored in index \"sap\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination]: + """Return vulnerability data stored in index \"sans-dshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` :param page: set the page number of the response :type page: int @@ -264340,7 +264340,7 @@ def index_sap_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sap_get_serialize( + _param = self._index_sans_dshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -264372,7 +264372,7 @@ def index_sap_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", '404': "str", '500': "str", } @@ -264388,7 +264388,7 @@ def index_sap_get_with_http_info( @validate_call - def index_sap_get_without_preload_content( + def index_sans_dshield_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264427,9 +264427,9 @@ def index_sap_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sap\" + """Return vulnerability data stored in index \"sans-dshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sans-dshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SANS DShield Honeypot Data ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sans-dshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sans-dshield?cursor=` :param page: set the page number of the response :type page: int @@ -264501,7 +264501,7 @@ def index_sap_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sap_get_serialize( + _param = self._index_sans_dshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -264533,7 +264533,7 @@ def index_sap_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySansDshieldPaginatePagination", '404': "str", '500': "str", } @@ -264544,7 +264544,7 @@ def index_sap_get_without_preload_content( return response_data.response - def _index_sap_get_serialize( + def _index_sans_dshield_get_serialize( self, page, limit, @@ -264712,7 +264712,7 @@ def _index_sap_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sap', + resource_path='/v3/index/sans-dshield', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -264729,7 +264729,7 @@ def _index_sap_get_serialize( @validate_call - def index_schneider_electric_get( + def index_sap_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264767,10 +264767,10 @@ def index_schneider_electric_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"schneider-electric\" + ) -> RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination: + """Return vulnerability data stored in index \"sap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` :param page: set the page number of the response :type page: int @@ -264842,7 +264842,7 @@ def index_schneider_electric_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schneider_electric_get_serialize( + _param = self._index_sap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -264874,7 +264874,7 @@ def index_schneider_electric_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", '404': "str", '500': "str", } @@ -264890,7 +264890,7 @@ def index_schneider_electric_get( @validate_call - def index_schneider_electric_get_with_http_info( + def index_sap_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -264928,10 +264928,10 @@ def index_schneider_electric_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"schneider-electric\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination]: + """Return vulnerability data stored in index \"sap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` :param page: set the page number of the response :type page: int @@ -265003,7 +265003,7 @@ def index_schneider_electric_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schneider_electric_get_serialize( + _param = self._index_sap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265035,7 +265035,7 @@ def index_schneider_electric_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", '404': "str", '500': "str", } @@ -265051,7 +265051,7 @@ def index_schneider_electric_get_with_http_info( @validate_call - def index_schneider_electric_get_without_preload_content( + def index_sap_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -265090,9 +265090,9 @@ def index_schneider_electric_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"schneider-electric\" + """Return vulnerability data stored in index \"sap\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sap index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SAP Security Patch Days ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sap?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sap?cursor=` :param page: set the page number of the response :type page: int @@ -265164,7 +265164,7 @@ def index_schneider_electric_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schneider_electric_get_serialize( + _param = self._index_sap_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265196,7 +265196,7 @@ def index_schneider_electric_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySAPPaginatePagination", '404': "str", '500': "str", } @@ -265207,7 +265207,7 @@ def index_schneider_electric_get_without_preload_content( return response_data.response - def _index_schneider_electric_get_serialize( + def _index_sap_get_serialize( self, page, limit, @@ -265375,7 +265375,7 @@ def _index_schneider_electric_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/schneider-electric', + resource_path='/v3/index/sap', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -265392,7 +265392,7 @@ def _index_schneider_electric_get_serialize( @validate_call - def index_schutzwerk_get( + def index_schneider_electric_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -265430,10 +265430,10 @@ def index_schutzwerk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination: - """Return vulnerability data stored in index \"schutzwerk\" + ) -> RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"schneider-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` :param page: set the page number of the response :type page: int @@ -265505,7 +265505,7 @@ def index_schutzwerk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schutzwerk_get_serialize( + _param = self._index_schneider_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265537,7 +265537,7 @@ def index_schutzwerk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -265553,7 +265553,7 @@ def index_schutzwerk_get( @validate_call - def index_schutzwerk_get_with_http_info( + def index_schneider_electric_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -265591,10 +265591,10 @@ def index_schutzwerk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination]: - """Return vulnerability data stored in index \"schutzwerk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"schneider-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` :param page: set the page number of the response :type page: int @@ -265666,7 +265666,7 @@ def index_schutzwerk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schutzwerk_get_serialize( + _param = self._index_schneider_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265698,7 +265698,7 @@ def index_schutzwerk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -265714,7 +265714,7 @@ def index_schutzwerk_get_with_http_info( @validate_call - def index_schutzwerk_get_without_preload_content( + def index_schneider_electric_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -265753,9 +265753,9 @@ def index_schutzwerk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"schutzwerk\" + """Return vulnerability data stored in index \"schneider-electric\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schneider-electric index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schneider Electric Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schneider-electric?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schneider-electric?cursor=` :param page: set the page number of the response :type page: int @@ -265827,7 +265827,7 @@ def index_schutzwerk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_schutzwerk_get_serialize( + _param = self._index_schneider_electric_get_serialize( page=page, limit=limit, cursor=cursor, @@ -265859,7 +265859,7 @@ def index_schutzwerk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchneiderElectricAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -265870,7 +265870,7 @@ def index_schutzwerk_get_without_preload_content( return response_data.response - def _index_schutzwerk_get_serialize( + def _index_schneider_electric_get_serialize( self, page, limit, @@ -266038,7 +266038,7 @@ def _index_schutzwerk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/schutzwerk', + resource_path='/v3/index/schneider-electric', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -266055,7 +266055,7 @@ def _index_schutzwerk_get_serialize( @validate_call - def index_sec_consult_get( + def index_schutzwerk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266093,10 +266093,10 @@ def index_sec_consult_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination: - """Return vulnerability data stored in index \"sec-consult\" + ) -> RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination: + """Return vulnerability data stored in index \"schutzwerk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` :param page: set the page number of the response :type page: int @@ -266168,7 +266168,7 @@ def index_sec_consult_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sec_consult_get_serialize( + _param = self._index_schutzwerk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -266200,7 +266200,7 @@ def index_sec_consult_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", '404': "str", '500': "str", } @@ -266216,7 +266216,7 @@ def index_sec_consult_get( @validate_call - def index_sec_consult_get_with_http_info( + def index_schutzwerk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266254,10 +266254,10 @@ def index_sec_consult_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination]: - """Return vulnerability data stored in index \"sec-consult\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination]: + """Return vulnerability data stored in index \"schutzwerk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` :param page: set the page number of the response :type page: int @@ -266329,7 +266329,7 @@ def index_sec_consult_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sec_consult_get_serialize( + _param = self._index_schutzwerk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -266361,7 +266361,7 @@ def index_sec_consult_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", '404': "str", '500': "str", } @@ -266377,7 +266377,7 @@ def index_sec_consult_get_with_http_info( @validate_call - def index_sec_consult_get_without_preload_content( + def index_schutzwerk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266416,9 +266416,9 @@ def index_sec_consult_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sec-consult\" + """Return vulnerability data stored in index \"schutzwerk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the schutzwerk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schutzwerk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/schutzwerk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/schutzwerk?cursor=` :param page: set the page number of the response :type page: int @@ -266490,7 +266490,7 @@ def index_sec_consult_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sec_consult_get_serialize( + _param = self._index_schutzwerk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -266522,7 +266522,7 @@ def index_sec_consult_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySchutzwerkPaginatePagination", '404': "str", '500': "str", } @@ -266533,7 +266533,7 @@ def index_sec_consult_get_without_preload_content( return response_data.response - def _index_sec_consult_get_serialize( + def _index_schutzwerk_get_serialize( self, page, limit, @@ -266701,7 +266701,7 @@ def _index_sec_consult_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sec-consult', + resource_path='/v3/index/schutzwerk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -266718,7 +266718,7 @@ def _index_sec_consult_get_serialize( @validate_call - def index_securitylab_get( + def index_sec_consult_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266756,10 +266756,10 @@ def index_securitylab_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination: - """Return vulnerability data stored in index \"securitylab\" + ) -> RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination: + """Return vulnerability data stored in index \"sec-consult\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` :param page: set the page number of the response :type page: int @@ -266831,7 +266831,7 @@ def index_securitylab_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_securitylab_get_serialize( + _param = self._index_sec_consult_get_serialize( page=page, limit=limit, cursor=cursor, @@ -266863,7 +266863,7 @@ def index_securitylab_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", '404': "str", '500': "str", } @@ -266879,7 +266879,7 @@ def index_securitylab_get( @validate_call - def index_securitylab_get_with_http_info( + def index_sec_consult_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -266917,10 +266917,10 @@ def index_securitylab_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination]: - """Return vulnerability data stored in index \"securitylab\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination]: + """Return vulnerability data stored in index \"sec-consult\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` :param page: set the page number of the response :type page: int @@ -266992,7 +266992,7 @@ def index_securitylab_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_securitylab_get_serialize( + _param = self._index_sec_consult_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267024,7 +267024,7 @@ def index_securitylab_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", '404': "str", '500': "str", } @@ -267040,7 +267040,7 @@ def index_securitylab_get_with_http_info( @validate_call - def index_securitylab_get_without_preload_content( + def index_sec_consult_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -267079,9 +267079,9 @@ def index_securitylab_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"securitylab\" + """Return vulnerability data stored in index \"sec-consult\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sec-consult index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SEC Consult Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sec-consult?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sec-consult?cursor=` :param page: set the page number of the response :type page: int @@ -267153,7 +267153,7 @@ def index_securitylab_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_securitylab_get_serialize( + _param = self._index_sec_consult_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267185,7 +267185,7 @@ def index_securitylab_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySECConsultPaginatePagination", '404': "str", '500': "str", } @@ -267196,7 +267196,7 @@ def index_securitylab_get_without_preload_content( return response_data.response - def _index_securitylab_get_serialize( + def _index_sec_consult_get_serialize( self, page, limit, @@ -267364,7 +267364,7 @@ def _index_securitylab_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/securitylab', + resource_path='/v3/index/sec-consult', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -267381,7 +267381,7 @@ def _index_securitylab_get_serialize( @validate_call - def index_seebug_get( + def index_securitylab_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -267419,10 +267419,10 @@ def index_seebug_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination: - """Return vulnerability data stored in index \"seebug\" + ) -> RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination: + """Return vulnerability data stored in index \"securitylab\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` :param page: set the page number of the response :type page: int @@ -267494,7 +267494,7 @@ def index_seebug_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_seebug_get_serialize( + _param = self._index_securitylab_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267526,7 +267526,7 @@ def index_seebug_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", '404': "str", '500': "str", } @@ -267542,7 +267542,7 @@ def index_seebug_get( @validate_call - def index_seebug_get_with_http_info( + def index_securitylab_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -267580,10 +267580,10 @@ def index_seebug_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination]: - """Return vulnerability data stored in index \"seebug\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination]: + """Return vulnerability data stored in index \"securitylab\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` :param page: set the page number of the response :type page: int @@ -267655,7 +267655,7 @@ def index_seebug_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_seebug_get_serialize( + _param = self._index_securitylab_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267687,7 +267687,7 @@ def index_seebug_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", '404': "str", '500': "str", } @@ -267703,7 +267703,7 @@ def index_seebug_get_with_http_info( @validate_call - def index_seebug_get_without_preload_content( + def index_securitylab_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -267742,9 +267742,9 @@ def index_seebug_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"seebug\" + """Return vulnerability data stored in index \"securitylab\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the securitylab index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Security Lab Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/securitylab?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/securitylab?cursor=` :param page: set the page number of the response :type page: int @@ -267816,7 +267816,7 @@ def index_seebug_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_seebug_get_serialize( + _param = self._index_securitylab_get_serialize( page=page, limit=limit, cursor=cursor, @@ -267848,7 +267848,7 @@ def index_seebug_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySecurityLabPaginatePagination", '404': "str", '500': "str", } @@ -267859,7 +267859,7 @@ def index_seebug_get_without_preload_content( return response_data.response - def _index_seebug_get_serialize( + def _index_securitylab_get_serialize( self, page, limit, @@ -268027,7 +268027,7 @@ def _index_seebug_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/seebug', + resource_path='/v3/index/securitylab', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -268044,7 +268044,7 @@ def _index_seebug_get_serialize( @validate_call - def index_sel_get( + def index_seebug_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268082,10 +268082,10 @@ def index_sel_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySelPaginatePagination: - """Return vulnerability data stored in index \"sel\" + ) -> RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination: + """Return vulnerability data stored in index \"seebug\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` :param page: set the page number of the response :type page: int @@ -268157,7 +268157,7 @@ def index_sel_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sel_get_serialize( + _param = self._index_seebug_get_serialize( page=page, limit=limit, cursor=cursor, @@ -268189,7 +268189,7 @@ def index_sel_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", '404': "str", '500': "str", } @@ -268205,7 +268205,7 @@ def index_sel_get( @validate_call - def index_sel_get_with_http_info( + def index_seebug_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268243,10 +268243,10 @@ def index_sel_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySelPaginatePagination]: - """Return vulnerability data stored in index \"sel\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination]: + """Return vulnerability data stored in index \"seebug\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` :param page: set the page number of the response :type page: int @@ -268318,7 +268318,7 @@ def index_sel_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sel_get_serialize( + _param = self._index_seebug_get_serialize( page=page, limit=limit, cursor=cursor, @@ -268350,7 +268350,7 @@ def index_sel_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", '404': "str", '500': "str", } @@ -268366,7 +268366,7 @@ def index_sel_get_with_http_info( @validate_call - def index_sel_get_without_preload_content( + def index_seebug_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268405,9 +268405,9 @@ def index_sel_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sel\" + """Return vulnerability data stored in index \"seebug\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the seebug index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Seebug Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/seebug?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/seebug?cursor=` :param page: set the page number of the response :type page: int @@ -268479,7 +268479,7 @@ def index_sel_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sel_get_serialize( + _param = self._index_seebug_get_serialize( page=page, limit=limit, cursor=cursor, @@ -268511,7 +268511,7 @@ def index_sel_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySeebugExploitPaginatePagination", '404': "str", '500': "str", } @@ -268522,7 +268522,7 @@ def index_sel_get_without_preload_content( return response_data.response - def _index_sel_get_serialize( + def _index_seebug_get_serialize( self, page, limit, @@ -268690,7 +268690,7 @@ def _index_sel_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sel', + resource_path='/v3/index/seebug', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -268707,7 +268707,7 @@ def _index_sel_get_serialize( @validate_call - def index_sentinelone_get( + def index_sel_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268745,10 +268745,10 @@ def index_sentinelone_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination: - """Return vulnerability data stored in index \"sentinelone\" + ) -> RenderResponseWithMetadataArrayAdvisorySelPaginatePagination: + """Return vulnerability data stored in index \"sel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` :param page: set the page number of the response :type page: int @@ -268820,7 +268820,7 @@ def index_sentinelone_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sentinelone_get_serialize( + _param = self._index_sel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -268852,7 +268852,7 @@ def index_sentinelone_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", '404': "str", '500': "str", } @@ -268868,7 +268868,7 @@ def index_sentinelone_get( @validate_call - def index_sentinelone_get_with_http_info( + def index_sel_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -268906,10 +268906,10 @@ def index_sentinelone_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination]: - """Return vulnerability data stored in index \"sentinelone\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySelPaginatePagination]: + """Return vulnerability data stored in index \"sel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` :param page: set the page number of the response :type page: int @@ -268981,7 +268981,7 @@ def index_sentinelone_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sentinelone_get_serialize( + _param = self._index_sel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269013,7 +269013,7 @@ def index_sentinelone_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", '404': "str", '500': "str", } @@ -269029,7 +269029,7 @@ def index_sentinelone_get_with_http_info( @validate_call - def index_sentinelone_get_without_preload_content( + def index_sel_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -269068,9 +269068,9 @@ def index_sentinelone_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sentinelone\" + """Return vulnerability data stored in index \"sel\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sel index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Schweitzer Engineering Laboratories Security Notifications ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sel?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sel?cursor=` :param page: set the page number of the response :type page: int @@ -269142,7 +269142,7 @@ def index_sentinelone_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sentinelone_get_serialize( + _param = self._index_sel_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269174,7 +269174,7 @@ def index_sentinelone_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySelPaginatePagination", '404': "str", '500': "str", } @@ -269185,7 +269185,7 @@ def index_sentinelone_get_without_preload_content( return response_data.response - def _index_sentinelone_get_serialize( + def _index_sel_get_serialize( self, page, limit, @@ -269353,7 +269353,7 @@ def _index_sentinelone_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sentinelone', + resource_path='/v3/index/sel', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -269370,7 +269370,7 @@ def _index_sentinelone_get_serialize( @validate_call - def index_servicenow_get( + def index_sentinelone_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -269408,10 +269408,10 @@ def index_servicenow_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination: - """Return vulnerability data stored in index \"servicenow\" + ) -> RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination: + """Return vulnerability data stored in index \"sentinelone\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` :param page: set the page number of the response :type page: int @@ -269483,7 +269483,7 @@ def index_servicenow_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_servicenow_get_serialize( + _param = self._index_sentinelone_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269515,7 +269515,7 @@ def index_servicenow_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", '404': "str", '500': "str", } @@ -269531,7 +269531,7 @@ def index_servicenow_get( @validate_call - def index_servicenow_get_with_http_info( + def index_sentinelone_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -269569,10 +269569,10 @@ def index_servicenow_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination]: - """Return vulnerability data stored in index \"servicenow\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination]: + """Return vulnerability data stored in index \"sentinelone\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` :param page: set the page number of the response :type page: int @@ -269644,7 +269644,7 @@ def index_servicenow_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_servicenow_get_serialize( + _param = self._index_sentinelone_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269676,7 +269676,7 @@ def index_servicenow_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", '404': "str", '500': "str", } @@ -269692,7 +269692,7 @@ def index_servicenow_get_with_http_info( @validate_call - def index_servicenow_get_without_preload_content( + def index_sentinelone_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -269731,9 +269731,9 @@ def index_servicenow_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"servicenow\" + """Return vulnerability data stored in index \"sentinelone\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sentinelone index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SentinelOne Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sentinelone?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sentinelone?cursor=` :param page: set the page number of the response :type page: int @@ -269805,7 +269805,7 @@ def index_servicenow_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_servicenow_get_serialize( + _param = self._index_sentinelone_get_serialize( page=page, limit=limit, cursor=cursor, @@ -269837,7 +269837,7 @@ def index_servicenow_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySentinelOnePaginatePagination", '404': "str", '500': "str", } @@ -269848,7 +269848,7 @@ def index_servicenow_get_without_preload_content( return response_data.response - def _index_servicenow_get_serialize( + def _index_sentinelone_get_serialize( self, page, limit, @@ -270016,7 +270016,7 @@ def _index_servicenow_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/servicenow', + resource_path='/v3/index/sentinelone', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -270033,7 +270033,7 @@ def _index_servicenow_get_serialize( @validate_call - def index_shadowserver_exploited_get( + def index_servicenow_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270071,10 +270071,10 @@ def index_shadowserver_exploited_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination: - """Return vulnerability data stored in index \"shadowserver-exploited\" + ) -> RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination: + """Return vulnerability data stored in index \"servicenow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` :param page: set the page number of the response :type page: int @@ -270146,7 +270146,7 @@ def index_shadowserver_exploited_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shadowserver_exploited_get_serialize( + _param = self._index_servicenow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -270178,7 +270178,7 @@ def index_shadowserver_exploited_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", '404': "str", '500': "str", } @@ -270194,7 +270194,7 @@ def index_shadowserver_exploited_get( @validate_call - def index_shadowserver_exploited_get_with_http_info( + def index_servicenow_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270232,10 +270232,10 @@ def index_shadowserver_exploited_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination]: - """Return vulnerability data stored in index \"shadowserver-exploited\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination]: + """Return vulnerability data stored in index \"servicenow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` :param page: set the page number of the response :type page: int @@ -270307,7 +270307,7 @@ def index_shadowserver_exploited_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shadowserver_exploited_get_serialize( + _param = self._index_servicenow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -270339,7 +270339,7 @@ def index_shadowserver_exploited_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", '404': "str", '500': "str", } @@ -270355,7 +270355,7 @@ def index_shadowserver_exploited_get_with_http_info( @validate_call - def index_shadowserver_exploited_get_without_preload_content( + def index_servicenow_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270394,9 +270394,9 @@ def index_shadowserver_exploited_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"shadowserver-exploited\" + """Return vulnerability data stored in index \"servicenow\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the servicenow index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** ServiceNow CVE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/servicenow?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/servicenow?cursor=` :param page: set the page number of the response :type page: int @@ -270468,7 +270468,7 @@ def index_shadowserver_exploited_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shadowserver_exploited_get_serialize( + _param = self._index_servicenow_get_serialize( page=page, limit=limit, cursor=cursor, @@ -270500,7 +270500,7 @@ def index_shadowserver_exploited_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryServiceNowPaginatePagination", '404': "str", '500': "str", } @@ -270511,7 +270511,7 @@ def index_shadowserver_exploited_get_without_preload_content( return response_data.response - def _index_shadowserver_exploited_get_serialize( + def _index_servicenow_get_serialize( self, page, limit, @@ -270679,7 +270679,7 @@ def _index_shadowserver_exploited_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/shadowserver-exploited', + resource_path='/v3/index/servicenow', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -270696,7 +270696,7 @@ def _index_shadowserver_exploited_get_serialize( @validate_call - def index_shielder_get( + def index_shadowserver_exploited_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270734,10 +270734,10 @@ def index_shielder_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination: - """Return vulnerability data stored in index \"shielder\" + ) -> RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination: + """Return vulnerability data stored in index \"shadowserver-exploited\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` :param page: set the page number of the response :type page: int @@ -270809,7 +270809,7 @@ def index_shielder_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shielder_get_serialize( + _param = self._index_shadowserver_exploited_get_serialize( page=page, limit=limit, cursor=cursor, @@ -270841,7 +270841,7 @@ def index_shielder_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -270857,7 +270857,7 @@ def index_shielder_get( @validate_call - def index_shielder_get_with_http_info( + def index_shadowserver_exploited_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -270895,10 +270895,10 @@ def index_shielder_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination]: - """Return vulnerability data stored in index \"shielder\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination]: + """Return vulnerability data stored in index \"shadowserver-exploited\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` :param page: set the page number of the response :type page: int @@ -270970,7 +270970,7 @@ def index_shielder_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shielder_get_serialize( + _param = self._index_shadowserver_exploited_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271002,7 +271002,7 @@ def index_shielder_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -271018,7 +271018,7 @@ def index_shielder_get_with_http_info( @validate_call - def index_shielder_get_without_preload_content( + def index_shadowserver_exploited_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -271057,9 +271057,9 @@ def index_shielder_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"shielder\" + """Return vulnerability data stored in index \"shadowserver-exploited\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shadowserver-exploited index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shadowserver Foundation Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shadowserver-exploited?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shadowserver-exploited?cursor=` :param page: set the page number of the response :type page: int @@ -271131,7 +271131,7 @@ def index_shielder_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_shielder_get_serialize( + _param = self._index_shadowserver_exploited_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271163,7 +271163,7 @@ def index_shielder_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShadowServerExploitedVulnerabilityPaginatePagination", '404': "str", '500': "str", } @@ -271174,7 +271174,7 @@ def index_shielder_get_without_preload_content( return response_data.response - def _index_shielder_get_serialize( + def _index_shadowserver_exploited_get_serialize( self, page, limit, @@ -271342,7 +271342,7 @@ def _index_shielder_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/shielder', + resource_path='/v3/index/shadowserver-exploited', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -271359,7 +271359,7 @@ def _index_shielder_get_serialize( @validate_call - def index_sick_get( + def index_shielder_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -271397,10 +271397,10 @@ def index_sick_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySickPaginatePagination: - """Return vulnerability data stored in index \"sick\" + ) -> RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination: + """Return vulnerability data stored in index \"shielder\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` :param page: set the page number of the response :type page: int @@ -271472,7 +271472,7 @@ def index_sick_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sick_get_serialize( + _param = self._index_shielder_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271504,7 +271504,7 @@ def index_sick_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", '404': "str", '500': "str", } @@ -271520,7 +271520,7 @@ def index_sick_get( @validate_call - def index_sick_get_with_http_info( + def index_shielder_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -271558,10 +271558,10 @@ def index_sick_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySickPaginatePagination]: - """Return vulnerability data stored in index \"sick\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination]: + """Return vulnerability data stored in index \"shielder\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` :param page: set the page number of the response :type page: int @@ -271633,7 +271633,7 @@ def index_sick_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sick_get_serialize( + _param = self._index_shielder_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271665,7 +271665,7 @@ def index_sick_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", '404': "str", '500': "str", } @@ -271681,7 +271681,7 @@ def index_sick_get_with_http_info( @validate_call - def index_sick_get_without_preload_content( + def index_shielder_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -271720,9 +271720,9 @@ def index_sick_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sick\" + """Return vulnerability data stored in index \"shielder\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the shielder index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Shielder Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/shielder?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/shielder?cursor=` :param page: set the page number of the response :type page: int @@ -271794,7 +271794,7 @@ def index_sick_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sick_get_serialize( + _param = self._index_shielder_get_serialize( page=page, limit=limit, cursor=cursor, @@ -271826,7 +271826,7 @@ def index_sick_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryShielderPaginatePagination", '404': "str", '500': "str", } @@ -271837,7 +271837,7 @@ def index_sick_get_without_preload_content( return response_data.response - def _index_sick_get_serialize( + def _index_shielder_get_serialize( self, page, limit, @@ -272005,7 +272005,7 @@ def _index_sick_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sick', + resource_path='/v3/index/shielder', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -272022,7 +272022,7 @@ def _index_sick_get_serialize( @validate_call - def index_siemens_get( + def index_sick_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272060,10 +272060,10 @@ def index_siemens_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"siemens\" + ) -> RenderResponseWithMetadataArrayAdvisorySickPaginatePagination: + """Return vulnerability data stored in index \"sick\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` :param page: set the page number of the response :type page: int @@ -272135,7 +272135,7 @@ def index_siemens_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_siemens_get_serialize( + _param = self._index_sick_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272167,7 +272167,7 @@ def index_siemens_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", '404': "str", '500': "str", } @@ -272183,7 +272183,7 @@ def index_siemens_get( @validate_call - def index_siemens_get_with_http_info( + def index_sick_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272221,10 +272221,10 @@ def index_siemens_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"siemens\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySickPaginatePagination]: + """Return vulnerability data stored in index \"sick\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` :param page: set the page number of the response :type page: int @@ -272296,7 +272296,7 @@ def index_siemens_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_siemens_get_serialize( + _param = self._index_sick_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272328,7 +272328,7 @@ def index_siemens_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", '404': "str", '500': "str", } @@ -272344,7 +272344,7 @@ def index_siemens_get_with_http_info( @validate_call - def index_siemens_get_without_preload_content( + def index_sick_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272383,9 +272383,9 @@ def index_siemens_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"siemens\" + """Return vulnerability data stored in index \"sick\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sick index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SICK Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sick?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sick?cursor=` :param page: set the page number of the response :type page: int @@ -272457,7 +272457,7 @@ def index_siemens_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_siemens_get_serialize( + _param = self._index_sick_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272489,7 +272489,7 @@ def index_siemens_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySickPaginatePagination", '404': "str", '500': "str", } @@ -272500,7 +272500,7 @@ def index_siemens_get_without_preload_content( return response_data.response - def _index_siemens_get_serialize( + def _index_sick_get_serialize( self, page, limit, @@ -272668,7 +272668,7 @@ def _index_siemens_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/siemens', + resource_path='/v3/index/sick', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -272685,7 +272685,7 @@ def _index_siemens_get_serialize( @validate_call - def index_sierra_wireless_get( + def index_siemens_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272723,10 +272723,10 @@ def index_sierra_wireless_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination: - """Return vulnerability data stored in index \"sierra-wireless\" + ) -> RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"siemens\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` :param page: set the page number of the response :type page: int @@ -272798,7 +272798,7 @@ def index_sierra_wireless_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sierra_wireless_get_serialize( + _param = self._index_siemens_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272830,7 +272830,7 @@ def index_sierra_wireless_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -272846,7 +272846,7 @@ def index_sierra_wireless_get( @validate_call - def index_sierra_wireless_get_with_http_info( + def index_siemens_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -272884,10 +272884,10 @@ def index_sierra_wireless_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination]: - """Return vulnerability data stored in index \"sierra-wireless\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"siemens\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` :param page: set the page number of the response :type page: int @@ -272959,7 +272959,7 @@ def index_sierra_wireless_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sierra_wireless_get_serialize( + _param = self._index_siemens_get_serialize( page=page, limit=limit, cursor=cursor, @@ -272991,7 +272991,7 @@ def index_sierra_wireless_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -273007,7 +273007,7 @@ def index_sierra_wireless_get_with_http_info( @validate_call - def index_sierra_wireless_get_without_preload_content( + def index_siemens_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -273046,9 +273046,9 @@ def index_sierra_wireless_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sierra-wireless\" + """Return vulnerability data stored in index \"siemens\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the siemens index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Siemens Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/siemens?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/siemens?cursor=` :param page: set the page number of the response :type page: int @@ -273120,7 +273120,7 @@ def index_sierra_wireless_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sierra_wireless_get_serialize( + _param = self._index_siemens_get_serialize( page=page, limit=limit, cursor=cursor, @@ -273152,7 +273152,7 @@ def index_sierra_wireless_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySiemensAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -273163,7 +273163,7 @@ def index_sierra_wireless_get_without_preload_content( return response_data.response - def _index_sierra_wireless_get_serialize( + def _index_siemens_get_serialize( self, page, limit, @@ -273331,7 +273331,7 @@ def _index_sierra_wireless_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sierra-wireless', + resource_path='/v3/index/siemens', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -273348,7 +273348,7 @@ def _index_sierra_wireless_get_serialize( @validate_call - def index_sigmahq_sigma_rules_get( + def index_sierra_wireless_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -273386,10 +273386,10 @@ def index_sigmahq_sigma_rules_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination: - """Return vulnerability data stored in index \"sigmahq-sigma-rules\" + ) -> RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination: + """Return vulnerability data stored in index \"sierra-wireless\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` :param page: set the page number of the response :type page: int @@ -273461,7 +273461,7 @@ def index_sigmahq_sigma_rules_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sigmahq_sigma_rules_get_serialize( + _param = self._index_sierra_wireless_get_serialize( page=page, limit=limit, cursor=cursor, @@ -273493,7 +273493,7 @@ def index_sigmahq_sigma_rules_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", '404': "str", '500': "str", } @@ -273509,7 +273509,7 @@ def index_sigmahq_sigma_rules_get( @validate_call - def index_sigmahq_sigma_rules_get_with_http_info( + def index_sierra_wireless_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -273547,10 +273547,10 @@ def index_sigmahq_sigma_rules_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination]: - """Return vulnerability data stored in index \"sigmahq-sigma-rules\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination]: + """Return vulnerability data stored in index \"sierra-wireless\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` :param page: set the page number of the response :type page: int @@ -273622,7 +273622,7 @@ def index_sigmahq_sigma_rules_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sigmahq_sigma_rules_get_serialize( + _param = self._index_sierra_wireless_get_serialize( page=page, limit=limit, cursor=cursor, @@ -273654,7 +273654,7 @@ def index_sigmahq_sigma_rules_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", '404': "str", '500': "str", } @@ -273670,7 +273670,7 @@ def index_sigmahq_sigma_rules_get_with_http_info( @validate_call - def index_sigmahq_sigma_rules_get_without_preload_content( + def index_sierra_wireless_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -273709,9 +273709,9 @@ def index_sigmahq_sigma_rules_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sigmahq-sigma-rules\" + """Return vulnerability data stored in index \"sierra-wireless\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sierra-wireless index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sierra Wireless Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sierra-wireless?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sierra-wireless?cursor=` :param page: set the page number of the response :type page: int @@ -273783,7 +273783,7 @@ def index_sigmahq_sigma_rules_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sigmahq_sigma_rules_get_serialize( + _param = self._index_sierra_wireless_get_serialize( page=page, limit=limit, cursor=cursor, @@ -273815,7 +273815,7 @@ def index_sigmahq_sigma_rules_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySierraWirelessPaginatePagination", '404': "str", '500': "str", } @@ -273826,7 +273826,7 @@ def index_sigmahq_sigma_rules_get_without_preload_content( return response_data.response - def _index_sigmahq_sigma_rules_get_serialize( + def _index_sierra_wireless_get_serialize( self, page, limit, @@ -273994,7 +273994,7 @@ def _index_sigmahq_sigma_rules_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sigmahq-sigma-rules', + resource_path='/v3/index/sierra-wireless', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -274011,7 +274011,7 @@ def _index_sigmahq_sigma_rules_get_serialize( @validate_call - def index_singcert_get( + def index_sigmahq_sigma_rules_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274049,10 +274049,10 @@ def index_singcert_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination: - """Return vulnerability data stored in index \"singcert\" + ) -> RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination: + """Return vulnerability data stored in index \"sigmahq-sigma-rules\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` :param page: set the page number of the response :type page: int @@ -274124,7 +274124,7 @@ def index_singcert_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_singcert_get_serialize( + _param = self._index_sigmahq_sigma_rules_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274156,7 +274156,7 @@ def index_singcert_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", '404': "str", '500': "str", } @@ -274172,7 +274172,7 @@ def index_singcert_get( @validate_call - def index_singcert_get_with_http_info( + def index_sigmahq_sigma_rules_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274210,10 +274210,10 @@ def index_singcert_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination]: - """Return vulnerability data stored in index \"singcert\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination]: + """Return vulnerability data stored in index \"sigmahq-sigma-rules\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` :param page: set the page number of the response :type page: int @@ -274285,7 +274285,7 @@ def index_singcert_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_singcert_get_serialize( + _param = self._index_sigmahq_sigma_rules_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274317,7 +274317,7 @@ def index_singcert_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", '404': "str", '500': "str", } @@ -274333,7 +274333,7 @@ def index_singcert_get_with_http_info( @validate_call - def index_singcert_get_without_preload_content( + def index_sigmahq_sigma_rules_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274372,9 +274372,9 @@ def index_singcert_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"singcert\" + """Return vulnerability data stored in index \"sigmahq-sigma-rules\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sigmahq-sigma-rules index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sigma Rules ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sigmahq-sigma-rules?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sigmahq-sigma-rules?cursor=` :param page: set the page number of the response :type page: int @@ -274446,7 +274446,7 @@ def index_singcert_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_singcert_get_serialize( + _param = self._index_sigmahq_sigma_rules_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274478,7 +274478,7 @@ def index_singcert_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySigmaRulePaginatePagination", '404': "str", '500': "str", } @@ -274489,7 +274489,7 @@ def index_singcert_get_without_preload_content( return response_data.response - def _index_singcert_get_serialize( + def _index_sigmahq_sigma_rules_get_serialize( self, page, limit, @@ -274657,7 +274657,7 @@ def _index_singcert_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/singcert', + resource_path='/v3/index/sigmahq-sigma-rules', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -274674,7 +274674,7 @@ def _index_singcert_get_serialize( @validate_call - def index_sitecore_get( + def index_singcert_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274712,10 +274712,10 @@ def index_sitecore_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination: - """Return vulnerability data stored in index \"sitecore\" + ) -> RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination: + """Return vulnerability data stored in index \"singcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` :param page: set the page number of the response :type page: int @@ -274787,7 +274787,7 @@ def index_sitecore_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sitecore_get_serialize( + _param = self._index_singcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274819,7 +274819,7 @@ def index_sitecore_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", '404': "str", '500': "str", } @@ -274835,7 +274835,7 @@ def index_sitecore_get( @validate_call - def index_sitecore_get_with_http_info( + def index_singcert_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -274873,10 +274873,10 @@ def index_sitecore_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination]: - """Return vulnerability data stored in index \"sitecore\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination]: + """Return vulnerability data stored in index \"singcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` :param page: set the page number of the response :type page: int @@ -274948,7 +274948,7 @@ def index_sitecore_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sitecore_get_serialize( + _param = self._index_singcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -274980,7 +274980,7 @@ def index_sitecore_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", '404': "str", '500': "str", } @@ -274996,7 +274996,7 @@ def index_sitecore_get_with_http_info( @validate_call - def index_sitecore_get_without_preload_content( + def index_singcert_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -275035,9 +275035,9 @@ def index_sitecore_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sitecore\" + """Return vulnerability data stored in index \"singcert\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the singcert index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** CSA Alerts and Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/singcert?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/singcert?cursor=` :param page: set the page number of the response :type page: int @@ -275109,7 +275109,7 @@ def index_sitecore_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sitecore_get_serialize( + _param = self._index_singcert_get_serialize( page=page, limit=limit, cursor=cursor, @@ -275141,7 +275141,7 @@ def index_sitecore_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySingCertPaginatePagination", '404': "str", '500': "str", } @@ -275152,7 +275152,7 @@ def index_sitecore_get_without_preload_content( return response_data.response - def _index_sitecore_get_serialize( + def _index_singcert_get_serialize( self, page, limit, @@ -275320,7 +275320,7 @@ def _index_sitecore_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sitecore', + resource_path='/v3/index/singcert', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -275337,7 +275337,7 @@ def _index_sitecore_get_serialize( @validate_call - def index_slackware_get( + def index_sitecore_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -275375,10 +275375,10 @@ def index_slackware_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination: - """Return vulnerability data stored in index \"slackware\" + ) -> RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination: + """Return vulnerability data stored in index \"sitecore\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` :param page: set the page number of the response :type page: int @@ -275450,7 +275450,7 @@ def index_slackware_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_slackware_get_serialize( + _param = self._index_sitecore_get_serialize( page=page, limit=limit, cursor=cursor, @@ -275482,7 +275482,7 @@ def index_slackware_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", '404': "str", '500': "str", } @@ -275498,7 +275498,7 @@ def index_slackware_get( @validate_call - def index_slackware_get_with_http_info( + def index_sitecore_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -275536,10 +275536,10 @@ def index_slackware_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination]: - """Return vulnerability data stored in index \"slackware\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination]: + """Return vulnerability data stored in index \"sitecore\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` :param page: set the page number of the response :type page: int @@ -275611,7 +275611,7 @@ def index_slackware_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_slackware_get_serialize( + _param = self._index_sitecore_get_serialize( page=page, limit=limit, cursor=cursor, @@ -275643,7 +275643,7 @@ def index_slackware_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", '404': "str", '500': "str", } @@ -275659,7 +275659,7 @@ def index_slackware_get_with_http_info( @validate_call - def index_slackware_get_without_preload_content( + def index_sitecore_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -275698,9 +275698,9 @@ def index_slackware_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"slackware\" + """Return vulnerability data stored in index \"sitecore\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sitecore index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sitecore Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sitecore?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sitecore?cursor=` :param page: set the page number of the response :type page: int @@ -275772,7 +275772,7 @@ def index_slackware_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_slackware_get_serialize( + _param = self._index_sitecore_get_serialize( page=page, limit=limit, cursor=cursor, @@ -275804,7 +275804,7 @@ def index_slackware_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySitecorePaginatePagination", '404': "str", '500': "str", } @@ -275815,7 +275815,7 @@ def index_slackware_get_without_preload_content( return response_data.response - def _index_slackware_get_serialize( + def _index_sitecore_get_serialize( self, page, limit, @@ -275983,7 +275983,7 @@ def _index_slackware_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/slackware', + resource_path='/v3/index/sitecore', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -276000,7 +276000,7 @@ def _index_slackware_get_serialize( @validate_call - def index_solarwinds_get( + def index_slackware_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276038,10 +276038,10 @@ def index_solarwinds_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"solarwinds\" + ) -> RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination: + """Return vulnerability data stored in index \"slackware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` :param page: set the page number of the response :type page: int @@ -276113,7 +276113,7 @@ def index_solarwinds_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solarwinds_get_serialize( + _param = self._index_slackware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276145,7 +276145,7 @@ def index_solarwinds_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", '404': "str", '500': "str", } @@ -276161,7 +276161,7 @@ def index_solarwinds_get( @validate_call - def index_solarwinds_get_with_http_info( + def index_slackware_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276199,10 +276199,10 @@ def index_solarwinds_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"solarwinds\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination]: + """Return vulnerability data stored in index \"slackware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` :param page: set the page number of the response :type page: int @@ -276274,7 +276274,7 @@ def index_solarwinds_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solarwinds_get_serialize( + _param = self._index_slackware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276306,7 +276306,7 @@ def index_solarwinds_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", '404': "str", '500': "str", } @@ -276322,7 +276322,7 @@ def index_solarwinds_get_with_http_info( @validate_call - def index_solarwinds_get_without_preload_content( + def index_slackware_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276361,9 +276361,9 @@ def index_solarwinds_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"solarwinds\" + """Return vulnerability data stored in index \"slackware\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the slackware index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Slackware Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/slackware?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/slackware?cursor=` :param page: set the page number of the response :type page: int @@ -276435,7 +276435,7 @@ def index_solarwinds_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solarwinds_get_serialize( + _param = self._index_slackware_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276467,7 +276467,7 @@ def index_solarwinds_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySlackwarePaginatePagination", '404': "str", '500': "str", } @@ -276478,7 +276478,7 @@ def index_solarwinds_get_without_preload_content( return response_data.response - def _index_solarwinds_get_serialize( + def _index_slackware_get_serialize( self, page, limit, @@ -276646,7 +276646,7 @@ def _index_solarwinds_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/solarwinds', + resource_path='/v3/index/slackware', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -276663,7 +276663,7 @@ def _index_solarwinds_get_serialize( @validate_call - def index_solr_get( + def index_solarwinds_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276701,10 +276701,10 @@ def index_solr_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination: - """Return vulnerability data stored in index \"solr\" + ) -> RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"solarwinds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` :param page: set the page number of the response :type page: int @@ -276776,7 +276776,7 @@ def index_solr_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solr_get_serialize( + _param = self._index_solarwinds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276808,7 +276808,7 @@ def index_solr_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -276824,7 +276824,7 @@ def index_solr_get( @validate_call - def index_solr_get_with_http_info( + def index_solarwinds_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -276862,10 +276862,10 @@ def index_solr_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination]: - """Return vulnerability data stored in index \"solr\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"solarwinds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` :param page: set the page number of the response :type page: int @@ -276937,7 +276937,7 @@ def index_solr_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solr_get_serialize( + _param = self._index_solarwinds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -276969,7 +276969,7 @@ def index_solr_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -276985,7 +276985,7 @@ def index_solr_get_with_http_info( @validate_call - def index_solr_get_without_preload_content( + def index_solarwinds_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -277024,9 +277024,9 @@ def index_solr_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"solr\" + """Return vulnerability data stored in index \"solarwinds\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solarwinds index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SolarWinds Security Vulnerabilities ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solarwinds?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solarwinds?cursor=` :param page: set the page number of the response :type page: int @@ -277098,7 +277098,7 @@ def index_solr_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_solr_get_serialize( + _param = self._index_solarwinds_get_serialize( page=page, limit=limit, cursor=cursor, @@ -277130,7 +277130,7 @@ def index_solr_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolarWindsAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -277141,7 +277141,7 @@ def index_solr_get_without_preload_content( return response_data.response - def _index_solr_get_serialize( + def _index_solarwinds_get_serialize( self, page, limit, @@ -277309,7 +277309,7 @@ def _index_solr_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/solr', + resource_path='/v3/index/solarwinds', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -277326,7 +277326,7 @@ def _index_solr_get_serialize( @validate_call - def index_sonatype_get( + def index_solr_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -277364,10 +277364,10 @@ def index_sonatype_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination: - """Return vulnerability data stored in index \"sonatype\" + ) -> RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination: + """Return vulnerability data stored in index \"solr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` :param page: set the page number of the response :type page: int @@ -277439,7 +277439,7 @@ def index_sonatype_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonatype_get_serialize( + _param = self._index_solr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -277471,7 +277471,7 @@ def index_sonatype_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", '404': "str", '500': "str", } @@ -277487,7 +277487,7 @@ def index_sonatype_get( @validate_call - def index_sonatype_get_with_http_info( + def index_solr_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -277525,10 +277525,10 @@ def index_sonatype_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination]: - """Return vulnerability data stored in index \"sonatype\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination]: + """Return vulnerability data stored in index \"solr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` :param page: set the page number of the response :type page: int @@ -277600,7 +277600,7 @@ def index_sonatype_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonatype_get_serialize( + _param = self._index_solr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -277632,7 +277632,7 @@ def index_sonatype_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", '404': "str", '500': "str", } @@ -277648,7 +277648,7 @@ def index_sonatype_get_with_http_info( @validate_call - def index_sonatype_get_without_preload_content( + def index_solr_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -277687,9 +277687,9 @@ def index_sonatype_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sonatype\" + """Return vulnerability data stored in index \"solr\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the solr index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Solr CVE Reports ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/solr?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/solr?cursor=` :param page: set the page number of the response :type page: int @@ -277761,7 +277761,7 @@ def index_sonatype_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonatype_get_serialize( + _param = self._index_solr_get_serialize( page=page, limit=limit, cursor=cursor, @@ -277793,7 +277793,7 @@ def index_sonatype_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySolrPaginatePagination", '404': "str", '500': "str", } @@ -277804,7 +277804,7 @@ def index_sonatype_get_without_preload_content( return response_data.response - def _index_sonatype_get_serialize( + def _index_solr_get_serialize( self, page, limit, @@ -277972,7 +277972,7 @@ def _index_sonatype_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sonatype', + resource_path='/v3/index/solr', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -277989,7 +277989,7 @@ def _index_sonatype_get_serialize( @validate_call - def index_sonicwall_get( + def index_sonatype_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278027,10 +278027,10 @@ def index_sonicwall_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"sonicwall\" + ) -> RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination: + """Return vulnerability data stored in index \"sonatype\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` :param page: set the page number of the response :type page: int @@ -278102,7 +278102,7 @@ def index_sonicwall_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonicwall_get_serialize( + _param = self._index_sonatype_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278134,7 +278134,7 @@ def index_sonicwall_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", '404': "str", '500': "str", } @@ -278150,7 +278150,7 @@ def index_sonicwall_get( @validate_call - def index_sonicwall_get_with_http_info( + def index_sonatype_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278188,10 +278188,10 @@ def index_sonicwall_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"sonicwall\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination]: + """Return vulnerability data stored in index \"sonatype\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` :param page: set the page number of the response :type page: int @@ -278263,7 +278263,7 @@ def index_sonicwall_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonicwall_get_serialize( + _param = self._index_sonatype_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278295,7 +278295,7 @@ def index_sonicwall_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", '404': "str", '500': "str", } @@ -278311,7 +278311,7 @@ def index_sonicwall_get_with_http_info( @validate_call - def index_sonicwall_get_without_preload_content( + def index_sonatype_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278350,9 +278350,9 @@ def index_sonicwall_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sonicwall\" + """Return vulnerability data stored in index \"sonatype\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonatype index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sonatype Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonatype?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonatype?cursor=` :param page: set the page number of the response :type page: int @@ -278424,7 +278424,7 @@ def index_sonicwall_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sonicwall_get_serialize( + _param = self._index_sonatype_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278456,7 +278456,7 @@ def index_sonicwall_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonatypePaginatePagination", '404': "str", '500': "str", } @@ -278467,7 +278467,7 @@ def index_sonicwall_get_without_preload_content( return response_data.response - def _index_sonicwall_get_serialize( + def _index_sonatype_get_serialize( self, page, limit, @@ -278635,7 +278635,7 @@ def _index_sonicwall_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sonicwall', + resource_path='/v3/index/sonatype', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -278652,7 +278652,7 @@ def _index_sonicwall_get_serialize( @validate_call - def index_spacelabs_healthcare_get( + def index_sonicwall_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278690,10 +278690,10 @@ def index_spacelabs_healthcare_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"spacelabs-healthcare\" + ) -> RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"sonicwall\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` :param page: set the page number of the response :type page: int @@ -278765,7 +278765,7 @@ def index_spacelabs_healthcare_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spacelabs_healthcare_get_serialize( + _param = self._index_sonicwall_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278797,7 +278797,7 @@ def index_spacelabs_healthcare_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -278813,7 +278813,7 @@ def index_spacelabs_healthcare_get( @validate_call - def index_spacelabs_healthcare_get_with_http_info( + def index_sonicwall_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -278851,10 +278851,10 @@ def index_spacelabs_healthcare_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"spacelabs-healthcare\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"sonicwall\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` :param page: set the page number of the response :type page: int @@ -278926,7 +278926,7 @@ def index_spacelabs_healthcare_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spacelabs_healthcare_get_serialize( + _param = self._index_sonicwall_get_serialize( page=page, limit=limit, cursor=cursor, @@ -278958,7 +278958,7 @@ def index_spacelabs_healthcare_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -278974,7 +278974,7 @@ def index_spacelabs_healthcare_get_with_http_info( @validate_call - def index_spacelabs_healthcare_get_without_preload_content( + def index_sonicwall_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -279013,9 +279013,9 @@ def index_spacelabs_healthcare_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"spacelabs-healthcare\" + """Return vulnerability data stored in index \"sonicwall\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sonicwall index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SonicWall Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sonicwall?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sonicwall?cursor=` :param page: set the page number of the response :type page: int @@ -279087,7 +279087,7 @@ def index_spacelabs_healthcare_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spacelabs_healthcare_get_serialize( + _param = self._index_sonicwall_get_serialize( page=page, limit=limit, cursor=cursor, @@ -279119,7 +279119,7 @@ def index_spacelabs_healthcare_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySonicWallAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -279130,7 +279130,7 @@ def index_spacelabs_healthcare_get_without_preload_content( return response_data.response - def _index_spacelabs_healthcare_get_serialize( + def _index_sonicwall_get_serialize( self, page, limit, @@ -279298,7 +279298,7 @@ def _index_spacelabs_healthcare_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/spacelabs-healthcare', + resource_path='/v3/index/sonicwall', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -279315,7 +279315,7 @@ def _index_spacelabs_healthcare_get_serialize( @validate_call - def index_splunk_get( + def index_spacelabs_healthcare_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -279353,10 +279353,10 @@ def index_splunk_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination: - """Return vulnerability data stored in index \"splunk\" + ) -> RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"spacelabs-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -279428,7 +279428,7 @@ def index_splunk_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_splunk_get_serialize( + _param = self._index_spacelabs_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -279460,7 +279460,7 @@ def index_splunk_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -279476,7 +279476,7 @@ def index_splunk_get( @validate_call - def index_splunk_get_with_http_info( + def index_spacelabs_healthcare_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -279514,10 +279514,10 @@ def index_splunk_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination]: - """Return vulnerability data stored in index \"splunk\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"spacelabs-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -279589,7 +279589,7 @@ def index_splunk_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_splunk_get_serialize( + _param = self._index_spacelabs_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -279621,7 +279621,7 @@ def index_splunk_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -279637,7 +279637,7 @@ def index_splunk_get_with_http_info( @validate_call - def index_splunk_get_without_preload_content( + def index_spacelabs_healthcare_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -279676,9 +279676,9 @@ def index_splunk_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"splunk\" + """Return vulnerability data stored in index \"spacelabs-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spacelabs-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spacelabs Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spacelabs-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spacelabs-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -279750,7 +279750,7 @@ def index_splunk_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_splunk_get_serialize( + _param = self._index_spacelabs_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -279782,7 +279782,7 @@ def index_splunk_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpacelabsHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -279793,7 +279793,7 @@ def index_splunk_get_without_preload_content( return response_data.response - def _index_splunk_get_serialize( + def _index_spacelabs_healthcare_get_serialize( self, page, limit, @@ -279961,7 +279961,7 @@ def _index_splunk_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/splunk', + resource_path='/v3/index/spacelabs-healthcare', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -279978,7 +279978,7 @@ def _index_splunk_get_serialize( @validate_call - def index_spring_get( + def index_splunk_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280016,10 +280016,10 @@ def index_spring_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination: - """Return vulnerability data stored in index \"spring\" + ) -> RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination: + """Return vulnerability data stored in index \"splunk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` :param page: set the page number of the response :type page: int @@ -280091,7 +280091,7 @@ def index_spring_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spring_get_serialize( + _param = self._index_splunk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280123,7 +280123,7 @@ def index_spring_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", '404': "str", '500': "str", } @@ -280139,7 +280139,7 @@ def index_spring_get( @validate_call - def index_spring_get_with_http_info( + def index_splunk_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280177,10 +280177,10 @@ def index_spring_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination]: - """Return vulnerability data stored in index \"spring\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination]: + """Return vulnerability data stored in index \"splunk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` :param page: set the page number of the response :type page: int @@ -280252,7 +280252,7 @@ def index_spring_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spring_get_serialize( + _param = self._index_splunk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280284,7 +280284,7 @@ def index_spring_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", '404': "str", '500': "str", } @@ -280300,7 +280300,7 @@ def index_spring_get_with_http_info( @validate_call - def index_spring_get_without_preload_content( + def index_splunk_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280339,9 +280339,9 @@ def index_spring_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"spring\" + """Return vulnerability data stored in index \"splunk\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the splunk index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Splunk Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/splunk?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/splunk?cursor=` :param page: set the page number of the response :type page: int @@ -280413,7 +280413,7 @@ def index_spring_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_spring_get_serialize( + _param = self._index_splunk_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280445,7 +280445,7 @@ def index_spring_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySplunkPaginatePagination", '404': "str", '500': "str", } @@ -280456,7 +280456,7 @@ def index_spring_get_without_preload_content( return response_data.response - def _index_spring_get_serialize( + def _index_splunk_get_serialize( self, page, limit, @@ -280624,7 +280624,7 @@ def _index_spring_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/spring', + resource_path='/v3/index/splunk', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -280641,7 +280641,7 @@ def _index_spring_get_serialize( @validate_call - def index_ssd_get( + def index_spring_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280679,10 +280679,10 @@ def index_ssd_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"ssd\" + ) -> RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination: + """Return vulnerability data stored in index \"spring\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` :param page: set the page number of the response :type page: int @@ -280754,7 +280754,7 @@ def index_ssd_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ssd_get_serialize( + _param = self._index_spring_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280786,7 +280786,7 @@ def index_ssd_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", '404': "str", '500': "str", } @@ -280802,7 +280802,7 @@ def index_ssd_get( @validate_call - def index_ssd_get_with_http_info( + def index_spring_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -280840,10 +280840,10 @@ def index_ssd_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"ssd\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination]: + """Return vulnerability data stored in index \"spring\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` :param page: set the page number of the response :type page: int @@ -280915,7 +280915,7 @@ def index_ssd_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ssd_get_serialize( + _param = self._index_spring_get_serialize( page=page, limit=limit, cursor=cursor, @@ -280947,7 +280947,7 @@ def index_ssd_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", '404': "str", '500': "str", } @@ -280963,7 +280963,7 @@ def index_ssd_get_with_http_info( @validate_call - def index_ssd_get_without_preload_content( + def index_spring_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -281002,9 +281002,9 @@ def index_ssd_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"ssd\" + """Return vulnerability data stored in index \"spring\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the spring index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Spring Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/spring?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/spring?cursor=` :param page: set the page number of the response :type page: int @@ -281076,7 +281076,7 @@ def index_ssd_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_ssd_get_serialize( + _param = self._index_spring_get_serialize( page=page, limit=limit, cursor=cursor, @@ -281108,7 +281108,7 @@ def index_ssd_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySpringPaginatePagination", '404': "str", '500': "str", } @@ -281119,7 +281119,7 @@ def index_ssd_get_without_preload_content( return response_data.response - def _index_ssd_get_serialize( + def _index_spring_get_serialize( self, page, limit, @@ -281287,7 +281287,7 @@ def _index_ssd_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/ssd', + resource_path='/v3/index/spring', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -281304,7 +281304,7 @@ def _index_ssd_get_serialize( @validate_call - def index_stormshield_get( + def index_ssd_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -281342,10 +281342,10 @@ def index_stormshield_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination: - """Return vulnerability data stored in index \"stormshield\" + ) -> RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"ssd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` :param page: set the page number of the response :type page: int @@ -281417,7 +281417,7 @@ def index_stormshield_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stormshield_get_serialize( + _param = self._index_ssd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -281449,7 +281449,7 @@ def index_stormshield_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -281465,7 +281465,7 @@ def index_stormshield_get( @validate_call - def index_stormshield_get_with_http_info( + def index_ssd_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -281503,10 +281503,10 @@ def index_stormshield_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination]: - """Return vulnerability data stored in index \"stormshield\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"ssd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` :param page: set the page number of the response :type page: int @@ -281578,7 +281578,7 @@ def index_stormshield_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stormshield_get_serialize( + _param = self._index_ssd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -281610,7 +281610,7 @@ def index_stormshield_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -281626,7 +281626,7 @@ def index_stormshield_get_with_http_info( @validate_call - def index_stormshield_get_without_preload_content( + def index_ssd_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -281665,9 +281665,9 @@ def index_stormshield_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"stormshield\" + """Return vulnerability data stored in index \"ssd\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the ssd index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SSD Secure Disclosure Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/ssd?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/ssd?cursor=` :param page: set the page number of the response :type page: int @@ -281739,7 +281739,7 @@ def index_stormshield_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stormshield_get_serialize( + _param = self._index_ssd_get_serialize( page=page, limit=limit, cursor=cursor, @@ -281771,7 +281771,7 @@ def index_stormshield_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySSDAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -281782,7 +281782,7 @@ def index_stormshield_get_without_preload_content( return response_data.response - def _index_stormshield_get_serialize( + def _index_ssd_get_serialize( self, page, limit, @@ -281950,7 +281950,7 @@ def _index_stormshield_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/stormshield', + resource_path='/v3/index/ssd', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -281967,7 +281967,7 @@ def _index_stormshield_get_serialize( @validate_call - def index_stryker_get( + def index_stormshield_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282005,10 +282005,10 @@ def index_stryker_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"stryker\" + ) -> RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination: + """Return vulnerability data stored in index \"stormshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` :param page: set the page number of the response :type page: int @@ -282080,7 +282080,7 @@ def index_stryker_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stryker_get_serialize( + _param = self._index_stormshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282112,7 +282112,7 @@ def index_stryker_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", '404': "str", '500': "str", } @@ -282128,7 +282128,7 @@ def index_stryker_get( @validate_call - def index_stryker_get_with_http_info( + def index_stormshield_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282166,10 +282166,10 @@ def index_stryker_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"stryker\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination]: + """Return vulnerability data stored in index \"stormshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` :param page: set the page number of the response :type page: int @@ -282241,7 +282241,7 @@ def index_stryker_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stryker_get_serialize( + _param = self._index_stormshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282273,7 +282273,7 @@ def index_stryker_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", '404': "str", '500': "str", } @@ -282289,7 +282289,7 @@ def index_stryker_get_with_http_info( @validate_call - def index_stryker_get_without_preload_content( + def index_stormshield_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282328,9 +282328,9 @@ def index_stryker_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"stryker\" + """Return vulnerability data stored in index \"stormshield\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stormshield index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stormshield Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stormshield?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stormshield?cursor=` :param page: set the page number of the response :type page: int @@ -282402,7 +282402,7 @@ def index_stryker_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_stryker_get_serialize( + _param = self._index_stormshield_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282434,7 +282434,7 @@ def index_stryker_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStormshieldPaginatePagination", '404': "str", '500': "str", } @@ -282445,7 +282445,7 @@ def index_stryker_get_without_preload_content( return response_data.response - def _index_stryker_get_serialize( + def _index_stormshield_get_serialize( self, page, limit, @@ -282613,7 +282613,7 @@ def _index_stryker_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/stryker', + resource_path='/v3/index/stormshield', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -282630,7 +282630,7 @@ def _index_stryker_get_serialize( @validate_call - def index_sudo_get( + def index_stryker_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282668,10 +282668,10 @@ def index_sudo_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination: - """Return vulnerability data stored in index \"sudo\" + ) -> RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"stryker\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` :param page: set the page number of the response :type page: int @@ -282743,7 +282743,7 @@ def index_sudo_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sudo_get_serialize( + _param = self._index_stryker_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282775,7 +282775,7 @@ def index_sudo_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -282791,7 +282791,7 @@ def index_sudo_get( @validate_call - def index_sudo_get_with_http_info( + def index_stryker_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282829,10 +282829,10 @@ def index_sudo_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination]: - """Return vulnerability data stored in index \"sudo\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"stryker\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` :param page: set the page number of the response :type page: int @@ -282904,7 +282904,7 @@ def index_sudo_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sudo_get_serialize( + _param = self._index_stryker_get_serialize( page=page, limit=limit, cursor=cursor, @@ -282936,7 +282936,7 @@ def index_sudo_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -282952,7 +282952,7 @@ def index_sudo_get_with_http_info( @validate_call - def index_sudo_get_without_preload_content( + def index_stryker_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -282991,9 +282991,9 @@ def index_sudo_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"sudo\" + """Return vulnerability data stored in index \"stryker\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the stryker index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Stryker Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/stryker?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/stryker?cursor=` :param page: set the page number of the response :type page: int @@ -283065,7 +283065,7 @@ def index_sudo_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_sudo_get_serialize( + _param = self._index_stryker_get_serialize( page=page, limit=limit, cursor=cursor, @@ -283097,7 +283097,7 @@ def index_sudo_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryStrykerAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -283108,7 +283108,7 @@ def index_sudo_get_without_preload_content( return response_data.response - def _index_sudo_get_serialize( + def _index_stryker_get_serialize( self, page, limit, @@ -283276,7 +283276,7 @@ def _index_sudo_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/sudo', + resource_path='/v3/index/stryker', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -283293,7 +283293,7 @@ def _index_sudo_get_serialize( @validate_call - def index_suse_get( + def index_sudo_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -283331,10 +283331,10 @@ def index_suse_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination: - """Return vulnerability data stored in index \"suse\" + ) -> RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination: + """Return vulnerability data stored in index \"sudo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` :param page: set the page number of the response :type page: int @@ -283406,7 +283406,7 @@ def index_suse_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_get_serialize( + _param = self._index_sudo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -283438,7 +283438,7 @@ def index_suse_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", '404': "str", '500': "str", } @@ -283454,7 +283454,7 @@ def index_suse_get( @validate_call - def index_suse_get_with_http_info( + def index_sudo_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -283492,10 +283492,10 @@ def index_suse_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination]: - """Return vulnerability data stored in index \"suse\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination]: + """Return vulnerability data stored in index \"sudo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` :param page: set the page number of the response :type page: int @@ -283567,7 +283567,7 @@ def index_suse_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_get_serialize( + _param = self._index_sudo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -283599,7 +283599,7 @@ def index_suse_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", '404': "str", '500': "str", } @@ -283615,7 +283615,7 @@ def index_suse_get_with_http_info( @validate_call - def index_suse_get_without_preload_content( + def index_sudo_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -283654,9 +283654,9 @@ def index_suse_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"suse\" + """Return vulnerability data stored in index \"sudo\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the sudo index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Sudo Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/sudo?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/sudo?cursor=` :param page: set the page number of the response :type page: int @@ -283728,7 +283728,7 @@ def index_suse_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_get_serialize( + _param = self._index_sudo_get_serialize( page=page, limit=limit, cursor=cursor, @@ -283760,7 +283760,7 @@ def index_suse_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySudoPaginatePagination", '404': "str", '500': "str", } @@ -283771,7 +283771,7 @@ def index_suse_get_without_preload_content( return response_data.response - def _index_suse_get_serialize( + def _index_sudo_get_serialize( self, page, limit, @@ -283939,7 +283939,7 @@ def _index_suse_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/suse', + resource_path='/v3/index/sudo', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -283956,7 +283956,7 @@ def _index_suse_get_serialize( @validate_call - def index_suse_security_get( + def index_suse_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -283994,10 +283994,10 @@ def index_suse_security_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination: - """Return vulnerability data stored in index \"suse-security\" + ) -> RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination: + """Return vulnerability data stored in index \"suse\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` :param page: set the page number of the response :type page: int @@ -284069,7 +284069,7 @@ def index_suse_security_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_security_get_serialize( + _param = self._index_suse_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284101,7 +284101,7 @@ def index_suse_security_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", '404': "str", '500': "str", } @@ -284117,7 +284117,7 @@ def index_suse_security_get( @validate_call - def index_suse_security_get_with_http_info( + def index_suse_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284155,10 +284155,10 @@ def index_suse_security_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination]: - """Return vulnerability data stored in index \"suse-security\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination]: + """Return vulnerability data stored in index \"suse\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` :param page: set the page number of the response :type page: int @@ -284230,7 +284230,7 @@ def index_suse_security_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_security_get_serialize( + _param = self._index_suse_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284262,7 +284262,7 @@ def index_suse_security_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", '404': "str", '500': "str", } @@ -284278,7 +284278,7 @@ def index_suse_security_get_with_http_info( @validate_call - def index_suse_security_get_without_preload_content( + def index_suse_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284317,9 +284317,9 @@ def index_suse_security_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"suse-security\" + """Return vulnerability data stored in index \"suse\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SUSE Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse?cursor=` :param page: set the page number of the response :type page: int @@ -284391,7 +284391,7 @@ def index_suse_security_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_suse_security_get_serialize( + _param = self._index_suse_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284423,7 +284423,7 @@ def index_suse_security_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryCvrfPaginatePagination", '404': "str", '500': "str", } @@ -284434,7 +284434,7 @@ def index_suse_security_get_without_preload_content( return response_data.response - def _index_suse_security_get_serialize( + def _index_suse_get_serialize( self, page, limit, @@ -284602,7 +284602,7 @@ def _index_suse_security_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/suse-security', + resource_path='/v3/index/suse', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -284619,7 +284619,7 @@ def _index_suse_security_get_serialize( @validate_call - def index_swift_get( + def index_suse_security_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284657,10 +284657,10 @@ def index_swift_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: - """Return vulnerability data stored in index \"swift\" + ) -> RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination: + """Return vulnerability data stored in index \"suse-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` :param page: set the page number of the response :type page: int @@ -284732,7 +284732,7 @@ def index_swift_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swift_get_serialize( + _param = self._index_suse_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284764,7 +284764,7 @@ def index_swift_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", '404': "str", '500': "str", } @@ -284780,7 +284780,7 @@ def index_swift_get( @validate_call - def index_swift_get_with_http_info( + def index_suse_security_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284818,10 +284818,10 @@ def index_swift_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: - """Return vulnerability data stored in index \"swift\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination]: + """Return vulnerability data stored in index \"suse-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` :param page: set the page number of the response :type page: int @@ -284893,7 +284893,7 @@ def index_swift_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swift_get_serialize( + _param = self._index_suse_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -284925,7 +284925,7 @@ def index_swift_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", '404': "str", '500': "str", } @@ -284941,7 +284941,7 @@ def index_swift_get_with_http_info( @validate_call - def index_swift_get_without_preload_content( + def index_suse_security_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -284980,9 +284980,9 @@ def index_swift_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"swift\" + """Return vulnerability data stored in index \"suse-security\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the suse-security index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Suse Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/suse-security?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/suse-security?cursor=` :param page: set the page number of the response :type page: int @@ -285054,7 +285054,7 @@ def index_swift_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swift_get_serialize( + _param = self._index_suse_security_get_serialize( page=page, limit=limit, cursor=cursor, @@ -285086,7 +285086,7 @@ def index_swift_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySuseSecurityPaginatePagination", '404': "str", '500': "str", } @@ -285097,7 +285097,7 @@ def index_swift_get_without_preload_content( return response_data.response - def _index_swift_get_serialize( + def _index_suse_security_get_serialize( self, page, limit, @@ -285265,7 +285265,7 @@ def _index_swift_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/swift', + resource_path='/v3/index/suse-security', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -285282,7 +285282,7 @@ def _index_swift_get_serialize( @validate_call - def index_swisslog_healthcare_get( + def index_swift_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -285320,10 +285320,10 @@ def index_swisslog_healthcare_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination: - """Return vulnerability data stored in index \"swisslog-healthcare\" + ) -> RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination: + """Return vulnerability data stored in index \"swift\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` :param page: set the page number of the response :type page: int @@ -285395,7 +285395,7 @@ def index_swisslog_healthcare_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swisslog_healthcare_get_serialize( + _param = self._index_swift_get_serialize( page=page, limit=limit, cursor=cursor, @@ -285427,7 +285427,7 @@ def index_swisslog_healthcare_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -285443,7 +285443,7 @@ def index_swisslog_healthcare_get( @validate_call - def index_swisslog_healthcare_get_with_http_info( + def index_swift_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -285481,10 +285481,10 @@ def index_swisslog_healthcare_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination]: - """Return vulnerability data stored in index \"swisslog-healthcare\" + ) -> ApiResponse[RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination]: + """Return vulnerability data stored in index \"swift\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` :param page: set the page number of the response :type page: int @@ -285556,7 +285556,7 @@ def index_swisslog_healthcare_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swisslog_healthcare_get_serialize( + _param = self._index_swift_get_serialize( page=page, limit=limit, cursor=cursor, @@ -285588,7 +285588,7 @@ def index_swisslog_healthcare_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -285604,7 +285604,7 @@ def index_swisslog_healthcare_get_with_http_info( @validate_call - def index_swisslog_healthcare_get_without_preload_content( + def index_swift_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -285643,9 +285643,9 @@ def index_swisslog_healthcare_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"swisslog-healthcare\" + """Return vulnerability data stored in index \"swift\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swift index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swift packages with package versions ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swift?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swift?cursor=` :param page: set the page number of the response :type page: int @@ -285717,7 +285717,7 @@ def index_swisslog_healthcare_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_swisslog_healthcare_get_serialize( + _param = self._index_swift_get_serialize( page=page, limit=limit, cursor=cursor, @@ -285749,7 +285749,7 @@ def index_swisslog_healthcare_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", + '200': "RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination", '404': "str", '500': "str", } @@ -285760,7 +285760,7 @@ def index_swisslog_healthcare_get_without_preload_content( return response_data.response - def _index_swisslog_healthcare_get_serialize( + def _index_swift_get_serialize( self, page, limit, @@ -285928,7 +285928,7 @@ def _index_swisslog_healthcare_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/swisslog-healthcare', + resource_path='/v3/index/swift', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -285945,7 +285945,7 @@ def _index_swisslog_healthcare_get_serialize( @validate_call - def index_symfony_get( + def index_swisslog_healthcare_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -285983,10 +285983,10 @@ def index_symfony_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination: - """Return vulnerability data stored in index \"symfony\" + ) -> RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination: + """Return vulnerability data stored in index \"swisslog-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -286058,7 +286058,7 @@ def index_symfony_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_symfony_get_serialize( + _param = self._index_swisslog_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286090,7 +286090,7 @@ def index_symfony_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -286106,7 +286106,7 @@ def index_symfony_get( @validate_call - def index_symfony_get_with_http_info( + def index_swisslog_healthcare_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286144,10 +286144,10 @@ def index_symfony_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination]: - """Return vulnerability data stored in index \"symfony\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination]: + """Return vulnerability data stored in index \"swisslog-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -286219,7 +286219,7 @@ def index_symfony_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_symfony_get_serialize( + _param = self._index_swisslog_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286251,7 +286251,7 @@ def index_symfony_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -286267,7 +286267,7 @@ def index_symfony_get_with_http_info( @validate_call - def index_symfony_get_without_preload_content( + def index_swisslog_healthcare_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286306,9 +286306,9 @@ def index_symfony_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"symfony\" + """Return vulnerability data stored in index \"swisslog-healthcare\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the swisslog-healthcare index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Swisslog Healthcare CVE Disclosures ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/swisslog-healthcare?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/swisslog-healthcare?cursor=` :param page: set the page number of the response :type page: int @@ -286380,7 +286380,7 @@ def index_symfony_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_symfony_get_serialize( + _param = self._index_swisslog_healthcare_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286412,7 +286412,7 @@ def index_symfony_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySwisslogHealthcareAdvisoryPaginatePagination", '404': "str", '500': "str", } @@ -286423,7 +286423,7 @@ def index_symfony_get_without_preload_content( return response_data.response - def _index_symfony_get_serialize( + def _index_swisslog_healthcare_get_serialize( self, page, limit, @@ -286591,7 +286591,7 @@ def _index_symfony_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/symfony', + resource_path='/v3/index/swisslog-healthcare', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -286608,7 +286608,7 @@ def _index_symfony_get_serialize( @validate_call - def index_synacktiv_get( + def index_symfony_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286646,10 +286646,10 @@ def index_synacktiv_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination: - """Return vulnerability data stored in index \"synacktiv\" + ) -> RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination: + """Return vulnerability data stored in index \"symfony\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` :param page: set the page number of the response :type page: int @@ -286721,7 +286721,7 @@ def index_synacktiv_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synacktiv_get_serialize( + _param = self._index_symfony_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286753,7 +286753,7 @@ def index_synacktiv_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", '404': "str", '500': "str", } @@ -286769,7 +286769,7 @@ def index_synacktiv_get( @validate_call - def index_synacktiv_get_with_http_info( + def index_symfony_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286807,10 +286807,10 @@ def index_synacktiv_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination]: - """Return vulnerability data stored in index \"synacktiv\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination]: + """Return vulnerability data stored in index \"symfony\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` :param page: set the page number of the response :type page: int @@ -286882,7 +286882,7 @@ def index_synacktiv_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synacktiv_get_serialize( + _param = self._index_symfony_get_serialize( page=page, limit=limit, cursor=cursor, @@ -286914,7 +286914,7 @@ def index_synacktiv_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", '404': "str", '500': "str", } @@ -286930,7 +286930,7 @@ def index_synacktiv_get_with_http_info( @validate_call - def index_synacktiv_get_without_preload_content( + def index_symfony_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -286969,9 +286969,9 @@ def index_synacktiv_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"synacktiv\" + """Return vulnerability data stored in index \"symfony\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the symfony index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Symfony Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/symfony?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/symfony?cursor=` :param page: set the page number of the response :type page: int @@ -287043,7 +287043,7 @@ def index_synacktiv_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synacktiv_get_serialize( + _param = self._index_symfony_get_serialize( page=page, limit=limit, cursor=cursor, @@ -287075,7 +287075,7 @@ def index_synacktiv_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySymfonyPaginatePagination", '404': "str", '500': "str", } @@ -287086,7 +287086,7 @@ def index_synacktiv_get_without_preload_content( return response_data.response - def _index_synacktiv_get_serialize( + def _index_symfony_get_serialize( self, page, limit, @@ -287254,7 +287254,7 @@ def _index_synacktiv_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/synacktiv', + resource_path='/v3/index/symfony', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -287271,7 +287271,7 @@ def _index_synacktiv_get_serialize( @validate_call - def index_syncrosoft_get( + def index_synacktiv_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -287309,10 +287309,10 @@ def index_syncrosoft_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination: - """Return vulnerability data stored in index \"syncrosoft\" + ) -> RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination: + """Return vulnerability data stored in index \"synacktiv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` :param page: set the page number of the response :type page: int @@ -287384,7 +287384,7 @@ def index_syncrosoft_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syncrosoft_get_serialize( + _param = self._index_synacktiv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -287416,7 +287416,7 @@ def index_syncrosoft_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", '404': "str", '500': "str", } @@ -287432,7 +287432,7 @@ def index_syncrosoft_get( @validate_call - def index_syncrosoft_get_with_http_info( + def index_synacktiv_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -287470,10 +287470,10 @@ def index_syncrosoft_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination]: - """Return vulnerability data stored in index \"syncrosoft\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination]: + """Return vulnerability data stored in index \"synacktiv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` :param page: set the page number of the response :type page: int @@ -287545,7 +287545,7 @@ def index_syncrosoft_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syncrosoft_get_serialize( + _param = self._index_synacktiv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -287577,7 +287577,7 @@ def index_syncrosoft_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", '404': "str", '500': "str", } @@ -287593,7 +287593,7 @@ def index_syncrosoft_get_with_http_info( @validate_call - def index_syncrosoft_get_without_preload_content( + def index_synacktiv_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -287632,9 +287632,9 @@ def index_syncrosoft_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"syncrosoft\" + """Return vulnerability data stored in index \"synacktiv\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synacktiv index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synacktiv Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synacktiv?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synacktiv?cursor=` :param page: set the page number of the response :type page: int @@ -287706,7 +287706,7 @@ def index_syncrosoft_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syncrosoft_get_serialize( + _param = self._index_synacktiv_get_serialize( page=page, limit=limit, cursor=cursor, @@ -287738,7 +287738,7 @@ def index_syncrosoft_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynacktivPaginatePagination", '404': "str", '500': "str", } @@ -287749,7 +287749,7 @@ def index_syncrosoft_get_without_preload_content( return response_data.response - def _index_syncrosoft_get_serialize( + def _index_synacktiv_get_serialize( self, page, limit, @@ -287917,7 +287917,7 @@ def _index_syncrosoft_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/syncrosoft', + resource_path='/v3/index/synacktiv', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -287934,7 +287934,7 @@ def _index_syncrosoft_get_serialize( @validate_call - def index_synology_get( + def index_syncrosoft_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -287972,10 +287972,10 @@ def index_synology_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination: - """Return vulnerability data stored in index \"synology\" + ) -> RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination: + """Return vulnerability data stored in index \"syncrosoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` :param page: set the page number of the response :type page: int @@ -288047,7 +288047,7 @@ def index_synology_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synology_get_serialize( + _param = self._index_syncrosoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288079,7 +288079,7 @@ def index_synology_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", '404': "str", '500': "str", } @@ -288095,7 +288095,7 @@ def index_synology_get( @validate_call - def index_synology_get_with_http_info( + def index_syncrosoft_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288133,10 +288133,10 @@ def index_synology_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination]: - """Return vulnerability data stored in index \"synology\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination]: + """Return vulnerability data stored in index \"syncrosoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` :param page: set the page number of the response :type page: int @@ -288208,7 +288208,7 @@ def index_synology_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synology_get_serialize( + _param = self._index_syncrosoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288240,7 +288240,7 @@ def index_synology_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", '404': "str", '500': "str", } @@ -288256,7 +288256,7 @@ def index_synology_get_with_http_info( @validate_call - def index_synology_get_without_preload_content( + def index_syncrosoft_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288295,9 +288295,9 @@ def index_synology_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"synology\" + """Return vulnerability data stored in index \"syncrosoft\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syncrosoft index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** SyncroSoft Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syncrosoft?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syncrosoft?cursor=` :param page: set the page number of the response :type page: int @@ -288369,7 +288369,7 @@ def index_synology_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_synology_get_serialize( + _param = self._index_syncrosoft_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288401,7 +288401,7 @@ def index_synology_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyncroSoftPaginatePagination", '404': "str", '500': "str", } @@ -288412,7 +288412,7 @@ def index_synology_get_without_preload_content( return response_data.response - def _index_synology_get_serialize( + def _index_syncrosoft_get_serialize( self, page, limit, @@ -288580,7 +288580,7 @@ def _index_synology_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/synology', + resource_path='/v3/index/syncrosoft', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -288597,7 +288597,7 @@ def _index_synology_get_serialize( @validate_call - def index_syss_get( + def index_synology_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288635,10 +288635,10 @@ def index_syss_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination: - """Return vulnerability data stored in index \"syss\" + ) -> RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination: + """Return vulnerability data stored in index \"synology\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` :param page: set the page number of the response :type page: int @@ -288710,7 +288710,7 @@ def index_syss_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syss_get_serialize( + _param = self._index_synology_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288742,7 +288742,7 @@ def index_syss_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", '404': "str", '500': "str", } @@ -288758,7 +288758,7 @@ def index_syss_get( @validate_call - def index_syss_get_with_http_info( + def index_synology_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288796,10 +288796,10 @@ def index_syss_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination]: - """Return vulnerability data stored in index \"syss\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination]: + """Return vulnerability data stored in index \"synology\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` :param page: set the page number of the response :type page: int @@ -288871,7 +288871,7 @@ def index_syss_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syss_get_serialize( + _param = self._index_synology_get_serialize( page=page, limit=limit, cursor=cursor, @@ -288903,7 +288903,7 @@ def index_syss_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", '404': "str", '500': "str", } @@ -288919,7 +288919,7 @@ def index_syss_get_with_http_info( @validate_call - def index_syss_get_without_preload_content( + def index_synology_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -288958,9 +288958,9 @@ def index_syss_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"syss\" + """Return vulnerability data stored in index \"synology\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the synology index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Synology Product Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/synology?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/synology?cursor=` :param page: set the page number of the response :type page: int @@ -289032,7 +289032,7 @@ def index_syss_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_syss_get_serialize( + _param = self._index_synology_get_serialize( page=page, limit=limit, cursor=cursor, @@ -289064,7 +289064,7 @@ def index_syss_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySynologyPaginatePagination", '404': "str", '500': "str", } @@ -289075,7 +289075,7 @@ def index_syss_get_without_preload_content( return response_data.response - def _index_syss_get_serialize( + def _index_synology_get_serialize( self, page, limit, @@ -289243,7 +289243,7 @@ def _index_syss_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/syss', + resource_path='/v3/index/synology', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -289260,7 +289260,7 @@ def _index_syss_get_serialize( @validate_call - def index_tailscale_get( + def index_syss_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -289298,10 +289298,10 @@ def index_tailscale_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination: - """Return vulnerability data stored in index \"tailscale\" + ) -> RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination: + """Return vulnerability data stored in index \"syss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` :param page: set the page number of the response :type page: int @@ -289373,7 +289373,7 @@ def index_tailscale_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_tailscale_get_serialize( + _param = self._index_syss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -289405,7 +289405,7 @@ def index_tailscale_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", '404': "str", '500': "str", } @@ -289421,7 +289421,7 @@ def index_tailscale_get( @validate_call - def index_tailscale_get_with_http_info( + def index_syss_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -289459,10 +289459,10 @@ def index_tailscale_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination]: - """Return vulnerability data stored in index \"tailscale\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination]: + """Return vulnerability data stored in index \"syss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` :param page: set the page number of the response :type page: int @@ -289534,7 +289534,7 @@ def index_tailscale_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_tailscale_get_serialize( + _param = self._index_syss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -289566,7 +289566,7 @@ def index_tailscale_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", '404': "str", '500': "str", } @@ -289582,7 +289582,7 @@ def index_tailscale_get_with_http_info( @validate_call - def index_tailscale_get_without_preload_content( + def index_syss_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -289621,9 +289621,9 @@ def index_tailscale_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"tailscale\" + """Return vulnerability data stored in index \"syss\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the syss index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Syss Security Advisories ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/syss?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/syss?cursor=` :param page: set the page number of the response :type page: int @@ -289695,7 +289695,7 @@ def index_tailscale_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_tailscale_get_serialize( + _param = self._index_syss_get_serialize( page=page, limit=limit, cursor=cursor, @@ -289727,7 +289727,7 @@ def index_tailscale_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisorySyssPaginatePagination", '404': "str", '500': "str", } @@ -289738,7 +289738,7 @@ def index_tailscale_get_without_preload_content( return response_data.response - def _index_tailscale_get_serialize( + def _index_syss_get_serialize( self, page, limit, @@ -289906,7 +289906,7 @@ def _index_tailscale_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/tailscale', + resource_path='/v3/index/syss', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -289923,7 +289923,7 @@ def _index_tailscale_get_serialize( @validate_call - def index_target_intel_cve_summary_get( + def index_tailscale_get( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -289961,10 +289961,10 @@ def index_target_intel_cve_summary_get( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination: - """Return vulnerability data stored in index \"target-intel-cve-summary\" + ) -> RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination: + """Return vulnerability data stored in index \"tailscale\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the target-intel-cve-summary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Target Intelligence CVE Summary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel-cve-summary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/target-intel-cve-summary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` :param page: set the page number of the response :type page: int @@ -290036,7 +290036,7 @@ def index_target_intel_cve_summary_get( :return: Returns the result object. """ # noqa: E501 - _param = self._index_target_intel_cve_summary_get_serialize( + _param = self._index_tailscale_get_serialize( page=page, limit=limit, cursor=cursor, @@ -290068,7 +290068,7 @@ def index_target_intel_cve_summary_get( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", '404': "str", '500': "str", } @@ -290084,7 +290084,7 @@ def index_target_intel_cve_summary_get( @validate_call - def index_target_intel_cve_summary_get_with_http_info( + def index_tailscale_get_with_http_info( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -290122,10 +290122,10 @@ def index_target_intel_cve_summary_get_with_http_info( _content_type: Optional[StrictStr] = None, _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, - ) -> ApiResponse[RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination]: - """Return vulnerability data stored in index \"target-intel-cve-summary\" + ) -> ApiResponse[RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination]: + """Return vulnerability data stored in index \"tailscale\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the target-intel-cve-summary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Target Intelligence CVE Summary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel-cve-summary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/target-intel-cve-summary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` :param page: set the page number of the response :type page: int @@ -290197,7 +290197,7 @@ def index_target_intel_cve_summary_get_with_http_info( :return: Returns the result object. """ # noqa: E501 - _param = self._index_target_intel_cve_summary_get_serialize( + _param = self._index_tailscale_get_serialize( page=page, limit=limit, cursor=cursor, @@ -290229,7 +290229,7 @@ def index_target_intel_cve_summary_get_with_http_info( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", '404': "str", '500': "str", } @@ -290245,7 +290245,7 @@ def index_target_intel_cve_summary_get_with_http_info( @validate_call - def index_target_intel_cve_summary_get_without_preload_content( + def index_tailscale_get_without_preload_content( self, page: Annotated[Optional[StrictInt], Field(description="set the page number of the response")] = None, limit: Annotated[Optional[StrictInt], Field(description="limit the number of findings in the response")] = None, @@ -290284,9 +290284,9 @@ def index_target_intel_cve_summary_get_without_preload_content( _headers: Optional[Dict[StrictStr, Any]] = None, _host_index: Annotated[StrictInt, Field(ge=0, le=1)] = 0, ) -> RESTResponseType: - """Return vulnerability data stored in index \"target-intel-cve-summary\" + """Return vulnerability data stored in index \"tailscale\" - ### Overview This endpoint allows you to retrieve a paginated list of all documents from the target-intel-cve-summary index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** VulnCheck Target Intelligence CVE Summary ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/target-intel-cve-summary?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/target-intel-cve-summary?cursor=` + ### Overview This endpoint allows you to retrieve a paginated list of all documents from the tailscale index. \\ By default, a maximum of 100 documents are shown per page. **Index Description:** Tailscale Security Bulletins ### Paging Over Large Data (cursor) In order to allow users to iterate over large index datasets, this endpoint provides a server-side \"cursor\" mechanism. To use the cursor, first call `GET /index/tailscale?start_cursor`, the response will have a `next_cursor` id that clients will need to pass as a query parameter to the next request like `GET /index/tailscale?cursor=` :param page: set the page number of the response :type page: int @@ -290358,7 +290358,7 @@ def index_target_intel_cve_summary_get_without_preload_content( :return: Returns the result object. """ # noqa: E501 - _param = self._index_target_intel_cve_summary_get_serialize( + _param = self._index_tailscale_get_serialize( page=page, limit=limit, cursor=cursor, @@ -290390,7 +290390,7 @@ def index_target_intel_cve_summary_get_without_preload_content( ) _response_types_map: Dict[str, Optional[str]] = { - '200': "RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination", + '200': "RenderResponseWithMetadataArrayAdvisoryTailscalePaginatePagination", '404': "str", '500': "str", } @@ -290401,7 +290401,7 @@ def index_target_intel_cve_summary_get_without_preload_content( return response_data.response - def _index_target_intel_cve_summary_get_serialize( + def _index_tailscale_get_serialize( self, page, limit, @@ -290569,7 +290569,7 @@ def _index_target_intel_cve_summary_get_serialize( return self.api_client.param_serialize( method='GET', - resource_path='/v3/index/target-intel-cve-summary', + resource_path='/v3/index/tailscale', path_params=_path_params, query_params=_query_params, header_params=_header_params, @@ -290599,16 +290599,18 @@ def index_target_intel_get( country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, cpe: Annotated[Optional[StrictStr], Field(description="CPE string")] = None, vendor: Annotated[Optional[StrictStr], Field(description="Vendor name")] = None, product: Annotated[Optional[StrictStr], Field(description="Product name")] = None, version: Annotated[Optional[StrictStr], Field(description="Product version")] = None, protocol: Annotated[Optional[StrictStr], Field(description="Protocol")] = None, + transport: Annotated[Optional[StrictStr], Field(description="Transport (tcp/udp)")] = None, port: Annotated[Optional[StrictStr], Field(description="Port number")] = None, contains_cve: Annotated[Optional[StrictBool], Field(description="Filter to records that have (true) or do not have (false) an associated CVE")] = None, + confirmed: Annotated[Optional[StrictBool], Field(description="Filter to records with at least one CVE match that is (true) or is not (false) confirmed")] = None, classifications: Annotated[Optional[StrictStr], Field(description="Match one or more classification values")] = None, hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the hostname")] = None, + domain: Annotated[Optional[StrictStr], Field(description="Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix)")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -290655,8 +290657,6 @@ def index_target_intel_get( :type country_code: str :param asn: Autonomous system number :type asn: str - :param id: Record type - :type id: str :param cpe: CPE string :type cpe: str :param vendor: Vendor name @@ -290667,14 +290667,20 @@ def index_target_intel_get( :type version: str :param protocol: Protocol :type protocol: str + :param transport: Transport (tcp/udp) + :type transport: str :param port: Port number :type port: str :param contains_cve: Filter to records that have (true) or do not have (false) an associated CVE :type contains_cve: bool + :param confirmed: Filter to records with at least one CVE match that is (true) or is not (false) confirmed + :type confirmed: bool :param classifications: Match one or more classification values :type classifications: str :param hostname: Match a string in the hostname :type hostname: str + :param domain: Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix) + :type domain: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -290723,16 +290729,18 @@ def index_target_intel_get( country=country, country_code=country_code, asn=asn, - id=id, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, + transport=transport, port=port, contains_cve=contains_cve, + confirmed=confirmed, classifications=classifications, hostname=hostname, + domain=domain, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -290776,16 +290784,18 @@ def index_target_intel_get_with_http_info( country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, cpe: Annotated[Optional[StrictStr], Field(description="CPE string")] = None, vendor: Annotated[Optional[StrictStr], Field(description="Vendor name")] = None, product: Annotated[Optional[StrictStr], Field(description="Product name")] = None, version: Annotated[Optional[StrictStr], Field(description="Product version")] = None, protocol: Annotated[Optional[StrictStr], Field(description="Protocol")] = None, + transport: Annotated[Optional[StrictStr], Field(description="Transport (tcp/udp)")] = None, port: Annotated[Optional[StrictStr], Field(description="Port number")] = None, contains_cve: Annotated[Optional[StrictBool], Field(description="Filter to records that have (true) or do not have (false) an associated CVE")] = None, + confirmed: Annotated[Optional[StrictBool], Field(description="Filter to records with at least one CVE match that is (true) or is not (false) confirmed")] = None, classifications: Annotated[Optional[StrictStr], Field(description="Match one or more classification values")] = None, hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the hostname")] = None, + domain: Annotated[Optional[StrictStr], Field(description="Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix)")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -290832,8 +290842,6 @@ def index_target_intel_get_with_http_info( :type country_code: str :param asn: Autonomous system number :type asn: str - :param id: Record type - :type id: str :param cpe: CPE string :type cpe: str :param vendor: Vendor name @@ -290844,14 +290852,20 @@ def index_target_intel_get_with_http_info( :type version: str :param protocol: Protocol :type protocol: str + :param transport: Transport (tcp/udp) + :type transport: str :param port: Port number :type port: str :param contains_cve: Filter to records that have (true) or do not have (false) an associated CVE :type contains_cve: bool + :param confirmed: Filter to records with at least one CVE match that is (true) or is not (false) confirmed + :type confirmed: bool :param classifications: Match one or more classification values :type classifications: str :param hostname: Match a string in the hostname :type hostname: str + :param domain: Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix) + :type domain: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -290900,16 +290914,18 @@ def index_target_intel_get_with_http_info( country=country, country_code=country_code, asn=asn, - id=id, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, + transport=transport, port=port, contains_cve=contains_cve, + confirmed=confirmed, classifications=classifications, hostname=hostname, + domain=domain, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -290953,16 +290969,18 @@ def index_target_intel_get_without_preload_content( country: Annotated[Optional[StrictStr], Field(description="Country name ISO-3166?? format")] = None, country_code: Annotated[Optional[StrictStr], Field(description="Country code in ISO-3166?? format")] = None, asn: Annotated[Optional[StrictStr], Field(description="Autonomous system number")] = None, - id: Annotated[Optional[StrictStr], Field(description="Record type")] = None, cpe: Annotated[Optional[StrictStr], Field(description="CPE string")] = None, vendor: Annotated[Optional[StrictStr], Field(description="Vendor name")] = None, product: Annotated[Optional[StrictStr], Field(description="Product name")] = None, version: Annotated[Optional[StrictStr], Field(description="Product version")] = None, protocol: Annotated[Optional[StrictStr], Field(description="Protocol")] = None, + transport: Annotated[Optional[StrictStr], Field(description="Transport (tcp/udp)")] = None, port: Annotated[Optional[StrictStr], Field(description="Port number")] = None, contains_cve: Annotated[Optional[StrictBool], Field(description="Filter to records that have (true) or do not have (false) an associated CVE")] = None, + confirmed: Annotated[Optional[StrictBool], Field(description="Filter to records with at least one CVE match that is (true) or is not (false) confirmed")] = None, classifications: Annotated[Optional[StrictStr], Field(description="Match one or more classification values")] = None, hostname: Annotated[Optional[StrictStr], Field(description="Match a string in the hostname")] = None, + domain: Annotated[Optional[StrictStr], Field(description="Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix)")] = None, date: Annotated[Optional[StrictStr], Field(description="Specify an exact published date to filter with.")] = None, updated_at_start_date: Annotated[Optional[StrictStr], Field(description="Specify a starting 'updated-at' date to filter with.")] = None, updated_at_end_date: Annotated[Optional[StrictStr], Field(description="Specify an ending 'updated-at' date to filter with.")] = None, @@ -291009,8 +291027,6 @@ def index_target_intel_get_without_preload_content( :type country_code: str :param asn: Autonomous system number :type asn: str - :param id: Record type - :type id: str :param cpe: CPE string :type cpe: str :param vendor: Vendor name @@ -291021,14 +291037,20 @@ def index_target_intel_get_without_preload_content( :type version: str :param protocol: Protocol :type protocol: str + :param transport: Transport (tcp/udp) + :type transport: str :param port: Port number :type port: str :param contains_cve: Filter to records that have (true) or do not have (false) an associated CVE :type contains_cve: bool + :param confirmed: Filter to records with at least one CVE match that is (true) or is not (false) confirmed + :type confirmed: bool :param classifications: Match one or more classification values :type classifications: str :param hostname: Match a string in the hostname :type hostname: str + :param domain: Match one or more domains (comma-delimited) against as_domain (exact), and hostname/TLS certificate fields (suffix) + :type domain: str :param date: Specify an exact published date to filter with. :type date: str :param updated_at_start_date: Specify a starting 'updated-at' date to filter with. @@ -291077,16 +291099,18 @@ def index_target_intel_get_without_preload_content( country=country, country_code=country_code, asn=asn, - id=id, cpe=cpe, vendor=vendor, product=product, version=version, protocol=protocol, + transport=transport, port=port, contains_cve=contains_cve, + confirmed=confirmed, classifications=classifications, hostname=hostname, + domain=domain, date=date, updated_at_start_date=updated_at_start_date, updated_at_end_date=updated_at_end_date, @@ -291125,16 +291149,18 @@ def _index_target_intel_get_serialize( country, country_code, asn, - id, cpe, vendor, product, version, protocol, + transport, port, contains_cve, + confirmed, classifications, hostname, + domain, date, updated_at_start_date, updated_at_end_date, @@ -291211,10 +291237,6 @@ def _index_target_intel_get_serialize( _query_params.append(('asn', asn)) - if id is not None: - - _query_params.append(('id', id)) - if cpe is not None: _query_params.append(('cpe', cpe)) @@ -291235,6 +291257,10 @@ def _index_target_intel_get_serialize( _query_params.append(('protocol', protocol)) + if transport is not None: + + _query_params.append(('transport', transport)) + if port is not None: _query_params.append(('port', port)) @@ -291243,6 +291269,10 @@ def _index_target_intel_get_serialize( _query_params.append(('contains_cve', contains_cve)) + if confirmed is not None: + + _query_params.append(('confirmed', confirmed)) + if classifications is not None: _query_params.append(('classifications', classifications)) @@ -291251,6 +291281,10 @@ def _index_target_intel_get_serialize( _query_params.append(('hostname', hostname)) + if domain is not None: + + _query_params.append(('domain', domain)) + if date is not None: _query_params.append(('date', date)) diff --git a/vulncheck_sdk/api_client.py b/vulncheck_sdk/api_client.py index 10fdbef6..a4df2d4e 100644 --- a/vulncheck_sdk/api_client.py +++ b/vulncheck_sdk/api_client.py @@ -92,7 +92,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/0.0.51/python' + self.user_agent = 'OpenAPI-Generator/0.0.52/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/vulncheck_sdk/configuration.py b/vulncheck_sdk/configuration.py index 25f00c37..4f6b92d4 100644 --- a/vulncheck_sdk/configuration.py +++ b/vulncheck_sdk/configuration.py @@ -537,7 +537,7 @@ def to_debug_report(self) -> str: "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: latest\n"\ - "SDK Package Version: 0.0.51".\ + "SDK Package Version: 0.0.52".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self) -> List[HostSetting]: diff --git a/vulncheck_sdk/models/__init__.py b/vulncheck_sdk/models/__init__.py index 9ec90969..98c06ae3 100644 --- a/vulncheck_sdk/models/__init__.py +++ b/vulncheck_sdk/models/__init__.py @@ -66,6 +66,7 @@ from vulncheck_sdk.models.advisory_android_package import AdvisoryAndroidPackage from vulncheck_sdk.models.advisory_android_range import AdvisoryAndroidRange from vulncheck_sdk.models.advisory_android_reference import AdvisoryAndroidReference +from vulncheck_sdk.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD from vulncheck_sdk.models.advisory_apache_active_mq import AdvisoryApacheActiveMQ from vulncheck_sdk.models.advisory_apache_archiva import AdvisoryApacheArchiva from vulncheck_sdk.models.advisory_apache_arrow import AdvisoryApacheArrow @@ -158,6 +159,8 @@ from vulncheck_sdk.models.advisory_csaf_relationship import AdvisoryCSAFRelationship from vulncheck_sdk.models.advisory_csaf_score import AdvisoryCSAFScore from vulncheck_sdk.models.advisory_csaf_vulnerability import AdvisoryCSAFVulnerability +from vulncheck_sdk.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare +from vulncheck_sdk.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot from vulncheck_sdk.models.advisory_cve_detail import AdvisoryCVEDetail from vulncheck_sdk.models.advisory_cve_details_link import AdvisoryCVEDetailsLink from vulncheck_sdk.models.advisory_cve_identity_mappings import AdvisoryCVEIdentityMappings @@ -792,10 +795,12 @@ from vulncheck_sdk.models.advisory_zyxel import AdvisoryZyxel from vulncheck_sdk.models.api_base_metric_v2 import ApiBaseMetricV2 from vulncheck_sdk.models.api_base_metric_v3 import ApiBaseMetricV3 +from vulncheck_sdk.models.api_c2_frequency import ApiC2Frequency from vulncheck_sdk.models.api_cpe import ApiCPE from vulncheck_sdk.models.api_cpe_match import ApiCPEMatch from vulncheck_sdk.models.api_cpe_name import ApiCPEName from vulncheck_sdk.models.api_cve import ApiCVE +from vulncheck_sdk.models.api_cve_confirmed import ApiCVEConfirmed from vulncheck_sdk.models.api_cve_data_meta import ApiCVEDataMeta from vulncheck_sdk.models.api_cve_data_meta_extended import ApiCVEDataMetaExtended from vulncheck_sdk.models.api_cve_extended import ApiCVEExtended @@ -826,6 +831,8 @@ from vulncheck_sdk.models.api_impact_extended import ApiImpactExtended from vulncheck_sdk.models.api_initial_access import ApiInitialAccess from vulncheck_sdk.models.api_initial_access_artifact import ApiInitialAccessArtifact +from vulncheck_sdk.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit +from vulncheck_sdk.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag from vulncheck_sdk.models.api_mitre_attack_tech import ApiMitreAttackTech from vulncheck_sdk.models.api_mitre_attack_to_cve import ApiMitreAttackToCVE from vulncheck_sdk.models.api_mitre_d3fend_technique import ApiMitreD3fendTechnique @@ -879,9 +886,6 @@ from vulncheck_sdk.models.api_related_attack_pattern import ApiRelatedAttackPattern from vulncheck_sdk.models.api_ssvc import ApiSSVC from vulncheck_sdk.models.api_target_intel import ApiTargetIntel -from vulncheck_sdk.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary -from vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner -from vulncheck_sdk.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner from vulncheck_sdk.models.api_temporal_cvssv2 import ApiTemporalCVSSV2 from vulncheck_sdk.models.api_temporal_cvssv3 import ApiTemporalCVSSV3 from vulncheck_sdk.models.api_temporal_metric_v2 import ApiTemporalMetricV2 @@ -932,6 +936,7 @@ from vulncheck_sdk.models.render_response_with_metadata_array_advisory_amazon_cve_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAmazonCVEPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anchore_nvd_override_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnchoreNVDOverridePaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_android_advisory_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAndroidAdvisoryPaginatePagination +from vulncheck_sdk.models.render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_active_mq_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheActiveMQPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_archiva_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArchivaPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_advisory_apache_arrow_paginate_pagination import RenderResponseWithMetadataArrayAdvisoryApacheArrowPaginatePagination @@ -1378,7 +1383,6 @@ from vulncheck_sdk.models.render_response_with_metadata_array_api_nvd20_cve_extended_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEExtendedPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_nvd20_cve_paginate_pagination import RenderResponseWithMetadataArrayApiNVD20CVEPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_oss_package_paginate_pagination import RenderResponseWithMetadataArrayApiOSSPackagePaginatePagination -from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_target_intel_paginate_pagination import RenderResponseWithMetadataArrayApiTargetIntelPaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_update_paginate_pagination import RenderResponseWithMetadataArrayApiUpdatePaginatePagination from vulncheck_sdk.models.render_response_with_metadata_array_api_vuln_check_canary_paginate_pagination import RenderResponseWithMetadataArrayApiVulnCheckCanaryPaginatePagination diff --git a/vulncheck_sdk/models/advisory_anthropic_cvd.py b/vulncheck_sdk/models/advisory_anthropic_cvd.py new file mode 100644 index 00000000..9f5404c5 --- /dev/null +++ b/vulncheck_sdk/models/advisory_anthropic_cvd.py @@ -0,0 +1,138 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.models.advisory_credit import AdvisoryCredit +from vulncheck_sdk.models.advisory_cvd_severity_compare import AdvisoryCVDSeverityCompare +from vulncheck_sdk.models.advisory_cvd_snapshot import AdvisoryCVDSnapshot +from vulncheck_sdk.models.advisory_timeline import AdvisoryTimeline +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryAnthropicCVD(BaseModel): + """ + advisory.AnthropicCVD + """ # noqa: E501 + attribution: Optional[AdvisoryCredit] = None + bug_class: Optional[StrictStr] = None + cve: Optional[List[StrictStr]] = None + date_added: Optional[StrictStr] = None + date_committed: Optional[StrictStr] = None + entry: Optional[List[StrictInt]] = None + ghsa: Optional[List[StrictStr]] = None + hash: Optional[StrictStr] = None + project: Optional[StrictStr] = None + raw_preimage: Optional[List[StrictInt]] = None + severities: Optional[AdvisoryCVDSeverityCompare] = None + snapshot: Optional[AdvisoryCVDSnapshot] = None + status: Optional[StrictStr] = None + timeline: Optional[List[AdvisoryTimeline]] = Field(default=None, description="Timeline / Attribution / Severities come from the detail-page HTML (parsed at ingest, not from any JSON document). Revealed-only.") + updated_at: Optional[StrictStr] = None + url: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["attribution", "bug_class", "cve", "date_added", "date_committed", "entry", "ghsa", "hash", "project", "raw_preimage", "severities", "snapshot", "status", "timeline", "updated_at", "url"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryAnthropicCVD from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of attribution + if self.attribution: + _dict['attribution'] = self.attribution.to_dict() + # override the default output from pydantic by calling `to_dict()` of severities + if self.severities: + _dict['severities'] = self.severities.to_dict() + # override the default output from pydantic by calling `to_dict()` of snapshot + if self.snapshot: + _dict['snapshot'] = self.snapshot.to_dict() + # override the default output from pydantic by calling `to_dict()` of each item in timeline (list) + _items = [] + if self.timeline: + for _item_timeline in self.timeline: + if _item_timeline: + _items.append(_item_timeline.to_dict()) + _dict['timeline'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryAnthropicCVD from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "attribution": AdvisoryCredit.from_dict(obj["attribution"]) if obj.get("attribution") is not None else None, + "bug_class": obj.get("bug_class"), + "cve": obj.get("cve"), + "date_added": obj.get("date_added"), + "date_committed": obj.get("date_committed"), + "entry": obj.get("entry"), + "ghsa": obj.get("ghsa"), + "hash": obj.get("hash"), + "project": obj.get("project"), + "raw_preimage": obj.get("raw_preimage"), + "severities": AdvisoryCVDSeverityCompare.from_dict(obj["severities"]) if obj.get("severities") is not None else None, + "snapshot": AdvisoryCVDSnapshot.from_dict(obj["snapshot"]) if obj.get("snapshot") is not None else None, + "status": obj.get("status"), + "timeline": [AdvisoryTimeline.from_dict(_item) for _item in obj["timeline"]] if obj.get("timeline") is not None else None, + "updated_at": obj.get("updated_at"), + "url": obj.get("url") + }) + return _obj + + diff --git a/vulncheck_sdk/models/advisory_avidml_advs.py b/vulncheck_sdk/models/advisory_avidml_advs.py index 71db98ba..72a2e25e 100644 --- a/vulncheck_sdk/models/advisory_avidml_advs.py +++ b/vulncheck_sdk/models/advisory_avidml_advs.py @@ -27,6 +27,7 @@ class AdvisoryAVIDMLAdvs(BaseModel): """ advisory.AVIDMLAdvs """ # noqa: E501 + cve: Optional[List[StrictStr]] = None date_added: Optional[StrictStr] = None description: Optional[StrictStr] = None id: Optional[StrictStr] = None @@ -34,7 +35,7 @@ class AdvisoryAVIDMLAdvs(BaseModel): title: Optional[StrictStr] = None updated_at: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["date_added", "description", "id", "references", "title", "updated_at", "url"] + __properties: ClassVar[List[str]] = ["cve", "date_added", "description", "id", "references", "title", "updated_at", "url"] model_config = ConfigDict( populate_by_name=True, @@ -87,6 +88,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ + "cve": obj.get("cve"), "date_added": obj.get("date_added"), "description": obj.get("description"), "id": obj.get("id"), diff --git a/vulncheck_sdk/models/advisory_cvd_severity_compare.py b/vulncheck_sdk/models/advisory_cvd_severity_compare.py new file mode 100644 index 00000000..2b40f5a7 --- /dev/null +++ b/vulncheck_sdk/models/advisory_cvd_severity_compare.py @@ -0,0 +1,92 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryCVDSeverityCompare(BaseModel): + """ + advisory.CVDSeverityCompare + """ # noqa: E501 + claude: Optional[StrictStr] = None + maintainer: Optional[StrictStr] = None + security_research_firm: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["claude", "maintainer", "security_research_firm"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryCVDSeverityCompare from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryCVDSeverityCompare from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "claude": obj.get("claude"), + "maintainer": obj.get("maintainer"), + "security_research_firm": obj.get("security_research_firm") + }) + return _obj + + diff --git a/vulncheck_sdk/models/advisory_cvd_snapshot.py b/vulncheck_sdk/models/advisory_cvd_snapshot.py new file mode 100644 index 00000000..cb7637dc --- /dev/null +++ b/vulncheck_sdk/models/advisory_cvd_snapshot.py @@ -0,0 +1,94 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class AdvisoryCVDSnapshot(BaseModel): + """ + Snapshot provenance — which payload.json snapshot this record came from. ManifestSHA3 + Revision + AsOf are stable per-snapshot. + """ # noqa: E501 + as_of: Optional[StrictStr] = None + fetched_at: Optional[StrictStr] = None + manifest_sha3: Optional[StrictStr] = None + revision: Optional[StrictInt] = None + __properties: ClassVar[List[str]] = ["as_of", "fetched_at", "manifest_sha3", "revision"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of AdvisoryCVDSnapshot from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of AdvisoryCVDSnapshot from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "as_of": obj.get("as_of"), + "fetched_at": obj.get("fetched_at"), + "manifest_sha3": obj.get("manifest_sha3"), + "revision": obj.get("revision") + }) + return _obj + + diff --git a/vulncheck_sdk/aio/models/api_target_intel_cve_summary_asns_inner.py b/vulncheck_sdk/models/api_c2_frequency.py similarity index 84% rename from vulncheck_sdk/aio/models/api_target_intel_cve_summary_asns_inner.py rename to vulncheck_sdk/models/api_c2_frequency.py index 94661457..847cdd30 100644 --- a/vulncheck_sdk/aio/models/api_target_intel_cve_summary_asns_inner.py +++ b/vulncheck_sdk/models/api_c2_frequency.py @@ -23,13 +23,13 @@ from typing import Optional, Set from typing_extensions import Self -class ApiTargetIntelCVESummaryAsnsInner(BaseModel): +class ApiC2Frequency(BaseModel): """ - ApiTargetIntelCVESummaryAsnsInner + api.C2Frequency """ # noqa: E501 count: Optional[StrictInt] = None - value: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["count", "value"] + src: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["count", "src"] model_config = ConfigDict( populate_by_name=True, @@ -49,7 +49,7 @@ def to_json(self) -> str: @classmethod def from_json(cls, json_str: str) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummaryAsnsInner from a JSON string""" + """Create an instance of ApiC2Frequency from a JSON string""" return cls.from_dict(json.loads(json_str)) def to_dict(self) -> Dict[str, Any]: @@ -74,7 +74,7 @@ def to_dict(self) -> Dict[str, Any]: @classmethod def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummaryAsnsInner from a dict""" + """Create an instance of ApiC2Frequency from a dict""" if obj is None: return None @@ -83,7 +83,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "count": obj.get("count"), - "value": obj.get("value") + "src": obj.get("src") }) return _obj diff --git a/vulncheck_sdk/models/api_target_intel_cve_summary_ports_inner.py b/vulncheck_sdk/models/api_cve_confirmed.py similarity index 79% rename from vulncheck_sdk/models/api_target_intel_cve_summary_ports_inner.py rename to vulncheck_sdk/models/api_cve_confirmed.py index e7efa4b3..e3809d1b 100644 --- a/vulncheck_sdk/models/api_target_intel_cve_summary_ports_inner.py +++ b/vulncheck_sdk/models/api_cve_confirmed.py @@ -18,18 +18,18 @@ import re # noqa: F401 import json -from pydantic import BaseModel, ConfigDict, StrictInt +from pydantic import BaseModel, ConfigDict, StrictBool, StrictStr from typing import Any, ClassVar, Dict, List, Optional from typing import Optional, Set from typing_extensions import Self -class ApiTargetIntelCVESummaryPortsInner(BaseModel): +class ApiCVEConfirmed(BaseModel): """ - ApiTargetIntelCVESummaryPortsInner + api.CVEConfirmed """ # noqa: E501 - count: Optional[StrictInt] = None - value: Optional[StrictInt] = None - __properties: ClassVar[List[str]] = ["count", "value"] + confirmed: Optional[StrictBool] = None + cve_id: Optional[StrictStr] = None + __properties: ClassVar[List[str]] = ["confirmed", "cve_id"] model_config = ConfigDict( populate_by_name=True, @@ -49,7 +49,7 @@ def to_json(self) -> str: @classmethod def from_json(cls, json_str: str) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummaryPortsInner from a JSON string""" + """Create an instance of ApiCVEConfirmed from a JSON string""" return cls.from_dict(json.loads(json_str)) def to_dict(self) -> Dict[str, Any]: @@ -74,7 +74,7 @@ def to_dict(self) -> Dict[str, Any]: @classmethod def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummaryPortsInner from a dict""" + """Create an instance of ApiCVEConfirmed from a dict""" if obj is None: return None @@ -82,8 +82,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ - "count": obj.get("count"), - "value": obj.get("value") + "confirmed": obj.get("confirmed"), + "cve_id": obj.get("cve_id") }) return _obj diff --git a/vulncheck_sdk/models/api_http_details.py b/vulncheck_sdk/models/api_http_details.py index 21fba4ee..2e47868a 100644 --- a/vulncheck_sdk/models/api_http_details.py +++ b/vulncheck_sdk/models/api_http_details.py @@ -27,12 +27,12 @@ class ApiHTTPDetails(BaseModel): """ api.HTTPDetails """ # noqa: E501 + http_method: Optional[StrictStr] = None http_request_body: Optional[StrictStr] = None http_user_agent: Optional[StrictStr] = None - method: Optional[StrictStr] = None protocol: Optional[StrictStr] = None url: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["http_request_body", "http_user_agent", "method", "protocol", "url"] + __properties: ClassVar[List[str]] = ["http_method", "http_request_body", "http_user_agent", "protocol", "url"] model_config = ConfigDict( populate_by_name=True, @@ -85,9 +85,9 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ + "http_method": obj.get("http_method"), "http_request_body": obj.get("http_request_body"), "http_user_agent": obj.get("http_user_agent"), - "method": obj.get("method"), "protocol": obj.get("protocol"), "url": obj.get("url") }) diff --git a/vulncheck_sdk/models/api_initial_access.py b/vulncheck_sdk/models/api_initial_access.py index 4af30d4f..7583eb34 100644 --- a/vulncheck_sdk/models/api_initial_access.py +++ b/vulncheck_sdk/models/api_initial_access.py @@ -30,10 +30,11 @@ class ApiInitialAccess(BaseModel): """ # noqa: E501 artifacts: Optional[List[ApiInitialAccessArtifact]] = Field(default=None, description="Artifacts holds the set of available artifacts for this vulnerability, such as exploit, shodan queries, PCAP traces, and others.") cve: Optional[StrictStr] = Field(default=None, description="CVE identifier for the given initial access record.") + id: Optional[StrictStr] = Field(default=None, description="ID is the unique identifier for this initial access record.") in_kev: Optional[StrictBool] = Field(default=None, description="InKEV is true if this artifact is in CISA's Known Exploited Vulnerabilities (KEV) data set; otherwise, false.", alias="inKEV") in_vckev: Optional[StrictBool] = Field(default=None, description="InVCKEV is true if this artifact is in VulnCheck's Known Exploited Vulnerabilities (VCKEV) data set; otherwise, false.", alias="inVCKEV") vulnerable_cpes: Optional[List[StrictStr]] = Field(default=None, description="VulnerableCPEs is the list of vulnerable CPE strings associated with this CVE and artifact(s).") - __properties: ClassVar[List[str]] = ["artifacts", "cve", "inKEV", "inVCKEV", "vulnerable_cpes"] + __properties: ClassVar[List[str]] = ["artifacts", "cve", "id", "inKEV", "inVCKEV", "vulnerable_cpes"] model_config = ConfigDict( populate_by_name=True, @@ -95,6 +96,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "artifacts": [ApiInitialAccessArtifact.from_dict(_item) for _item in obj["artifacts"]] if obj.get("artifacts") is not None else None, "cve": obj.get("cve"), + "id": obj.get("id"), "inKEV": obj.get("inKEV"), "inVCKEV": obj.get("inVCKEV"), "vulnerable_cpes": obj.get("vulnerable_cpes") diff --git a/vulncheck_sdk/models/api_initial_access_artifact.py b/vulncheck_sdk/models/api_initial_access_artifact.py index 7f1d0f4d..bb4135c9 100644 --- a/vulncheck_sdk/models/api_initial_access_artifact.py +++ b/vulncheck_sdk/models/api_initial_access_artifact.py @@ -20,6 +20,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.models.api_initial_access_go_exploit import ApiInitialAccessGoExploit from typing import Optional, Set from typing_extensions import Self @@ -43,6 +44,7 @@ class ApiInitialAccessArtifact(BaseModel): exploit: Optional[StrictBool] = Field(default=None, description="Exploit indicates whether or not an exploit is available in this artifact.") fofa_queries: Optional[List[StrictStr]] = Field(default=None, description="FOFAQueries are raw queries for examining potential Internet-exposed devices & applications with FOFA.", alias="fofaQueries") fofa_raw_queries: Optional[List[StrictStr]] = Field(default=None, alias="fofaRawQueries") + goexploit: Optional[ApiInitialAccessGoExploit] = None google_queries: Optional[List[StrictStr]] = Field(default=None, description="google queries", alias="googleQueries") google_raw_queries: Optional[List[StrictStr]] = Field(default=None, description="raw google queries", alias="googleRawQueries") greynoise_queries: Optional[List[StrictStr]] = Field(default=None, description="GreynoiseQueries are queries for finding the vulnerability via honeypot data.", alias="greynoiseQueries") @@ -59,13 +61,14 @@ class ApiInitialAccessArtifact(BaseModel): target_docker: Optional[StrictBool] = Field(default=None, description="TargetDocker indicates whether or not there is an available docker image with the vulnerability.", alias="targetDocker") target_encrypted_comms: Optional[StrictStr] = Field(default=None, description="Encrypted communications?", alias="targetEncryptedComms") target_service: Optional[StrictStr] = Field(default=None, description="TargetService indicates the service (HTTP, FTP, etc) that this exploit targets.", alias="targetService") + vc_target_intel_query: Optional[List[StrictStr]] = Field(default=None, description="VCTargetIntelQuery are URLs to the VulnCheck target intel index for this artifact's vendor/product.", alias="vcTargetIntelQuery") vendor: Optional[StrictStr] = Field(default=None, description="Vendor of the vulnerable product") version_scanner: Optional[StrictBool] = Field(default=None, description="VersionScanner indicates whether or not the exploit PoC can determine if target system is vulnerable without sending exploit payload in this artifact.", alias="versionScanner") yara: Optional[StrictBool] = Field(default=None, description="YARA indicates whether or not a YARA rule designed to detect the exploit on an endpoint exists in this artifact.") zeroday: Optional[StrictBool] = Field(default=None, description="Zeroday indicates whether or not it is a VulnCheck zeroday.") zoom_eye_queries: Optional[List[StrictStr]] = Field(default=None, description="ZoomEyeQueries are raw queries for examining potential Internet-exposed devices & applications with ZoomEye.", alias="zoomEyeQueries") zoom_eye_raw_queries: Optional[List[StrictStr]] = Field(default=None, alias="zoomEyeRawQueries") - __properties: ClassVar[List[str]] = ["artifactName", "artifactsURL", "baiduQueries", "baiduRawQueries", "censysLegacyQueries", "censysLegacyRawQueries", "censysQueries", "censysRawQueries", "chain", "cloneSSHURL", "dateAdded", "driftnetQueries", "driftnetRawQueries", "exploit", "fofaQueries", "fofaRawQueries", "googleQueries", "googleRawQueries", "greynoiseQueries", "mitreAttackTechniques", "nmapScript", "pcap", "product", "related", "shodanQueries", "shodanRawQueries", "sigmaRule", "snortRule", "suricataRule", "targetDocker", "targetEncryptedComms", "targetService", "vendor", "versionScanner", "yara", "zeroday", "zoomEyeQueries", "zoomEyeRawQueries"] + __properties: ClassVar[List[str]] = ["artifactName", "artifactsURL", "baiduQueries", "baiduRawQueries", "censysLegacyQueries", "censysLegacyRawQueries", "censysQueries", "censysRawQueries", "chain", "cloneSSHURL", "dateAdded", "driftnetQueries", "driftnetRawQueries", "exploit", "fofaQueries", "fofaRawQueries", "goexploit", "googleQueries", "googleRawQueries", "greynoiseQueries", "mitreAttackTechniques", "nmapScript", "pcap", "product", "related", "shodanQueries", "shodanRawQueries", "sigmaRule", "snortRule", "suricataRule", "targetDocker", "targetEncryptedComms", "targetService", "vcTargetIntelQuery", "vendor", "versionScanner", "yara", "zeroday", "zoomEyeQueries", "zoomEyeRawQueries"] model_config = ConfigDict( populate_by_name=True, @@ -106,6 +109,9 @@ def to_dict(self) -> Dict[str, Any]: exclude=excluded_fields, exclude_none=True, ) + # override the default output from pydantic by calling `to_dict()` of goexploit + if self.goexploit: + _dict['goexploit'] = self.goexploit.to_dict() return _dict @classmethod @@ -134,6 +140,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "exploit": obj.get("exploit"), "fofaQueries": obj.get("fofaQueries"), "fofaRawQueries": obj.get("fofaRawQueries"), + "goexploit": ApiInitialAccessGoExploit.from_dict(obj["goexploit"]) if obj.get("goexploit") is not None else None, "googleQueries": obj.get("googleQueries"), "googleRawQueries": obj.get("googleRawQueries"), "greynoiseQueries": obj.get("greynoiseQueries"), @@ -150,6 +157,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "targetDocker": obj.get("targetDocker"), "targetEncryptedComms": obj.get("targetEncryptedComms"), "targetService": obj.get("targetService"), + "vcTargetIntelQuery": obj.get("vcTargetIntelQuery"), "vendor": obj.get("vendor"), "versionScanner": obj.get("versionScanner"), "yara": obj.get("yara"), diff --git a/vulncheck_sdk/models/api_initial_access_go_exploit.py b/vulncheck_sdk/models/api_initial_access_go_exploit.py new file mode 100644 index 00000000..567b578a --- /dev/null +++ b/vulncheck_sdk/models/api_initial_access_go_exploit.py @@ -0,0 +1,112 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.models.api_initial_access_go_exploit_custom_flag import ApiInitialAccessGoExploitCustomFlag +from typing import Optional, Set +from typing_extensions import Self + +class ApiInitialAccessGoExploit(BaseModel): + """ + GoExploit holds metadata about the VulnCheck Go exploit module for this artifact, if one exists. + """ # noqa: E501 + asset_detection: Optional[StrictBool] = Field(default=None, description="AssetDetection indicates whether the module can detect the presence of the asset.", alias="assetDetection") + cpe: Optional[List[StrictStr]] = Field(default=None, description="CPE lists the CPE strings for products targeted by this exploit module.") + custom_flags: Optional[List[ApiInitialAccessGoExploitCustomFlag]] = Field(default=None, description="CustomFlags lists any additional flags exposed by the exploit module.", alias="customFlags") + default_port: Optional[StrictInt] = Field(default=None, description="DefaultPort is the default port the exploit targets.", alias="defaultPort") + exploit_type: Optional[StrictStr] = Field(default=None, description="ExploitType is the category of exploit (e.g. CodeExecution, InformationDisclosure).", alias="exploitType") + exploitation: Optional[StrictBool] = Field(default=None, description="Exploitation indicates whether the module can exploit the vulnerability.") + protocol: Optional[StrictStr] = Field(default=None, description="Protocol is the network protocol the exploit targets (e.g. HTTP, TCP).") + supported_c2: Optional[List[StrictStr]] = Field(default=None, description="SupportedC2 lists the C2 server types supported by the exploit module.", alias="supportedC2") + version_scanner: Optional[StrictBool] = Field(default=None, description="VersionScanner indicates whether the module can determine if the target is vulnerable without sending an exploit payload.", alias="versionScanner") + __properties: ClassVar[List[str]] = ["assetDetection", "cpe", "customFlags", "defaultPort", "exploitType", "exploitation", "protocol", "supportedC2", "versionScanner"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of ApiInitialAccessGoExploit from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + # override the default output from pydantic by calling `to_dict()` of each item in custom_flags (list) + _items = [] + if self.custom_flags: + for _item_custom_flags in self.custom_flags: + if _item_custom_flags: + _items.append(_item_custom_flags.to_dict()) + _dict['customFlags'] = _items + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of ApiInitialAccessGoExploit from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "assetDetection": obj.get("assetDetection"), + "cpe": obj.get("cpe"), + "customFlags": [ApiInitialAccessGoExploitCustomFlag.from_dict(_item) for _item in obj["customFlags"]] if obj.get("customFlags") is not None else None, + "defaultPort": obj.get("defaultPort"), + "exploitType": obj.get("exploitType"), + "exploitation": obj.get("exploitation"), + "protocol": obj.get("protocol"), + "supportedC2": obj.get("supportedC2"), + "versionScanner": obj.get("versionScanner") + }) + return _obj + + diff --git a/vulncheck_sdk/models/api_initial_access_go_exploit_custom_flag.py b/vulncheck_sdk/models/api_initial_access_go_exploit_custom_flag.py new file mode 100644 index 00000000..dc605f90 --- /dev/null +++ b/vulncheck_sdk/models/api_initial_access_go_exploit_custom_flag.py @@ -0,0 +1,94 @@ +# coding: utf-8 + +""" + VulnCheck API + + VulnCheck API (v3 + v4) + + The version of the OpenAPI document: latest + Contact: support@vulncheck.com + Generated by OpenAPI Generator (https://openapi-generator.tech) + + Do not edit the class manually. +""" # noqa: E501 + + +from __future__ import annotations +import pprint +import re # noqa: F401 +import json + +from pydantic import BaseModel, ConfigDict, Field, StrictStr +from typing import Any, ClassVar, Dict, List, Optional +from typing import Optional, Set +from typing_extensions import Self + +class ApiInitialAccessGoExploitCustomFlag(BaseModel): + """ + api.InitialAccessGoExploitCustomFlag + """ # noqa: E501 + default: Optional[StrictStr] = Field(default=None, description="Default is the flag's default value, serialized as a string.") + name: Optional[StrictStr] = Field(default=None, description="Name is the flag name.") + type: Optional[StrictStr] = Field(default=None, description="Type is the flag's value type (string, int, uint, bool).") + usage: Optional[StrictStr] = Field(default=None, description="Usage is the flag's help text.") + __properties: ClassVar[List[str]] = ["default", "name", "type", "usage"] + + model_config = ConfigDict( + populate_by_name=True, + validate_assignment=True, + protected_namespaces=(), + ) + + + def to_str(self) -> str: + """Returns the string representation of the model using alias""" + return pprint.pformat(self.model_dump(by_alias=True)) + + def to_json(self) -> str: + """Returns the JSON representation of the model using alias""" + # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead + return json.dumps(self.to_dict()) + + @classmethod + def from_json(cls, json_str: str) -> Optional[Self]: + """Create an instance of ApiInitialAccessGoExploitCustomFlag from a JSON string""" + return cls.from_dict(json.loads(json_str)) + + def to_dict(self) -> Dict[str, Any]: + """Return the dictionary representation of the model using alias. + + This has the following differences from calling pydantic's + `self.model_dump(by_alias=True)`: + + * `None` is only added to the output dict for nullable fields that + were set at model initialization. Other fields with value `None` + are ignored. + """ + excluded_fields: Set[str] = set([ + ]) + + _dict = self.model_dump( + by_alias=True, + exclude=excluded_fields, + exclude_none=True, + ) + return _dict + + @classmethod + def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: + """Create an instance of ApiInitialAccessGoExploitCustomFlag from a dict""" + if obj is None: + return None + + if not isinstance(obj, dict): + return cls.model_validate(obj) + + _obj = cls.model_validate({ + "default": obj.get("default"), + "name": obj.get("name"), + "type": obj.get("type"), + "usage": obj.get("usage") + }) + return _obj + + diff --git a/vulncheck_sdk/models/api_target_intel.py b/vulncheck_sdk/models/api_target_intel.py index 1d503986..ff0f270b 100644 --- a/vulncheck_sdk/models/api_target_intel.py +++ b/vulncheck_sdk/models/api_target_intel.py @@ -20,6 +20,7 @@ from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.models.api_cve_confirmed import ApiCVEConfirmed from vulncheck_sdk.models.api_fingerprint import ApiFingerprint from typing import Optional, Set from typing_extensions import Self @@ -37,6 +38,7 @@ class ApiTargetIntel(BaseModel): country_code: Optional[StrictStr] = None cpe: Optional[List[StrictStr]] = None cve: Optional[List[StrictStr]] = None + cve_confirmed: Optional[List[ApiCVEConfirmed]] = None date_added: Optional[StrictStr] = None fingerprints: Optional[List[ApiFingerprint]] = None hostname: Optional[StrictStr] = None @@ -46,9 +48,10 @@ class ApiTargetIntel(BaseModel): product: Optional[List[StrictStr]] = None protocol: Optional[StrictStr] = None timestamp: Optional[StrictStr] = None + transport: Optional[StrictStr] = None vendor: Optional[List[StrictStr]] = None version: Optional[List[StrictStr]] = None - __properties: ClassVar[List[str]] = ["as_domain", "as_name", "asn", "classifications", "contains_cve", "country", "country_code", "cpe", "cve", "date_added", "fingerprints", "hostname", "ip", "metadata", "port", "product", "protocol", "timestamp", "vendor", "version"] + __properties: ClassVar[List[str]] = ["as_domain", "as_name", "asn", "classifications", "contains_cve", "country", "country_code", "cpe", "cve", "cve_confirmed", "date_added", "fingerprints", "hostname", "ip", "metadata", "port", "product", "protocol", "timestamp", "transport", "vendor", "version"] model_config = ConfigDict( populate_by_name=True, @@ -89,6 +92,13 @@ def to_dict(self) -> Dict[str, Any]: exclude=excluded_fields, exclude_none=True, ) + # override the default output from pydantic by calling `to_dict()` of each item in cve_confirmed (list) + _items = [] + if self.cve_confirmed: + for _item_cve_confirmed in self.cve_confirmed: + if _item_cve_confirmed: + _items.append(_item_cve_confirmed.to_dict()) + _dict['cve_confirmed'] = _items # override the default output from pydantic by calling `to_dict()` of each item in fingerprints (list) _items = [] if self.fingerprints: @@ -117,6 +127,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "country_code": obj.get("country_code"), "cpe": obj.get("cpe"), "cve": obj.get("cve"), + "cve_confirmed": [ApiCVEConfirmed.from_dict(_item) for _item in obj["cve_confirmed"]] if obj.get("cve_confirmed") is not None else None, "date_added": obj.get("date_added"), "fingerprints": [ApiFingerprint.from_dict(_item) for _item in obj["fingerprints"]] if obj.get("fingerprints") is not None else None, "hostname": obj.get("hostname"), @@ -126,6 +137,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "product": obj.get("product"), "protocol": obj.get("protocol"), "timestamp": obj.get("timestamp"), + "transport": obj.get("transport"), "vendor": obj.get("vendor"), "version": obj.get("version") }) diff --git a/vulncheck_sdk/models/api_target_intel_cve_summary.py b/vulncheck_sdk/models/api_target_intel_cve_summary.py deleted file mode 100644 index 7ef7bf67..00000000 --- a/vulncheck_sdk/models/api_target_intel_cve_summary.py +++ /dev/null @@ -1,128 +0,0 @@ -# coding: utf-8 - -""" - VulnCheck API - - VulnCheck API (v3 + v4) - - The version of the OpenAPI document: latest - Contact: support@vulncheck.com - Generated by OpenAPI Generator (https://openapi-generator.tech) - - Do not edit the class manually. -""" # noqa: E501 - - -from __future__ import annotations -import pprint -import re # noqa: F401 -import json - -from pydantic import BaseModel, ConfigDict, Field, StrictStr -from typing import Any, ClassVar, Dict, List, Optional -from vulncheck_sdk.models.api_target_intel_cve_summary_asns_inner import ApiTargetIntelCVESummaryAsnsInner -from vulncheck_sdk.models.api_target_intel_cve_summary_ports_inner import ApiTargetIntelCVESummaryPortsInner -from typing import Optional, Set -from typing_extensions import Self - -class ApiTargetIntelCVESummary(BaseModel): - """ - api.TargetIntelCVESummary - """ # noqa: E501 - timestamp: Optional[StrictStr] = Field(default=None, alias="_timestamp") - asns: Optional[List[ApiTargetIntelCVESummaryAsnsInner]] = None - country_codes: Optional[List[ApiTargetIntelCVESummaryAsnsInner]] = None - cve: Optional[StrictStr] = None - ports: Optional[List[ApiTargetIntelCVESummaryPortsInner]] = None - vendors: Optional[List[ApiTargetIntelCVESummaryAsnsInner]] = None - __properties: ClassVar[List[str]] = ["_timestamp", "asns", "country_codes", "cve", "ports", "vendors"] - - model_config = ConfigDict( - populate_by_name=True, - validate_assignment=True, - protected_namespaces=(), - ) - - - def to_str(self) -> str: - """Returns the string representation of the model using alias""" - return pprint.pformat(self.model_dump(by_alias=True)) - - def to_json(self) -> str: - """Returns the JSON representation of the model using alias""" - # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead - return json.dumps(self.to_dict()) - - @classmethod - def from_json(cls, json_str: str) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummary from a JSON string""" - return cls.from_dict(json.loads(json_str)) - - def to_dict(self) -> Dict[str, Any]: - """Return the dictionary representation of the model using alias. - - This has the following differences from calling pydantic's - `self.model_dump(by_alias=True)`: - - * `None` is only added to the output dict for nullable fields that - were set at model initialization. Other fields with value `None` - are ignored. - """ - excluded_fields: Set[str] = set([ - ]) - - _dict = self.model_dump( - by_alias=True, - exclude=excluded_fields, - exclude_none=True, - ) - # override the default output from pydantic by calling `to_dict()` of each item in asns (list) - _items = [] - if self.asns: - for _item_asns in self.asns: - if _item_asns: - _items.append(_item_asns.to_dict()) - _dict['asns'] = _items - # override the default output from pydantic by calling `to_dict()` of each item in country_codes (list) - _items = [] - if self.country_codes: - for _item_country_codes in self.country_codes: - if _item_country_codes: - _items.append(_item_country_codes.to_dict()) - _dict['country_codes'] = _items - # override the default output from pydantic by calling `to_dict()` of each item in ports (list) - _items = [] - if self.ports: - for _item_ports in self.ports: - if _item_ports: - _items.append(_item_ports.to_dict()) - _dict['ports'] = _items - # override the default output from pydantic by calling `to_dict()` of each item in vendors (list) - _items = [] - if self.vendors: - for _item_vendors in self.vendors: - if _item_vendors: - _items.append(_item_vendors.to_dict()) - _dict['vendors'] = _items - return _dict - - @classmethod - def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: - """Create an instance of ApiTargetIntelCVESummary from a dict""" - if obj is None: - return None - - if not isinstance(obj, dict): - return cls.model_validate(obj) - - _obj = cls.model_validate({ - "_timestamp": obj.get("_timestamp"), - "asns": [ApiTargetIntelCVESummaryAsnsInner.from_dict(_item) for _item in obj["asns"]] if obj.get("asns") is not None else None, - "country_codes": [ApiTargetIntelCVESummaryAsnsInner.from_dict(_item) for _item in obj["country_codes"]] if obj.get("country_codes") is not None else None, - "cve": obj.get("cve"), - "ports": [ApiTargetIntelCVESummaryPortsInner.from_dict(_item) for _item in obj["ports"]] if obj.get("ports") is not None else None, - "vendors": [ApiTargetIntelCVESummaryAsnsInner.from_dict(_item) for _item in obj["vendors"]] if obj.get("vendors") is not None else None - }) - return _obj - - diff --git a/vulncheck_sdk/models/api_vuln_check_canary.py b/vulncheck_sdk/models/api_vuln_check_canary.py index 154e7afd..93e10d81 100644 --- a/vulncheck_sdk/models/api_vuln_check_canary.py +++ b/vulncheck_sdk/models/api_vuln_check_canary.py @@ -20,6 +20,7 @@ from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr from typing import Any, ClassVar, Dict, List, Optional +from vulncheck_sdk.models.api_c2_frequency import ApiC2Frequency from vulncheck_sdk.models.api_client_fingerprints import ApiClientFingerprints from vulncheck_sdk.models.api_http_details import ApiHTTPDetails from typing import Optional, Set @@ -29,12 +30,16 @@ class ApiVulnCheckCanary(BaseModel): """ api.VulnCheckCanary """ # noqa: E501 + c2_frequency_3d: Optional[List[ApiC2Frequency]] = None + c2_location: Optional[List[StrictStr]] = None category: Optional[StrictStr] = None client_fingerprints: Optional[ApiClientFingerprints] = None cve: Optional[StrictStr] = None dst_country: Optional[StrictStr] = None http: Optional[ApiHTTPDetails] = None payload: Optional[StrictStr] = None + payload_tlsh: Optional[StrictStr] = None + payload_tooling: Optional[List[StrictStr]] = None severity: Optional[StrictInt] = None signature: Optional[StrictStr] = None signature_id: Optional[StrictInt] = None @@ -43,9 +48,13 @@ class ApiVulnCheckCanary(BaseModel): src_asn: Optional[StrictStr] = None src_country: Optional[StrictStr] = None src_ip: Optional[StrictStr] = None + src_ip_freq_3d: Optional[StrictInt] = None + src_ip_freq_3d_canary: Optional[StrictInt] = None + src_ip_type_findings: Optional[List[StrictStr]] = None src_port: Optional[StrictInt] = None + tech_vertical: Optional[List[StrictStr]] = None timestamp: Optional[StrictStr] = None - __properties: ClassVar[List[str]] = ["category", "client_fingerprints", "cve", "dst_country", "http", "payload", "severity", "signature", "signature_id", "src_as_domain", "src_as_name", "src_asn", "src_country", "src_ip", "src_port", "timestamp"] + __properties: ClassVar[List[str]] = ["c2_frequency_3d", "c2_location", "category", "client_fingerprints", "cve", "dst_country", "http", "payload", "payload_tlsh", "payload_tooling", "severity", "signature", "signature_id", "src_as_domain", "src_as_name", "src_asn", "src_country", "src_ip", "src_ip_freq_3d", "src_ip_freq_3d_canary", "src_ip_type_findings", "src_port", "tech_vertical", "timestamp"] model_config = ConfigDict( populate_by_name=True, @@ -86,6 +95,13 @@ def to_dict(self) -> Dict[str, Any]: exclude=excluded_fields, exclude_none=True, ) + # override the default output from pydantic by calling `to_dict()` of each item in c2_frequency_3d (list) + _items = [] + if self.c2_frequency_3d: + for _item_c2_frequency_3d in self.c2_frequency_3d: + if _item_c2_frequency_3d: + _items.append(_item_c2_frequency_3d.to_dict()) + _dict['c2_frequency_3d'] = _items # override the default output from pydantic by calling `to_dict()` of client_fingerprints if self.client_fingerprints: _dict['client_fingerprints'] = self.client_fingerprints.to_dict() @@ -104,12 +120,16 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: return cls.model_validate(obj) _obj = cls.model_validate({ + "c2_frequency_3d": [ApiC2Frequency.from_dict(_item) for _item in obj["c2_frequency_3d"]] if obj.get("c2_frequency_3d") is not None else None, + "c2_location": obj.get("c2_location"), "category": obj.get("category"), "client_fingerprints": ApiClientFingerprints.from_dict(obj["client_fingerprints"]) if obj.get("client_fingerprints") is not None else None, "cve": obj.get("cve"), "dst_country": obj.get("dst_country"), "http": ApiHTTPDetails.from_dict(obj["http"]) if obj.get("http") is not None else None, "payload": obj.get("payload"), + "payload_tlsh": obj.get("payload_tlsh"), + "payload_tooling": obj.get("payload_tooling"), "severity": obj.get("severity"), "signature": obj.get("signature"), "signature_id": obj.get("signature_id"), @@ -118,7 +138,11 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "src_asn": obj.get("src_asn"), "src_country": obj.get("src_country"), "src_ip": obj.get("src_ip"), + "src_ip_freq_3d": obj.get("src_ip_freq_3d"), + "src_ip_freq_3d_canary": obj.get("src_ip_freq_3d_canary"), + "src_ip_type_findings": obj.get("src_ip_type_findings"), "src_port": obj.get("src_port"), + "tech_vertical": obj.get("tech_vertical"), "timestamp": obj.get("timestamp") }) return _obj diff --git a/vulncheck_sdk/models/render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py b/vulncheck_sdk/models/render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py similarity index 83% rename from vulncheck_sdk/models/render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py rename to vulncheck_sdk/models/render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py index 2086940e..21f267bf 100644 --- a/vulncheck_sdk/models/render_response_with_metadata_array_api_target_intel_cve_summary_paginate_pagination.py +++ b/vulncheck_sdk/models/render_response_with_metadata_array_advisory_anthropic_cvd_paginate_pagination.py @@ -20,18 +20,18 @@ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt from typing import Any, ClassVar, Dict, List, Optional, Union -from vulncheck_sdk.models.api_target_intel_cve_summary import ApiTargetIntelCVESummary +from vulncheck_sdk.models.advisory_anthropic_cvd import AdvisoryAnthropicCVD from vulncheck_sdk.models.paginate_pagination import PaginatePagination from typing import Optional, Set from typing_extensions import Self -class RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination(BaseModel): +class RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination(BaseModel): """ - render.ResponseWithMetadata-array_api_TargetIntelCVESummary-paginate_Pagination + render.ResponseWithMetadata-array_advisory_AnthropicCVD-paginate_Pagination """ # noqa: E501 benchmark: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Benchmark is the server-side processing time for the request in seconds. Example: 0.122322 = approximately 122 milliseconds", alias="_benchmark") meta: Optional[PaginatePagination] = Field(default=None, alias="_meta") - data: Optional[List[ApiTargetIntelCVESummary]] = Field(default=None, description="Data is the data returned by the endpoint") + data: Optional[List[AdvisoryAnthropicCVD]] = Field(default=None, description="Data is the data returned by the endpoint") __properties: ClassVar[List[str]] = ["_benchmark", "_meta", "data"] model_config = ConfigDict( @@ -52,7 +52,7 @@ def to_json(self) -> str: @classmethod def from_json(cls, json_str: str) -> Optional[Self]: - """Create an instance of RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from a JSON string""" + """Create an instance of RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from a JSON string""" return cls.from_dict(json.loads(json_str)) def to_dict(self) -> Dict[str, Any]: @@ -87,7 +87,7 @@ def to_dict(self) -> Dict[str, Any]: @classmethod def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: - """Create an instance of RenderResponseWithMetadataArrayApiTargetIntelCVESummaryPaginatePagination from a dict""" + """Create an instance of RenderResponseWithMetadataArrayAdvisoryAnthropicCVDPaginatePagination from a dict""" if obj is None: return None @@ -97,7 +97,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: _obj = cls.model_validate({ "_benchmark": obj.get("_benchmark"), "_meta": PaginatePagination.from_dict(obj["_meta"]) if obj.get("_meta") is not None else None, - "data": [ApiTargetIntelCVESummary.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None + "data": [AdvisoryAnthropicCVD.from_dict(_item) for _item in obj["data"]] if obj.get("data") is not None else None }) return _obj